/*
Theme Name: Satej Innovations
Theme URI: https://satejinnovations.com
Author: Satej Innovations Pvt Ltd
Author URI: https://satejinnovations.com
Description: Custom B2B networking distributor theme. Showcases 14 global brands with deep SEO content, premium animations, full mobile responsiveness, location landing pages, brand comparisons, and XML sitemap. Built for Satej Innovations Pvt Ltd, Nehru Place, New Delhi. v32 — Phase 3 SEO.
Version: 32.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: satej
License: Proprietary
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0F172A;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 0.6em; }

/* Syne (display font) only for marketing/hero contexts */
.hp-hero h1, .hp-brands__head h2, .brand-hero h1,
.about-hero h1, .about-story__content h2, .about-story__visual h3,
.about-brands__head h2, .final-cta h2, .trusted-section__head h2,
.brand-content__intro h2, .brand-products__head h2,
.brand-faq__head h2, .brand-quote h2, .brand-showcase__head h2,
.error-404 h1, .hp-hero__stat-num, .about-stat__num, .hp-hero__stat-label {
    font-family: 'Syne', 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }

/* ============================================================
   DEFENSIVE — hide stray legacy widgets / orphan content
   ============================================================ */
.site-content > .widget,
.site-content > .wp-block-page-list,
.site-content > .wp-block-search,
.site-content > aside.widget_search,
.site-content > aside.widget_pages,
.site-content > #secondary,
.site-content .widget_search + .widget_pages,
body > .widget_pages,
body > .widget_search { display: none !important; }

/* CSS variables — brand */
:root {
    --satej-green: #22C55E;
    --satej-green-dark: #16A34A;
    --satej-teal: #0891B2;
    --satej-teal-dark: #0E7490;
    --satej-dark: #0A0F1C;
    --satej-slate: #0F172A;
    --satej-muted: #64748B;
    --satej-line: #E2E8F0;
    --satej-bg: #F8FAFC;
    --container: 1280px;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 28px -8px rgba(15, 23, 42, 0.14);
    --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.22);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--satej-green-dark);
    background: rgba(34, 197, 94, 0.10);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.eyebrow--light {
    color: #5EEAD4;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(94, 234, 212, 0.25);
}
.gradient-text {
    background: linear-gradient(135deg, #22C55E 0%, #0891B2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--satej-green) 0%, var(--satej-teal) 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px -4px rgba(34, 197, 94, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(34, 197, 94, 0.55);
}
.btn-secondary {
    background: #ffffff;
    color: var(--satej-slate);
    border: 1.5px solid var(--satej-line);
}
.btn-secondary:hover {
    border-color: var(--satej-green);
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.08); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
}

/* Logo — handles both the_custom_logo() output AND text fallback */
.site-header__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.site-header__brand .custom-logo-link {
    display: flex;
    align-items: center;
}
.site-header__brand .custom-logo,
.site-header__brand img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-height: 56px;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.site-header__brand .custom-logo-link:hover .custom-logo,
.site-header__brand:hover img {
    transform: scale(1.02);
}
.site-logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.site-logo-text__title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; color: var(--satej-slate); letter-spacing: -0.02em; line-height: 1.1; }
.site-logo-text__accent {
    background: linear-gradient(135deg, #22C55E 0%, #0891B2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-logo-text__sub { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; color: var(--satej-muted); margin-top: 3px; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav__list { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; }
.main-nav__list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--satej-slate);
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}
.main-nav__list > li > a:hover { background: rgba(34, 197, 94, 0.08); color: var(--satej-green-dark); }

.main-nav__list .menu-item-has-children { position: relative; }
.main-nav__list .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}
.main-nav__list .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid var(--satej-line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.main-nav__list .menu-item-has-children:hover > .sub-menu,
.main-nav__list .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav__list .sub-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 8px;
    color: var(--satej-slate);
    transition: background 0.15s, color 0.15s;
}
.main-nav__list .sub-menu li a:hover { background: rgba(34, 197, 94, 0.08); color: var(--satej-green-dark); }

