/* ==========================================================================
   Online Gambling — Custom Homepage Styles
   Based on slot.ancorathemes.com/online-gambling/ (AncoraThemes)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&subset=latin,latin-ext&display=swap');

/* -------------------------------------------------------------------------- */
/* Design tokens                                                              */
/* -------------------------------------------------------------------------- */
:root {
    --og-bg:       #1B0023;
    --og-bg-2:     #26162B;
    --og-bd:       #413146;
    --og-title:    #FFFEFE;
    --og-text:     #C4B4C9;
    --og-meta:     #B0A7B3;
    --og-link:     #FD3D91;
    --og-hover:    #EE237C;
    --og-grad:     linear-gradient(90deg, #FD3D91 0%, #FDAC62 100%);
    --og-h-font:   "Sofia Sans Condensed", sans-serif;
    --og-p-font:   "Inter", sans-serif;
    --og-radius:   16px;
    --og-max:      1290px;
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */
body.og-home,
body.og-home #wrapper {
    background-color: var(--og-bg);
    color: var(--og-text);
    font-family: var(--og-p-font);
    font-size: 16px;
    line-height: 1.625;
    -webkit-font-smoothing: antialiased;
}

/* Heading system — matches AncoraThemes kit exactly */
body.og-home h1,
body.og-home h2,
body.og-home h3,
body.og-home h4,
body.og-home h5,
body.og-home h6 {
    font-family: var(--og-h-font);
    font-weight: 700;
    color: var(--og-title);
    text-transform: uppercase;
    line-height: 1em;
    margin: 0 0 .4em;
    letter-spacing: .01em;
}
body.og-home h1 { font-size: 57px; }
body.og-home h2 { font-size: 47px; }
body.og-home h3 { font-size: 35px; }
body.og-home h4 { font-size: 28px; }
body.og-home h5 { font-size: 23px; font-family: var(--og-p-font); text-transform: none; font-weight: 400; line-height: 1.55; }
body.og-home h6 { font-size: 19px; }

body.og-home p  { color: var(--og-text); line-height: 1.625; margin: 0 0 1em; }
body.og-home a  { color: var(--og-title); text-decoration: none; transition: color .25s; }
body.og-home a:hover { color: var(--og-link); }

.og-eyebrow {
    display: inline-block;
    font-family: var(--og-h-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--og-link);
    margin-bottom: 18px;
    line-height: 1;
}

.og-section { padding: 150px 0; position: relative; }

.og-container {
    max-width: var(--og-max);
    margin: 0 auto;
    padding: 0 70px;
}

.og-highlight {
    background: var(--og-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */
body.og-home #header,
body.og-home #header .header-wrapper,
body.og-home #header .header-main { background: transparent !important; border: 0 !important; }

.og-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(27, 0, 35, 0.92);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid rgba(65,49,70,.5);
    transition: background .3s;
}
.og-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 70px;
}
.og-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.og-logo img { display: block; max-height: 30px; width: auto; }
.og-logo-text {
    font-family: var(--og-h-font);
    font-weight: 700;
    font-size: 35px;
    color: var(--og-title);
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1;
}

/* Nav */
.og-nav {
    display: flex; align-items: center; gap: 0;
    list-style: none; margin: 0; padding: 0;
    flex: 1; justify-content: center;
}
.og-nav > li { position: relative; list-style: none; }
.og-nav > li > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    font-family: var(--og-h-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--og-title);
    line-height: 1;
    white-space: nowrap;
}
.og-nav > li > a .og-caret {
    display: inline-block;
    width: 7px; height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .22s;
    flex-shrink: 0;
}
.og-nav > li:hover > a { color: var(--og-link); }
.og-nav > li:hover > a .og-caret { transform: rotate(225deg) translateY(-2px); }

/* Submenu */
.og-submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 210px;
    background: var(--og-bg);
    border: 1px solid var(--og-bd);
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all .22s ease;
    list-style: none; margin: 0; z-index: 100;
}
.og-nav > li:hover > .og-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.og-submenu li { list-style: none; }
.og-submenu a {
    display: block;
    padding: 8px 20px;
    font-family: var(--og-h-font);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--og-meta);
    line-height: 1.2;
}
.og-submenu a:hover { color: var(--og-title); background: rgba(253,61,145,.08); }