.site-cta { display: flex; align-items: center; gap: 12px; }
.mobile-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--satej-bg);
    border: 1px solid var(--satej-line);
    align-items: center;
    justify-content: center;
}
.mobile-toggle__icon {
    position: relative;
    width: 22px; height: 14px;
}
.mobile-toggle__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--satej-slate);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.mobile-toggle__icon span:nth-child(1) { top: 0; }
.mobile-toggle__icon span:nth-child(2) { top: 6px; }
.mobile-toggle__icon span:nth-child(3) { top: 12px; }
.mobile-toggle.is-active .mobile-toggle__icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.mobile-toggle.is-active .mobile-toggle__icon span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-active .mobile-toggle__icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 90%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -20px 0 60px -10px rgba(0,0,0,0.2);
    z-index: 200;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 80px 24px 40px;
}
.mobile-nav.is-open { right: 0; }
.mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav__overlay.is-active { opacity: 1; visibility: visible; }
.mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.mobile-nav__list li { border-bottom: 1px solid var(--satej-line); }
.mobile-nav__list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-size: 17px;
    font-weight: 600;
    color: var(--satej-slate);
}
.mobile-nav__list .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 10px; height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.5;
    transition: transform 0.3s ease;
    margin-right: 6px;
}
.mobile-nav__list .menu-item-has-children.is-open > a::after { transform: rotate(-135deg); }
.mobile-nav__list .sub-menu {
    list-style: none;
    padding: 0 0 12px 16px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.mobile-nav__list .menu-item-has-children.is-open .sub-menu { max-height: 800px; }
.mobile-nav__list .sub-menu li { border: none; }
.mobile-nav__list .sub-menu li a {
    display: block;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--satej-muted);
    border-radius: 8px;
}
.mobile-nav__list .sub-menu li a:hover { background: var(--satej-bg); color: var(--satej-green-dark); }
.mobile-nav__cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hp-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0A0F1C 0%, #0F172A 100%);
    color: #ffffff;
    overflow: hidden;
}
.hp-hero__bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.18) 0%, transparent 45%);
    pointer-events: none;
}
.hp-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}
.hp-hero__inner { position: relative; z-index: 1; max-width: 920px; }
.hp-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1.05;
}
.hp-hero__lead {
    font-size: clamp(17px, 2vw, 21px);
    color: #CBD5E1;
    max-width: 720px;
    line-height: 1.6;
    margin: 0 0 36px;
}
.hp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hp-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hp-hero__stat-num { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #ffffff; line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.hp-hero__stat-label { font-size: 13px; color: #94A3B8; }

/* ============================================================
   HOMEPAGE — BRAND CARDS (the v31 hero feature)
   ============================================================ */
.hp-brands {
    position: relative;
    padding: 100px 0;
    background: #0A0F1C;
    overflow: hidden;
}
.hp-brands__bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}
.hp-brands__bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 900px; height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(8, 145, 178, 0.18) 0%, transparent 60%);
    filter: blur(70px);
    pointer-events: none;
}
.hp-brands__head { position: relative; text-align: center; max-width: 760px; margin: 0 auto 56px; }
.hp-brands__head h2 {
    font-size: clamp(30px, 5vw, 52px);
    color: #ffffff;
    margin: 0 0 18px;
    line-height: 1.12;
}
.hp-brands__head h2 .accent {
    background: linear-gradient(135deg, #5EEAD4 0%, #22C55E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-brands__sub { font-size: 17px; color: #94A3B8; line-height: 1.65; margin: 0 auto; max-width: 620px; }

.hp-brands__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.brand-card-hp {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 22px;
    background: linear-gradient(160deg,
        color-mix(in srgb, var(--brand-color, #22C55E) 18%, #0F172A) 0%,
        #0F172A 55%, #0A0F1C 100%);
    border: 1px solid color-mix(in srgb, var(--brand-color, #22C55E) 22%, #1E293B);
    border-radius: 18px;
    color: inherit;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    transform: translateY(20px);
    animation: brand-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--reveal-delay, 0ms);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.5s ease;
    min-height: 240px;
}
@keyframes brand-reveal { to { opacity: 1; transform: translateY(0); } }

.brand-card-hp__halo {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, var(--brand-color, #22C55E) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}
.brand-card-hp__shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 1;
}
.brand-card-hp:hover {
    transform: translateY(-10px);
    border-color: var(--brand-color, #22C55E);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 0 1px color-mix(in srgb, var(--brand-color, #22C55E) 40%, transparent),
        0 0 60px -10px color-mix(in srgb, var(--brand-color, #22C55E) 50%, transparent);
}
.brand-card-hp:hover .brand-card-hp__halo { opacity: 0.25; }
.brand-card-hp:hover .brand-card-hp__shine { left: 130%; }

.brand-card-hp__logo-stage {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 12px;
    animation: brand-float 5s ease-in-out infinite;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.4);
}
@keyframes brand-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.brand-card-hp__logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-card-hp__fallback { font-size: 26px; font-weight: 800; color: var(--brand-color, #22C55E); letter-spacing: -0.02em; }

.brand-card-hp__body { position: relative; z-index: 2; flex: 1; }
.brand-card-hp__name { font-size: 20px; font-weight: 700; color: #ffffff; margin: 0 0 6px; letter-spacing: -0.015em; line-height: 1.2; }
.brand-card-hp__tag { font-size: 13.5px; color: #94A3B8; margin: 0; line-height: 1.5; }
.brand-card-hp__cta {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-color, #22C55E);
    letter-spacing: 0.02em;
    transition: gap 0.3s ease, color 0.3s ease;
}
.brand-card-hp:hover .brand-card-hp__cta { gap: 12px; color: #ffffff; }

/* ============================================================
   TRUSTED BY — premium customer showcase
   ============================================================ */
.trusted-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--satej-bg) 100%);
    position: relative;
    overflow: hidden;
}
.trusted-section::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 65%);
    pointer-events: none;
}
.trusted-section__head {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.trusted-section__head h2 { font-size: clamp(28px, 4vw, 42px); margin: 14px 0 14px; line-height: 1.2; }
.trusted-section__head p { color: var(--satej-muted); font-size: 17px; max-width: 620px; margin: 0 auto; line-height: 1.65; }
.trusted-section__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    max-width: 1280px;
    margin: 0 auto;
}
.trusted-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid var(--satej-line);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    min-height: 160px;
    overflow: hidden;
}
.trusted-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--satej-green) 0%, var(--satej-teal) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.trusted-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
    border-color: var(--satej-green);
}
.trusted-card:hover::before { transform: scaleX(1); }

.trusted-card__logo-frame {
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--satej-bg) 0%, #ffffff 100%);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid var(--satej-line);
    transition: transform 0.4s ease, background 0.3s ease;
}
.trusted-card:hover .trusted-card__logo-frame {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(8, 145, 178, 0.08) 100%);
}
.trusted-card__logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.trusted-card__initials {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--satej-green) 0%, var(--satej-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.trusted-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--satej-slate);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.trusted-card__type {
    font-size: 11px;
    color: var(--satej-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.final-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(8, 145, 178, 0.18) 0%, transparent 50%);
    pointer-events: none;
}
.final-cta__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(28px, 5vw, 48px); color: #ffffff; margin: 0 0 18px; }
.final-cta p { color: #CBD5E1; font-size: 18px; margin: 0 0 32px; }
.final-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0A0F1C 0%, #1E293B 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(8, 145, 178, 0.15) 0%, transparent 50%);
}
.about-hero__inner { position: relative; max-width: 800px; margin: 0 auto; }
.about-hero h1 { font-size: clamp(34px, 5.5vw, 58px); color: #ffffff; margin: 0 0 22px; }
.about-hero__lead { font-size: 19px; color: #CBD5E1; line-height: 1.65; }

.about-story { padding: 90px 0; }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story__content h2 { font-size: clamp(28px, 4vw, 42px); margin: 12px 0 24px; }
.about-story__content p { font-size: 16.5px; color: #475569; line-height: 1.75; margin-bottom: 18px; }
.about-story__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.about-stat { padding: 24px; background: var(--satej-bg); border-radius: var(--radius); border-left: 4px solid var(--satej-green); }
.about-stat__num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--satej-slate); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.about-stat__label { font-size: 14px; color: var(--satej-muted); }
.about-story__visual {
    background: linear-gradient(135deg, var(--satej-green) 0%, var(--satej-teal) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.about-story__visual::before {
    content: "";
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.about-story__visual h3 { color: #ffffff; font-size: 26px; margin: 0 0 16px; position: relative; }
.about-story__visual p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.7; position: relative; }

/* About brand grid with REAL LOGOS — the v31 fix */
.about-brands { padding: 90px 0; background: var(--satej-bg); }
.about-brands__head { text-align: center; margin-bottom: 56px; }
.about-brands__head h2 { font-size: clamp(28px, 4.5vw, 48px); line-height: 1.15; margin: 0; }
.about-brands__head .underline {
    width: 80px; height: 4px;
    margin: 18px auto 0;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--satej-green) 0%, var(--satej-teal) 100%);
}

.about-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.about-brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 28px;
    background: #ffffff;
    border: 1.5px solid var(--satej-line);
    border-radius: 18px;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
    overflow: hidden;
}
.about-brand-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-color, var(--satej-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.about-brand-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-color, var(--satej-green));
    box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.18),
                0 0 0 4px color-mix(in srgb, var(--brand-color, var(--satej-green)) 12%, transparent);
}
.about-brand-card:hover::before { transform: scaleX(1); }
.about-brand-card__logo-frame {
    width: 100px; height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--satej-bg);
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}
.about-brand-card:hover .about-brand-card__logo-frame {
    transform: scale(1.06);
    background: color-mix(in srgb, var(--brand-color, var(--satej-green)) 8%, var(--satej-bg));
}
.about-brand-card__logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.about-brand-card__fallback { font-size: 36px; font-weight: 800; color: var(--brand-color, var(--satej-green)); letter-spacing: -0.02em; }
.about-brand-card__name { font-size: 19px; font-weight: 700; margin: 0 0 6px; }
.about-brand-card__tag { font-size: 13.5px; color: var(--satej-muted); margin: 0; line-height: 1.5; }
.about-brand-card__arrow { margin-top: 18px; color: #94A3B8; transition: color 0.3s, transform 0.3s; }
.about-brand-card:hover .about-brand-card__arrow { color: var(--brand-color, var(--satej-green)); transform: translateX(4px); }

/* ============================================================
   BRAND PAGE
   ============================================================ */
.brand-hero {
    position: relative;
    padding: 100px 0 90px;
    background: linear-gradient(135deg, var(--satej-dark) 0%, var(--satej-slate) 100%);
    color: #ffffff;
    overflow: hidden;
}
.brand-hero__bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, color-mix(in srgb, var(--brand-color, #22C55E) 22%, transparent) 0%, transparent 60%);
    pointer-events: none;
}
.brand-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.brand-hero__logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.brand-hero__logo-tile {
    width: 72px; height: 72px;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4);
}
.brand-hero__logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-hero__logo-tile .fallback { font-size: 26px; font-weight: 800; color: var(--brand-color, #22C55E); }
.brand-hero__brand-name { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; color: #ffffff; }
.brand-hero h1 { font-size: clamp(32px, 5vw, 52px); color: #ffffff; margin: 0 0 22px; line-height: 1.1; }
.brand-hero__lead { font-size: 18px; color: #CBD5E1; line-height: 1.65; margin: 0 0 32px; max-width: 580px; }
.brand-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.brand-hero__product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}
.brand-hero__product-card img { max-height: 240px; margin: 0 auto 20px; }
.brand-hero__product-card h3 { color: #ffffff; font-size: 20px; margin: 0 0 8px; }
.brand-hero__product-card p { color: #94A3B8; font-size: 14px; margin: 0; }
.brand-hero__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid color-mix(in srgb, var(--brand-color, #22C55E) 30%, rgba(255,255,255,0.1));
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--brand-color, #22C55E) 25%, transparent) 0%, transparent 60%);
    pointer-events: none;
}
.brand-hero__visual::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--brand-color, #22C55E) 0%, transparent 70%);
    opacity: 0.35;
    filter: blur(50px);
    pointer-events: none;
}
.brand-hero__product-img {
    position: relative;
    z-index: 2;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: brand-float 6s ease-in-out infinite;
}
.brand-hero__product-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.brand-hero__product-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--brand-color, #22C55E) 80%, #ffffff);
}
.brand-hero__product-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}
.brand-hero__visual-empty {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: var(--radius-lg);
    margin: 24px;
}
.brand-hero__visual-letter {
    font-family: 'Syne', sans-serif;
    font-size: 160px;
    font-weight: 800;
    color: var(--brand-color, #22C55E);
    line-height: 1;
    letter-spacing: -0.05em;
}

/* Brand content section — SEO COPY */
.brand-content { padding: 90px 0; }
.brand-content__intro { max-width: 880px; margin: 0 auto 60px; text-align: center; }
.brand-content__intro h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 20px; }
.brand-content__intro p { font-size: 18px; color: #475569; line-height: 1.75; }

.brand-content__body { display: grid; grid-template-columns: 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.brand-content__body p { font-size: 16.5px; color: #334155; line-height: 1.8; }
.brand-content__body h3 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 18px; }
.brand-content__body h4 { font-size: 19px; margin: 24px 0 12px; color: var(--satej-slate); font-family: 'Inter', sans-serif; font-weight: 700; }

.brand-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin: 40px 0;
}
.brand-why-card {
    padding: 28px 24px;
    background: var(--satej-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand-color, var(--satej-green));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-why-card__icon {
    width: 44px; height: 44px;
    background: color-mix(in srgb, var(--brand-color, #22C55E) 15%, transparent);
    color: var(--brand-color, var(--satej-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 800;
}
.brand-why-card h4 { margin: 0 0 8px; font-size: 17px; color: var(--satej-slate); }
.brand-why-card p { margin: 0; font-size: 14.5px; color: var(--satej-muted); line-height: 1.6; }

/* Brand products section */
.brand-products { padding: 90px 0; background: var(--satej-bg); }
.brand-products__head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.brand-products__head h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; }
.brand-products__head p { color: var(--satej-muted); font-size: 17px; }
.brand-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}
.brand-product-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--satej-line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: card-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--card-delay, 0ms);
}
@keyframes card-reveal { to { opacity: 1; transform: translateY(0); } }
.brand-product-card::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(34, 197, 94, 0.06) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 1;
}
.brand-product-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-color, var(--satej-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.brand-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.18);
    border-color: var(--brand-color, var(--satej-green));
}
.brand-product-card:hover::before { left: 140%; }
.brand-product-card:hover::after { transform: scaleX(1); }

.brand-product-card__img {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1.2;
    background: var(--satej-bg);
    border-radius: 12px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.4s ease;
}
.brand-product-card:hover .brand-product-card__img {
    background: color-mix(in srgb, var(--brand-color, var(--satej-green)) 6%, var(--satej-bg));
}
.brand-product-card__img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-product-card:hover .brand-product-card__img img {
    transform: scale(1.08);
}
.brand-product-card h3 {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--satej-slate);
}
.brand-product-card__cat {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: var(--satej-muted);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.brand-product-card__cta {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-color, var(--satej-green-dark));
    transition: gap 0.3s ease;
}
.brand-product-card:hover .brand-product-card__cta { gap: 12px; }

/* Brand FAQ */
.brand-faq { padding: 90px 0; }
.brand-faq__head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.brand-faq__head h2 { font-size: clamp(26px, 3.5vw, 38px); margin: 0 0 14px; }
.brand-faq__head p { color: var(--satej-muted); font-size: 16px; }
.brand-faq__list { max-width: 880px; margin: 0 auto; }
.brand-faq-item {
    background: #ffffff;
    border: 1px solid var(--satej-line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.brand-faq-item.is-open { border-color: var(--brand-color, var(--satej-green)); box-shadow: var(--shadow-sm); }
.brand-faq-item__q {
    display: flex;
    width: 100%;
    text-align: left;
    padding: 22px 26px;
    font-size: 17px;
    font-weight: 600;
    color: var(--satej-slate);
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}
.brand-faq-item__q:hover { background: var(--satej-bg); }
.brand-faq-item__icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--satej-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
    color: var(--satej-muted);
}
.brand-faq-item.is-open .brand-faq-item__icon { transform: rotate(45deg); background: var(--brand-color, var(--satej-green)); color: #ffffff; }
.brand-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.brand-faq-item.is-open .brand-faq-item__a { max-height: 800px; }
.brand-faq-item__a-inner {
    padding: 0 26px 24px;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

/* Quote form */
.brand-quote { padding: 90px 0; background: linear-gradient(135deg, var(--satej-slate) 0%, var(--satej-dark) 100%); color: #ffffff; }
.brand-quote__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.brand-quote h2 { font-size: clamp(28px, 4vw, 40px); color: #ffffff; margin: 0 0 18px; }
.brand-quote p { color: #CBD5E1; font-size: 16.5px; line-height: 1.7; margin-bottom: 20px; }
.brand-quote__form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.brand-quote__form label { display: block; font-size: 13px; font-weight: 600; color: #CBD5E1; margin-bottom: 6px; }
.brand-quote__form input,
.brand-quote__form textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 16px;
    transition: border-color 0.3s, background 0.3s;
}
.brand-quote__form input:focus,
.brand-quote__form textarea:focus {
    outline: none;
    border-color: var(--brand-color, var(--satej-green));
    background: rgba(255,255,255,0.1);
}
.brand-quote__form textarea { resize: vertical; min-height: 110px; }
.brand-quote__form button { width: 100%; }

.brand-contact-info { list-style: none; padding: 0; margin: 24px 0 0; }
.brand-contact-info li { padding: 10px 0; color: #CBD5E1; font-size: 15px; display: flex; gap: 10px; }
.brand-contact-info li strong { color: #ffffff; min-width: 80px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0A0F1C;
    color: #94A3B8;
    padding: 80px 0 30px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.site-footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 22px;
}
.site-footer__about p { font-size: 14.5px; line-height: 1.7; color: #94A3B8; margin: 0 0 18px; }
.site-footer__about .tagline { color: #5EEAD4; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; }
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: 10px; }
.site-footer__list a { font-size: 14.5px; color: #94A3B8; transition: color 0.2s; }
.site-footer__list a:hover { color: #5EEAD4; }

.site-footer__nap p { font-size: 14.5px; line-height: 1.65; color: #94A3B8; margin: 0 0 12px; }
.site-footer__nap strong { color: #ffffff; }
.site-footer__nap a { color: #5EEAD4; }

.site-footer__bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}
.site-footer__bottom a:hover { color: #5EEAD4; }

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
    z-index: 80;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px -4px rgba(37, 211, 102, 0.65); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ============================================================
   CONTENT PAGES (Privacy, Terms, etc.)
   ============================================================ */
.page-content {
    font-size: 16.5px;
    line-height: 1.75;
    color: #334155;
}
.page-content h1 { font-size: clamp(28px, 4vw, 38px); font-family: 'Inter', sans-serif; margin: 36px 0 18px; }
.page-content h2 { font-size: clamp(22px, 3vw, 28px); font-family: 'Inter', sans-serif; margin: 32px 0 14px; color: var(--satej-slate); }
.page-content h3 { font-size: 20px; font-family: 'Inter', sans-serif; margin: 24px 0 10px; }
.page-content p { margin: 0 0 16px; }
.page-content ul, .page-content ol { margin: 0 0 18px 24px; padding: 0; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--satej-green-dark); text-decoration: underline; }
.page-content a:hover { color: var(--satej-teal-dark); }
.page-content strong { color: var(--satej-slate); }
.page-content blockquote { margin: 24px 0; padding: 18px 24px; background: var(--satej-bg); border-left: 4px solid var(--satej-green); border-radius: 6px; }

/* ============================================================
   404
   ============================================================ */
.error-404 { padding: 120px 24px; text-align: center; }
.error-404 h1 { font-size: clamp(80px, 16vw, 180px); margin: 0; line-height: 1; background: linear-gradient(135deg, var(--satej-green) 0%, var(--satej-teal) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.error-404 h2 { font-size: 28px; margin: 12px 0 18px; }
.error-404 p { color: var(--satej-muted); margin-bottom: 30px; }

/* ============================================================
   BRAND SHOWCASE (interactive HTML iframe)
   ============================================================ */
.brand-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--satej-bg) 100%);
    position: relative;
}
.brand-showcase__head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 40px;
}
.brand-showcase__head h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 12px 0 14px;
}
.brand-showcase__head p {
    color: var(--satej-muted);
    font-size: 16.5px;
    margin: 0;
}
.brand-showcase__frame {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    aspect-ratio: 3 / 2;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--brand-color, var(--satej-green)) 10%, #f1f5f9) 0%,
        #e2e8f0 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(15, 23, 42, 0.25),
        0 0 0 1px var(--satej-line),
        0 0 0 8px color-mix(in srgb, var(--brand-color, var(--satej-green)) 8%, transparent);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.brand-showcase__frame:hover {
    box-shadow:
        0 40px 80px -20px rgba(15, 23, 42, 0.3),
        0 0 0 1px var(--brand-color, var(--satej-green)),
        0 0 0 12px color-mix(in srgb, var(--brand-color, var(--satej-green)) 14%, transparent);
}
.brand-showcase__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #eef3f0;
}

@media (max-width: 1024px) {
    .brand-showcase__frame { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
    .brand-showcase { padding: 50px 0; }
    .brand-showcase__frame {
        aspect-ratio: 1 / 1;
        box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.2), 0 0 0 1px var(--satej-line);
    }
    .brand-showcase__frame:hover {
        box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px var(--brand-color, var(--satej-green));
    }
}

/* ============================================================
   BREADCRUMBS (v32)
   ============================================================ */
.satej-breadcrumbs {
    padding: 14px 0;
    background: var(--satej-bg);
    border-bottom: 1px solid var(--satej-line);
    font-size: 13.5px;
}
.satej-breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.satej-breadcrumbs__list li {
    display: flex;
    align-items: center;
    color: var(--satej-muted);
}
.satej-breadcrumbs__list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #cbd5e1;
}
.satej-breadcrumbs__list li a {
    color: var(--satej-muted);
    transition: color 0.2s;
}
.satej-breadcrumbs__list li a:hover { color: var(--satej-green-dark); }
.satej-breadcrumbs__list li[aria-current="page"] { color: var(--satej-slate); font-weight: 600; }

/* ============================================================
   RELATED BRANDS (v32 — internal linking SEO)
   ============================================================ */
.brand-related {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--satej-bg) 0%, #ffffff 100%);
}
.brand-related__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.brand-related__head h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin: 12px 0 12px;
}
.brand-related__head p {
    color: var(--satej-muted);
    font-size: 16px;
    margin: 0;
}
.brand-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.brand-related-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #ffffff;
    border: 1.5px solid var(--satej-line);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-related-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-color, var(--satej-green));
    box-shadow: 0 14px 28px -8px rgba(15, 23, 42, 0.12);
}
.brand-related-card__logo {
    width: 54px; height: 54px;
    flex-shrink: 0;
    background: var(--satej-bg);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--satej-line);
}
.brand-related-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-related-card__initial {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-color, var(--satej-green-dark));
}
.brand-related-card__name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--satej-slate);
    line-height: 1.2;
}
.brand-related-card__tag {
    font-size: 13px;
    color: var(--satej-muted);
    margin: 0;
    line-height: 1.4;
}
.brand-related-card__arrow {
    margin-left: auto;
    color: #94a3b8;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}
.brand-related-card:hover .brand-related-card__arrow {
    color: var(--brand-color, var(--satej-green));
    transform: translateX(4px);
}

/* ============================================================
   COMPARISON PAGE (v32)
   ============================================================ */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 40px 0;
}
.compare-card {
    background: #ffffff;
    border: 1.5px solid var(--satej-line);
    border-top: 6px solid var(--brand-color, var(--satej-green));
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}
.compare-card:hover {
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.15);
}
.compare-card__head { text-align: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--satej-line); }
.compare-card__logo {
    width: 80px; height: 80px;
    margin: 0 auto 14px;
    background: var(--satej-bg);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.compare-card__logo span {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-color, var(--satej-green-dark));
}
.compare-card__head h2 { font-size: 26px; margin: 0 0 4px; color: var(--satej-slate); }
.compare-card__tag { font-size: 14px; color: var(--satej-muted); margin: 0; }
.compare-card__body p { font-size: 14.5px; color: #475569; line-height: 1.7; margin: 0 0 18px; }
.compare-card__body h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-color, var(--satej-green-dark)); margin: 18px 0 12px; }
.compare-card__body ul { list-style: none; padding: 0; margin: 0 0 22px; }
.compare-card__body ul li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--satej-line);
    font-size: 14px;
    color: #334155;
    line-height: 1.55;
    position: relative;
}
.compare-card__body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--brand-color, var(--satej-green));
    font-weight: 800;
}
.compare-card__body ul li:last-child { border-bottom: none; }

@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WOOCOMMERCE — clean product grid, no widget leaks
   ============================================================ */
.wc-content { padding-top: 50px; }
.woocommerce .page-title,
.wc-content > .container > h1,
.woocommerce-products-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    margin: 0 0 30px;
    letter-spacing: -0.02em;
}

/* Result count + sorting bar */
.woocommerce .woocommerce-result-count {
    color: var(--satej-muted);
    font-size: 14px;
    margin: 0 0 20px;
}
.woocommerce .woocommerce-ordering select {
    padding: 8px 14px;
    border: 1px solid var(--satej-line);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

/* Product grid — 4 columns */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    padding: 20px !important;
    background: #ffffff;
    border: 1.5px solid var(--satej-line);
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex !important;
    flex-direction: column;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -10px rgba(15, 23, 42, 0.14);
    border-color: var(--satej-green);
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    width: 100% !important;
    aspect-ratio: 1;
    object-fit: contain;
    background: var(--satej-bg);
    border-radius: 10px;
    margin: 0 0 14px !important;
    padding: 14px;
    transition: transform 0.4s ease;
}
.woocommerce ul.products li.product:hover img {
    transform: scale(1.03);
}
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--satej-slate) !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.005em !important;
}
.woocommerce ul.products li.product .price {
    color: var(--satej-green-dark) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 0 0 12px !important;
}
.woocommerce ul.products li.product .price del { color: var(--satej-muted) !important; font-weight: 400; }
.woocommerce ul.products li.product .star-rating {
    margin: 0 0 8px !important;
    font-size: 12px !important;
}