/* Mega menu */
.og-mega {
    position: fixed;
    left: 0; right: 0; top: 70px;
    background: var(--og-bg-2);
    border-top: 1px solid var(--og-bd);
    border-bottom: 1px solid var(--og-bd);
    padding: 40px 70px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all .26s ease;
    z-index: 99;
}
.og-nav > li.og-has-mega:hover > .og-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.og-mega-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}
.og-mega-card { display: block; text-align: center; text-decoration: none; }
.og-mega-card .og-mega-thumb {
    border-radius: 12px; overflow: hidden;
    background: linear-gradient(135deg, #2a0d35, #4a1a5a);
    margin-bottom: 12px;
    aspect-ratio: 740/870;
    transition: transform .3s ease;
}
.og-mega-card .og-mega-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.og-mega-card:hover .og-mega-thumb { transform: translateY(-5px); }
.og-mega-card h6 { font-size: 14px; color: var(--og-title); margin: 0; letter-spacing: .06em; }
.og-mega-card.is-active h6 { color: var(--og-link); }

/* Button */
.og-btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 17px;
    background: var(--og-grad);
    color: #fff !important;
    font-family: var(--og-h-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 19px;
    border-radius: 999px;
    border: 0; cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.og-btn:hover {
    background: linear-gradient(90deg, #EE237C 0%, #e08b2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -6px rgba(253,61,145,.6);
    color: #fff !important;
}
.og-btn-lg { padding: 16px 40px; font-size: 17px; }
.og-btn-outline { background: transparent; color: var(--og-title) !important; border: 1px solid var(--og-bd); }
.og-btn-outline:hover { background: var(--og-grad); border-color: transparent; color: #fff !important; }

/* Mobile burger */
.og-burger { display: none; background: transparent; border: 0; color: var(--og-title); cursor: pointer; padding: 8px; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.og-hero {
    padding: 0;
    background-image: url('https://slot.ancorathemes.com/wp-content/uploads/2025/09/custom-img-045-copyright.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.og-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-color: rgba(0, 0, 0, 0.72);
    z-index: 0;
}
.og-hero .og-container {
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative; z-index: 1;
}
.og-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.og-hero-left { display: flex; flex-direction: column; }
.og-hero h6 { font-size: 16px; color: var(--og-link); letter-spacing: .12em; margin-bottom: 20px; }
.og-hero h1 {
    font-size: 70px;
    line-height: 1em;
    letter-spacing: -.01em;
    margin-bottom: 0;
}
.og-hero-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}
.og-hero-tagline {
    font-family: var(--og-p-font);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,.85);
    line-height: 1.55;
    margin-bottom: 28px;
}
.og-hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}
.og-hero-images .og-img {
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #3a1240, #5a1f6a);
}
.og-hero-images .og-img img { width: 100%; height: auto; display: block; }

/* -------------------------------------------------------------------------- */
/* Marquee strip                                                              */
/* -------------------------------------------------------------------------- */
.og-marquee-wrap {
    background: var(--og-bg-2);
    border-top: 1px solid var(--og-bd);
    border-bottom: 1px solid var(--og-bd);
    overflow: hidden;
    padding: 18px 0;
}
.og-marquee {
    display: flex;
    animation: ogMarqueeScroll 30s linear infinite;
    width: max-content;
    white-space: nowrap;
}
.og-marquee-inner {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
}
.og-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    font-family: var(--og-h-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--og-meta);
    letter-spacing: .06em;
    text-transform: uppercase;
}
.og-marquee-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--og-grad);
    flex-shrink: 0;
    display: inline-block;
}
@keyframes ogMarqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .og-marquee { animation: none; } }