/* Buttons (Read more / Add to cart) */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: auto 0 0 !important;
    padding: 10px 18px !important;
    background: var(--satej-bg) !important;
    color: var(--satej-slate) !important;
    border: 1px solid var(--satej-line) !important;
    border-radius: 100px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background 0.3s, color 0.3s, border-color 0.3s !important;
    width: 100%;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: var(--satej-green) !important;
    color: #ffffff !important;
    border-color: var(--satej-green) !important;
}

/* Sale badge */
.woocommerce span.onsale {
    background: linear-gradient(135deg, var(--satej-green) 0%, var(--satej-teal) 100%) !important;
    color: #ffffff !important;
    border-radius: 100px !important;
    padding: 6px 14px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.2 !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin: 40px 0 20px;
}
.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
    display: inline-flex !important;
    gap: 6px;
    background: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
    background: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: #ffffff !important;
    border: 1.5px solid var(--satej-line) !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--satej-slate) !important;
    transition: all 0.25s ease !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--satej-slate) !important;
    border-color: var(--satej-slate) !important;
    color: #ffffff !important;
}

/* Single product page */
.woocommerce div.product .product_title {
    font-family: 'Syne', sans-serif !important;
    font-size: clamp(26px, 3.5vw, 36px) !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 14px !important;
}
.woocommerce div.product .price {
    font-size: 22px !important;
    color: var(--satej-green-dark) !important;
    font-weight: 700 !important;
}
.woocommerce div.product form.cart .button,
.woocommerce a.added_to_cart {
    background: linear-gradient(135deg, var(--satej-green) 0%, var(--satej-teal) 100%) !important;
    color: #ffffff !important;
    border-radius: 100px !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    box-shadow: 0 8px 20px -4px rgba(34, 197, 94, 0.4) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.woocommerce div.product form.cart .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(34, 197, 94, 0.55) !important;
}

/* Kill any default WC sidebar / widgets that try to render */
.woocommerce-page .widget-area,
.woocommerce .widget-area,
.wc-content .widget-area,
.wc-content aside.widget,
.wc-content + aside,
.wc-content ~ .widget,
.woocommerce + aside,
.woocommerce + .widget,
body.woocommerce > .widget,
body.woocommerce-page > .widget,
body.woocommerce-page #secondary,
body.woocommerce #secondary { display: none !important; }

/* Responsive product grid */
@media (max-width: 1024px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: 1fr; }
}

/* ============================================================
   GET PRICE BUTTONS + QUOTE MODAL (v32)
   ============================================================ */
.satej-get-price-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--satej-green) 0%, var(--satej-teal) 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 16px -4px rgba(34, 197, 94, 0.4);
}
.satej-get-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -4px rgba(34, 197, 94, 0.55);
}
.satej-get-price-btn-lg { font-size: 15px; padding: 14px 28px; }

/* WooCommerce loop: Get Price button full width in card */
.woocommerce ul.products li.product .satej-get-price-btn {
    width: 100%;
    margin-top: auto;
}

/* Brand product card — restructured with link + actions */
.brand-product-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    flex: 1;
}
.brand-product-card__actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.brand-product-card__actions .satej-get-price-btn { flex: 1; }
.brand-product-card__details {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-color, var(--satej-green-dark));
    white-space: nowrap;
    transition: gap 0.3s ease;
}
.brand-product-card__details:hover { text-decoration: underline; }