/* -------------------------------------------------------------------------- */
/* Innovation (2-col split)                                                   */
/* -------------------------------------------------------------------------- */
.og-innovation { padding: 150px 0; background: var(--og-bg); }
.og-innovation-grid {
    max-width: var(--og-max);
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.og-innovation h1 { font-size: 47px; margin-bottom: 22px; }
.og-innovation > .og-innovation-grid > div > p { font-size: 16px; max-width: 460px; }
.og-innovation-img { border-radius: var(--og-radius); overflow: hidden; }
.og-innovation-img img { width: 100%; height: auto; display: block; }

.og-check-list { list-style: none; margin: 30px 0 0; padding: 0; }
.og-check-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--og-bd);
    color: var(--og-title);
    font-family: var(--og-h-font);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.2;
}
.og-check-list li:last-child { border-bottom: 0; }
.og-check-list .og-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--og-grad);
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-top: 2px;
}
.og-check-list .og-check svg { width: 11px; height: 8px; fill: #fff; }

/* -------------------------------------------------------------------------- */
/* Banner (large headline with gradient highlight)                            */
/* -------------------------------------------------------------------------- */
.og-banner { background: var(--og-bg); padding: 150px 0; position: relative; overflow: hidden; }
.og-banner-grid {
    max-width: var(--og-max);
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative; z-index: 2;
}
.og-banner h2 { font-size: 47px; line-height: 1.05; }
.og-banner p { font-size: 16px; color: var(--og-text); line-height: 1.625; }
.og-banner-decor {
    position: absolute; right: -40px; top: 50%;
    transform: translateY(-50%);
    width: 400px; max-width: 32vw;
    opacity: .15; pointer-events: none; z-index: 1;
}

/* -------------------------------------------------------------------------- */
/* Features grid (6 cards)                                                    */
/* -------------------------------------------------------------------------- */
.og-features { background: var(--og-bg-2); padding: 0 0 150px; }
.og-features-grid {
    max-width: var(--og-max);
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.og-feature {
    background: var(--og-bg-2);
    padding: 20px 20px 40px;
    transition: background .3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.og-feature:hover { background: rgba(65,49,70,.65); }
.og-feature-thumb {
    border-radius: 10px; overflow: hidden;
    background: linear-gradient(135deg, #3a1240, #5a1f6a);
    margin-bottom: 20px;
    aspect-ratio: 760/614;
}
.og-feature-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.og-feature:hover .og-feature-thumb img { transform: scale(1.05); }
.og-feature h4 { font-size: 28px; margin-bottom: 10px; }
.og-feature p { font-size: 15px; color: var(--og-text); margin: 0; text-transform: none; font-family: var(--og-p-font); }

/* -------------------------------------------------------------------------- */
/* CTA ("Gaming that excites" with bordered box)                              */
/* -------------------------------------------------------------------------- */
.og-cta { background: var(--og-bg); padding: 70px; }
.og-cta-inner {
    background: var(--og-bg);
    border: 1px solid var(--og-bd);
    border-radius: var(--og-radius);
    padding: 55px 40px;
    text-align: center;
    max-width: var(--og-max);
    margin: 0 auto;
}
.og-cta h2 { font-size: 47px; margin-bottom: 18px; }
.og-cta p { max-width: 660px; margin: 0 auto 30px; font-size: 16px; color: var(--og-text); }
.og-cta-link {
    display: inline-flex;
    align-items: center; gap: 10px;
    color: var(--og-title);
    font-family: var(--og-h-font);
    font-size: 20px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    text-decoration: none;
    border-bottom: 2px solid var(--og-link);
    padding-bottom: 4px;
    transition: color .25s;
}
.og-cta-link:hover { color: var(--og-link); }
.og-cta-link::after { content: '→'; transition: transform .3s; }
.og-cta-link:hover::after { transform: translateX(6px); }

/* -------------------------------------------------------------------------- */
/* Pricing                                                                    */
/* -------------------------------------------------------------------------- */
.og-pricing { padding: 150px 0; background: var(--og-bg-2); }
.og-pricing-head {
    max-width: var(--og-max);
    margin: 0 auto 60px;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.og-pricing-head h1 { font-size: 47px; margin: 0; }
.og-toggle-wrap { display: flex; align-items: center; gap: 18px; }
.og-toggle-label {
    font-family: var(--og-h-font);
    font-size: 20px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--og-meta); cursor: pointer; transition: color .25s;
}
.og-toggle-label.is-active { color: var(--og-title); }
.og-toggle {
    width: 56px; height: 30px;
    border-radius: 999px;
    background: var(--og-bd);
    position: relative; cursor: pointer;
    transition: background .25s; border: 0; padding: 0; flex-shrink: 0;
}
.og-toggle::after {
    content: '';
    position: absolute; top: 4px; left: 4px;
    width: 22px; height: 22px;
    border-radius: 50%; background: var(--og-title);
    transition: transform .3s;
}
.og-toggle.is-yearly { background: var(--og-link); }
.og-toggle.is-yearly::after { transform: translateX(26px); }
.og-pricing-grid {
    max-width: var(--og-max);
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.og-plan { background: var(--og-bg); border-radius: var(--og-radius); overflow: hidden; transition: transform .3s; }
.og-plan:hover { transform: translateY(-4px); }
.og-plan-head { background: var(--og-bg); padding: 33px 30px 23px; }
.og-plan h6 { font-size: 19px; letter-spacing: .12em; margin-bottom: 0; }
.og-plan-price-wrap { padding: 0 30px 18px; }
.og-plan-price { display: flex; align-items: baseline; gap: 2px; }
.og-plan-price .og-currency {
    font-family: var(--og-h-font); font-size: 24px; font-weight: 700;
    text-transform: uppercase; color: var(--og-meta);
}
.og-plan-price .og-amount {
    font-family: var(--og-h-font); font-size: 70px; font-weight: 700;
    text-transform: uppercase; color: var(--og-title); line-height: 1;
}
.og-plan-period { color: var(--og-meta); font-size: 14px; line-height: 22px; }
.og-plan-features { padding: 0 30px 35px; }
.og-plan-feature { color: var(--og-text); font-size: 15px; line-height: 1.5; padding-bottom: 10px; }
.og-plan-footer { padding: 0 30px 30px; }
.og-plan .og-btn { width: 100%; justify-content: center; }

/* -------------------------------------------------------------------------- */
/* Stats strip (4 bordered cells, vw padding)                                */
/* -------------------------------------------------------------------------- */
.og-stats { background: var(--og-bg); }
.og-stats-grid {
    max-width: var(--og-max);
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.og-stat {
    padding: 7.1vw 2.6vw 6.7vw;
    border: 1px solid var(--og-bd);
    text-align: center;
}
.og-stat + .og-stat { border-left: 0; }
.og-stat-icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #FDAC62;
    margin-bottom: 24px;
}
.og-stat-icon svg { width: 70px; height: 70px; }
.og-stat h4 { font-size: 28px; margin-bottom: 12px; }
.og-stat p { font-size: 15px; color: var(--og-text); margin: 0; text-transform: none; font-family: var(--og-p-font); }

/* -------------------------------------------------------------------------- */
/* Testimonials                                                               */
/* -------------------------------------------------------------------------- */
.og-testimonials { background: var(--og-bg-2); padding-bottom: 150px; }
.og-testimonials-head {
    padding: 150px 70px 60px;
    max-width: calc(var(--og-max) + 140px);
    margin: 0 auto;
}
.og-testimonials-head h2 { font-size: 47px; margin-bottom: 0; }
.og-testimonials-grid {
    max-width: calc(var(--og-max) + 140px);
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.og-testimonial {
    background: var(--og-bg);
    border-radius: var(--og-radius);
    padding: 25px;
    display: flex; flex-direction: column;
    min-height: 300px;
}
.og-testimonial .og-stars {
    display: flex; gap: 4px;
    color: #ED8A19;
    margin-bottom: 18px;
}
.og-testimonial .og-stars svg { width: 16px; height: 16px; fill: #ED8A19; }
.og-testimonial h6 { font-size: 18px; margin-bottom: 12px; line-height: 1.2; }
.og-testimonial p { font-size: 15px; color: var(--og-text); margin-bottom: 22px; flex: 1; text-transform: none; font-family: var(--og-p-font); }
.og-testimonial-author {
    border-top: 1px solid var(--og-bd);
    padding-top: 16px;
    color: var(--og-title);
    font-family: var(--og-h-font);
    font-size: 17px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    margin-top: auto;
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */
.og-faq { padding: 150px 70px; background: var(--og-bg); }
.og-faq-grid {
    max-width: var(--og-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.og-faq-grid h1 { font-size: 47px; }
.og-accordion { display: flex; flex-direction: column; gap: 12px; }
.og-acc-item {
    background: var(--og-bg-2);
    border: 1px solid var(--og-bd);
    border-radius: 12px; overflow: hidden;
    transition: border-color .25s;
}
.og-acc-item.is-open { border-color: var(--og-link); }
.og-acc-trigger {
    width: 100%; text-align: left;
    background: transparent; border: 0; cursor: pointer;
    padding: 22px 26px;
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
    font-family: var(--og-h-font);
    font-size: 20px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--og-title);
}
.og-acc-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(253,61,145,.12);
    color: var(--og-link);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
    transition: transform .3s, background .3s;
}
.og-acc-item.is-open .og-acc-icon { background: var(--og-link); color: #fff; transform: rotate(45deg); }
.og-acc-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.og-acc-item.is-open .og-acc-content { max-height: 400px; }
.og-acc-content-inner { padding: 0 26px 24px; }
.og-acc-content-inner p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--og-text); text-transform: none; }

/* -------------------------------------------------------------------------- */
/* Blog grid                                                                  */
/* -------------------------------------------------------------------------- */
.og-blog { padding: 150px 70px; background: var(--og-bg-2); }
.og-blog-head {
    max-width: var(--og-max);
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.og-blog-head h1 { font-size: 47px; margin: 0; }
.og-blog-grid {
    max-width: var(--og-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.og-post { text-decoration: none; color: inherit; display: block; }
.og-post-thumb {
    border-radius: 14px; overflow: hidden;
    background: linear-gradient(135deg, #3a1240, #5a1f6a);
    margin-bottom: 18px;
}
.og-post:nth-child(odd)  .og-post-thumb { aspect-ratio: 924/678; }
.og-post:nth-child(even) .og-post-thumb { aspect-ratio: 924/962; }
.og-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.og-post:hover .og-post-thumb img { transform: scale(1.05); }
.og-post-cat {
    display: inline-block;
    font-family: var(--og-h-font);
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--og-link);
    margin-bottom: 10px;
}
.og-post h4 { font-size: 22px; line-height: 1.15; margin-bottom: 10px; }
.og-post-meta { font-size: 13px; color: var(--og-meta); }
.og-post-meta .sep { margin: 0 6px; opacity: .5; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
body.og-home #footer { background: transparent; }
.og-footer { background: var(--og-bg); border-top: 1px solid var(--og-bd); color: var(--og-text); }
.og-footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 70px 90px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
    border-bottom: 1px solid var(--og-bd);
}
.og-footer h6 { font-size: 17px; color: var(--og-title); letter-spacing: .12em; margin-bottom: 22px; }
.og-footer .og-logo { margin-bottom: 22px; display: block; }
.og-footer p { font-size: 15px; line-height: 1.7; max-width: 360px; color: var(--og-text); }
.og-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.og-footer ul a { color: var(--og-text); font-size: 15px; }
.og-footer ul a:hover { color: var(--og-title); }
.og-footer-social { display: flex; gap: 10px; margin-top: 22px; }
.og-footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--og-bd);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--og-title); background: transparent;
    transition: all .25s;
}
.og-footer-social a:hover { background: var(--og-link); border-color: var(--og-link); }
.og-footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.og-footer-bottom {
    max-width: 1440px; margin: 0 auto;
    padding: 30px 70px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 15px; line-height: 1.4; color: var(--og-text);
}
.og-footer-bottom a { color: var(--og-link); }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
    body.og-home h1 { font-size: 45px; }
    body.og-home h2 { font-size: 36px; }
    body.og-home h3 { font-size: 28px; }
    body.og-home h4 { font-size: 22px; }
    body.og-home h5 { font-size: 20px; }
    body.og-home h6 { font-size: 18px; }
    .og-hero h1 { font-size: 55px; }
    .og-container, .og-innovation-grid,
    .og-pricing-head, .og-pricing-grid,
    .og-stats-grid, .og-banner-grid,
    .og-faq-grid, .og-blog-head, .og-blog-grid { padding-left: 30px; padding-right: 30px; }
    .og-header-inner, .og-mega,
    .og-footer-grid, .og-footer-bottom,
    .og-testimonials-head, .og-testimonials-grid { padding-left: 30px; padding-right: 30px; }
    .og-faq, .og-blog { padding-left: 30px; padding-right: 30px; }
    .og-cta { padding: 40px 30px; }
    .og-section { padding: 95px 0; }
    .og-innovation { padding: 95px 0; }
    .og-banner { padding: 95px 0; }
    .og-features { padding-bottom: 95px; }
    .og-pricing { padding: 95px 0; }
    .og-faq { padding-top: 95px; padding-bottom: 95px; }
    .og-blog { padding-top: 95px; padding-bottom: 95px; }
    .og-testimonials { padding-bottom: 95px; }
    .og-testimonials-head { padding-top: 95px; padding-bottom: 40px; }
    .og-hero .og-container { padding-top: 150px; padding-bottom: 150px; }
    .og-footer-grid { padding-top: 70px; padding-bottom: 55px; }
}

@media (max-width: 1100px) {
    .og-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .og-innovation-grid { grid-template-columns: 1fr; gap: 40px; }
    .og-banner-grid { grid-template-columns: 1fr; }
    .og-banner-decor { display: none; }
    .og-features-grid { grid-template-columns: repeat(2, 1fr); }
    .og-pricing-head { grid-template-columns: 1fr; gap: 24px; }
    .og-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .og-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .og-stat + .og-stat { border-left: 1px solid var(--og-bd); }
    .og-stats-grid .og-stat:nth-child(2) { border-left: 0; }
    .og-stats-grid .og-stat:nth-child(3) { border-top: 0; }
    .og-stats-grid .og-stat:nth-child(4) { border-top: 0; border-left: 0; }
    .og-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .og-faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .og-blog-head { grid-template-columns: 1fr; gap: 24px; }
    .og-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .og-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .og-mega-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    body.og-home h1 { font-size: 36px; }
    body.og-home h2 { font-size: 31px; }
    body.og-home h3 { font-size: 26px; }
    .og-burger { display: inline-flex; }
    .og-nav, .og-header .og-btn { display: none; }
    .og-header.is-mobile-open .og-nav {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--og-bg-2);
        padding: 16px;
        border-top: 1px solid var(--og-bd);
        gap: 0; list-style: none; margin: 0;
    }
    .og-header.is-mobile-open .og-nav > li { width: 100%; }
    .og-header.is-mobile-open .og-nav > li > a { padding: 14px 18px; }
    .og-mega { display: none; }
    .og-hero h1 { font-size: 42px; }
    .og-hero .og-container { padding-top: 120px; padding-bottom: 100px; }
    .og-hero-grid { gap: 30px; }
    .og-cta { padding: 20px; }
    .og-cta-inner { padding: 40px 24px; }
    .og-features-grid { grid-template-columns: 1fr; }
    .og-stats-grid { grid-template-columns: 1fr; }
    .og-stat { padding: 48px 24px; border: 1px solid var(--og-bd) !important; border-top: 0 !important; }
    .og-stats-grid .og-stat:first-child { border-top: 1px solid var(--og-bd) !important; }
    .og-testimonials-grid { grid-template-columns: 1fr; }
    .og-blog-grid { grid-template-columns: 1fr; }
    .og-footer-grid { grid-template-columns: 1fr; padding: 60px 20px 40px; }
    .og-footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 24px 20px; }
    .og-header-inner { padding: 12px 20px; min-height: 56px; }
    .og-section, .og-innovation, .og-banner, .og-pricing { padding: 65px 0; }
    .og-features { padding-bottom: 65px; }
    .og-faq { padding: 65px 20px; }
    .og-blog { padding: 65px 20px; }
    .og-testimonials { padding-bottom: 65px; }
    .og-testimonials-head { padding: 65px 20px 40px; }
}