/* Modal */
.satej-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.satej-quote-modal.is-open { display: flex; }
.satej-quote-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(4px);
    animation: fade-in 0.25s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.satej-quote-modal__box {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px 32px;
    box-shadow: 0 40px 80px -20px rgba(10, 15, 28, 0.5);
    animation: modal-pop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modal-pop {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.satej-quote-modal__close {
    position: absolute;
    top: 16px; right: 18px;
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: var(--satej-muted);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}
.satej-quote-modal__close:hover { color: var(--satej-slate); transform: rotate(90deg); }
.satej-quote-modal__box h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    margin: 0 0 4px;
    color: var(--satej-slate);
}
.satej-quote-modal__product {
    font-size: 14px;
    color: var(--satej-green-dark);
    font-weight: 600;
    margin: 0 0 22px;
    padding: 10px 14px;
    background: var(--satej-bg);
    border-radius: 10px;
    border-left: 3px solid var(--satej-green);
}
.satej-quote-modal__box label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--satej-slate);
    margin: 14px 0 5px;
}
.satej-quote-modal__box input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--satej-line);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}
.satej-quote-modal__box input:focus {
    outline: none;
    border-color: var(--satej-green);
}
.satej-quote-modal__box .btn {
    width: 100%;
    margin-top: 22px;
    border: none;
    cursor: pointer;
}
.satej-quote-modal__msg {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: 14px 0 0;
    min-height: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .main-nav, .site-cta .btn { display: none; }
    .mobile-toggle { display: inline-flex; }
    .site-cta { gap: 8px; }
    .about-story__grid { grid-template-columns: 1fr; gap: 40px; }
    .brand-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .brand-quote__inner { grid-template-columns: 1fr; gap: 40px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .hp-hero { padding: 70px 0 60px; }
    .hp-brands { padding: 70px 0; }
    .hp-hero__cta { flex-direction: column; align-items: stretch; }
    .hp-hero__cta .btn { justify-content: center; }
    .hp-brands__grid, .about-brand-grid { grid-template-columns: 1fr; gap: 14px; }
    .brand-card-hp { min-height: 200px; }
    .brand-card-hp__logo-stage { width: 64px; height: 64px; }
    .brand-content__body { gap: 40px; }
    .brand-products__grid { grid-template-columns: 1fr; }
    .brand-quote__form { padding: 24px; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .container { padding: 0 18px; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1s !important;
        scroll-behavior: auto !important;
    }
}

/* Print */
@media print {
    .site-header, .site-footer, .whatsapp-float, .mobile-toggle, .mobile-nav { display: none !important; }
}
