:root {
    --gold: #c9a84c;
    --gold2: #e8c96a;
    --gold3: #f0d880;
    --golddim: #7a5e20;
    --dark: #0d1f10;
    --dark2: #142818;
    --dark3: #1a3020;
    --green: #22c55e;
    --green2: #4ade80;
    --text: #f2ede0;
    --muted: #96a88e;
    --muted2: #b4c4aa;
    --card-bg: rgba(16, 32, 20, 0.92);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

 .user-wrapper {
    position: relative;
  }

  .user-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 30px;
    transition: 0.3s;
  }

  .user-box:hover {
    background: rgba(255,255,255,0.08);
  }

  .user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg,#c9a84c,#f5d77a);
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .user-name {
    color: #fff;
    font-weight: 500;
  }

  /* Dropdown */
  .user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 220px;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    padding: 12px;
    display: none;
    z-index: 999;
    animation: fadeIn 0.2s ease;
  }

  .user-dropdown.show {
    display: block;
  }

  .dropdown-user {
    font-weight: 600;
    color: #fff;
  }

  .dropdown-email {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
  }

  .dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
  }

  .dropdown-item {
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
  }

  .dropdown-item:hover {
    background: rgba(255,255,255,0.08);
  }

  .dropdown-item.logout {
    color: #ff4d4f;
    font-weight: 500;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
#cursor {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.8), 0 0 24px rgba(201, 168, 76, 0.4);
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: left 0.12s ease-out, top 0.12s ease-out;
}

#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Cursor only on desktop */
@media(hover:hover) and (pointer:fine) {
    body {
        cursor: none;
    }

    #cursor,
    #cursor-ring {
        display: block;
    }
}

@media(hover:none), (pointer:coarse) {

    #cursor,
    #cursor-ring {
        display: none !important;
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    padding: 0 56px;
    height: 68px;
    background: rgba(6, 14, 8, 0.65);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(6, 14, 8, 0.95);
    border-bottom-color: rgba(201, 168, 76, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-right: auto;
    text-decoration: none;
}

.hex-logo {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
    transition: filter 0.3s;
}

.hex-logo svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hex-logo-img {
    /* position: absolute; */
    /* inset: 0; */
    /* width: 100%;
    height: 100%;
    object-fit: contain; */
}


.hex-text {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.brand-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin-right: 20px;
}

.nav-links a {
    color: var(--muted);
    font-size: 13.2px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.8);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-item-dropdown {
    position: relative;
    height: 100%;
}

.dropdown-icon {
    margin-left: 6px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(8, 16, 10, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 14px;
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 168, 76, 0.05);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.nav-item-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block !important;
    padding: 12px 24px !important;
    color: var(--muted2) !important;
    font-size: 13.5px !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold) !important;
    padding-left: 30px !important;
}

.btn-nav {
    background: linear-gradient(135deg, #c9a84c, #9a7828);
    color: #060e08;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    cursor: none;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-nav:hover {
    box-shadow: 0 0 35px rgba(201, 168, 76, 0.65), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.btn-nav:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #030805; /* Solid dark background */
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 0;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Header */
.mobile-menu-content {
    padding: 26px 24px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.mobile-nav-list > li > a {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #e8e0cc;
    text-decoration: none;
    display: block;
    line-height: 1.25;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.mobile-submenu-trigger>a {
    pointer-events: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #e8e0cc;
    text-decoration: none;
    display: block;
    line-height: 1.2;
}

.mobile-submenu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .18);
    background: rgba(201, 168, 76, .05);
    color: var(--gold2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-submenu-toggle i {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
}

.mobile-nav-list li.has-submenu.open .mobile-submenu-toggle i {
    transform: rotate(180deg);
}

/* Submenu styles */
.mobile-submenu {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-list li.has-submenu.open .mobile-submenu {
    display: flex;
}

.mobile-submenu li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted2);
    text-decoration: none;
}

@media (max-width: 900px) {
    .mobile-contact-area {
        margin-top: auto;
        padding-top: 18px;
    }
}

.mobile-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.mobile-nav-list li.has-submenu.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-divider {
    height: 1px;
    background: rgba(201,168,76,0.2);
    margin: 8px 0;
}

.dropdown-divider {
    height: 1px;
    background: rgba(201,168,76,0.3);
    margin: 8px 16px;
}

.mobile-nav-list a:hover {
    color: var(--gold);
}

.btn-mobile-book {
    display: none; /* Hide if we don't want the button, but I added it just in case */
}

/* Contact Area */
.mobile-contact-area {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mc-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.mc-email {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    margin-bottom: 20px;
}

.mc-plus {
    font-weight: 400;
}

.mc-location {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.mc-location span {
    font-weight: 400;
    color: var(--muted);
    margin-left: 8px;
}

/* Socials Area */
.mobile-socials {
    margin-top: 40px;
}

.ms-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

.ms-icons {
    display: flex;
    gap: 20px;
}

.ms-icons a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

/* Footer Links */
.mobile-footer-links {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mfl-links {
    display: flex;
    gap: 24px;
}

.mfl-links a {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.mfl-copy {
    font-size: 12px;
    color: var(--muted);
}

/* HERO */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 110px 56px 60px;
    gap: 48px;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 65% at 75% 40%, rgba(30, 120, 22, 0.45) 0%, transparent 62%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(18, 80, 14, 0.28) 0%, transparent 56%), radial-gradient(ellipse 30% 30% at 90% 90%, rgba(201, 168, 76, 0.1) 0%, transparent 55%);
}

.hero-ring {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.08);
    animation: ringPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-ring::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.08);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.hero-ring::after {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.06);
    animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: var(--gold);
    font-size: 11.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
    box-shadow: 0 0 18px rgba(201, 168, 76, 0.15);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 18px rgba(201, 168, 76, 0.15);
    }

    50% {
        box-shadow: 0 0 28px rgba(201, 168, 76, 0.35), 0 0 50px rgba(201, 168, 76, 0.1);
    }
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green2);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.07;
    color: #f5f0e0;
    letter-spacing: -1px;
}

.hero-title .hl {
    background: linear-gradient(135deg, var(--gold2), var(--gold3), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
}

.hero-sub {
    font-size: 15px;
    color: var(--muted2);
    line-height: 1.75;
    max-width: 370px;
}

.btn-strategy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a84c, #9a7828);
    color: #060e08;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border: none;
    border-radius: 10px;
    cursor: none;
    width: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-strategy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-strategy:hover {
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.75), 0 12px 36px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-strategy:hover::before {
    opacity: 1;
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-strategy:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-note {
    font-size: 12px;
    color: #6a7a62;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-note::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

/* HERO RIGHT */

/* ── HERO CHARACTER CARD ── */
.hero-char-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(14, 32, 12, 0.7), rgba(6, 14, 8, 0.96));
    border: 1.5px solid rgba(50, 200, 50, 0.32);
    box-shadow:
        0 0 0 1.5px rgba(50, 200, 50, 0.28),
        0 0 40px rgba(50, 200, 50, 0.22),
        0 0 80px rgba(50, 200, 50, 0.1),
        inset 0 0 60px rgba(50, 200, 50, 0.06);
    animation: greenCardBreath 4s ease-in-out infinite;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-char-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(50, 200, 50, 0.65), transparent);
    box-shadow: 0 0 10px rgba(50, 200, 50, 0.7);
    z-index: 1;
}


.hero-orb {
    position: absolute;
    width: 380px;
    height: 380px;
    top: 0;
    right: -20px;
    background: radial-gradient(circle, rgba(22, 140, 16, 0.3) 0%, rgba(10, 80, 8, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbPulse 5s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.person-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 79%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(14, 32, 12, 0.7), rgba(6, 14, 8, 0.96));
    border: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 60px rgba(22, 140, 16, 0.15);
}

.person-container::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 70% 60% at 50% 88%, rgba(22, 140, 16, 0.22) 0%, transparent 55%);
    pointer-events: none;
}

.person-container::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 22px;
    animation: borderGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes borderGlow {

    0%,
    100% {
        box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.08);
    }

    50% {
        box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.3), inset 0 0 40px rgba(201, 168, 76, 0.05);
    }
}

.person-svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.scan-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), var(--gold2), rgba(34, 197, 94, 0.5), transparent);
    animation: scanMove 3s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes scanMove {
    0% {
        bottom: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* FLOAT CARDS */
.float-card {
    position: absolute;
    background: rgba(8, 16, 10, 0.88);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    z-index: 10;
}

.float-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
}

.fc-analytics {
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.12), 0 16px 48px rgba(0, 0, 0, 0.5);
    min-width: 120px;
    animation: floatLeft 4s ease-in-out infinite;
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

.fc-label {
    font-size: 9px;
    color: #6aaa62;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.fc-val {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.fc-change {
    font-size: 10.5px;
    color: var(--green2);
    margin-top: 4px;
}

.fc-chart {
    top: 14px;
    right: -10px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.12), 0 16px 48px rgba(0, 0, 0, 0.5);
    width: 116px;
    animation: floatRight 4s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 46px;
    margin-bottom: 8px;
}

.c-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #7a6020, #e0bc60);
}

.fc-tag {
    bottom: 32px;
    left: -22px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 10px 14px;
    border-radius: 10px;
    animation: floatLeft 4s ease-in-out infinite;
    animation-delay: -1s;
}

.fc-tag-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green2);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.8);
    animation: dotPulse 2s ease-in-out infinite;
}

.fc-tag-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted2);
    white-space: nowrap;
}

/* FEATURES */
.features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 0 56px 70px;
}

.feat-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: transform 0.35s, box-shadow 0.35s;
}

.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--cglow, rgba(201, 168, 76, 0.06)), transparent 60%);
    pointer-events: none;
}

.feat-card:hover {
    transform: translateY(-6px);
}

.fc1 {
    --cglow: rgba(60, 220, 60, 0.07);
    border: 1.5px solid rgba(60, 220, 60, 0.28);
    box-shadow: 0 0 40px rgba(40, 200, 40, 0.06);
}

.fc1:hover {
    box-shadow: 0 0 60px rgba(40, 200, 40, 0.2), 0 20px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(60, 220, 60, 0.55);
}

.fc2 {
    --cglow: rgba(200, 220, 40, 0.07);
    border: 1.5px solid rgba(200, 220, 40, 0.28);
    box-shadow: 0 0 40px rgba(180, 210, 20, 0.06);
}

.fc2:hover {
    box-shadow: 0 0 60px rgba(180, 210, 20, 0.2), 0 20px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(200, 220, 40, 0.55);
}

.fc3 {
    --cglow: rgba(201, 168, 76, 0.07);
    border: 1.5px solid rgba(201, 168, 76, 0.28);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.06);
}

.fc3:hover {
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.25), 0 20px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 168, 76, 0.6);
}

.feat-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
}

.feat-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--iglow, rgba(201, 168, 76, 0.18)), transparent 65%);
    border-radius: 50%;
}

.fi1 {
    background: linear-gradient(145deg, #081a0c, #102016);
    border: 1.5px solid rgba(50, 200, 50, 0.4);
    --iglow: rgba(50, 200, 50, 0.18);
}

.fi1 svg {
    filter: drop-shadow(0 0 6px rgba(80, 220, 80, 0.7));
}

.fi2 {
    background: linear-gradient(145deg, #121a06, #1c2808);
    border: 1.5px solid rgba(190, 220, 40, 0.4);
    --iglow: rgba(190, 220, 40, 0.16);
}

.fi2 svg {
    filter: drop-shadow(0 0 6px rgba(200, 220, 60, 0.6));
}

.fi3 {
    background: linear-gradient(145deg, #181408, #221c0a);
    border: 1.5px solid rgba(201, 168, 76, 0.45);
    --iglow: rgba(201, 168, 76, 0.22);
}

.fi3 svg {
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.7));
}

.feat-icon svg {
    width: 34px;
    height: 34px;
}

.feat-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #e8e0cc;
    line-height: 1.3;
    margin-bottom: 10px;
}

.fc2 .feat-title {
    color: var(--gold2);
}

.feat-desc {
    font-size: 13.5px;
    color: #7a8e72;
    line-height: 1.75;
}

/* STATS */
.stats-wrap {
    position: relative;
    z-index: 1;
    margin: 0 56px 80px;
    border-radius: 22px;
    overflow: hidden;
}

.stats-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    border-radius: 22px;
    animation: statsBG 4s ease-in-out infinite;
}

@keyframes statsBG {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.1);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.3), 0 0 50px rgba(201, 168, 76, 0.08);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, rgba(10, 22, 14, 0.98), rgba(6, 14, 8, 0.99));
}

.stat-item {
    padding: 34px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(201, 168, 76, 0.04);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sa, rgba(201, 168, 76, 0.5)), transparent);
    box-shadow: 0 0 10px var(--sa, rgba(201, 168, 76, 0.5));
}

.stat-item:nth-child(1) {
    --sa: rgba(201, 168, 76, 0.6);
}

.stat-item:nth-child(2) {
    --sa: rgba(34, 197, 94, 0.6);
}

.stat-item:nth-child(3) {
    --sa: rgba(200, 220, 40, 0.6);
}

.stat-item:nth-child(4) {
    --sa: rgba(201, 168, 76, 0.6);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold2), var(--gold3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
}

.stat-label {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 8px;
}

/* SECTION COMMON */
section {
    position: relative;
    z-index: 1;
}

.section-wrap {
    padding: 80px 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: #f5f0e0;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 15px;
    color: var(--muted2);
    line-height: 1.75;
    max-width: 500px;
}

/* HOW IT WORKS */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 36px;
}

.step {
    display: flex;
    gap: 18px;
    padding: 20px 20px 20px 16px;
    border-radius: 14px;
    margin-bottom: 6px;
    transition: all 0.3s;
    cursor: none;
    border: 1px solid transparent;
}

.step:hover {
    background: rgba(201, 168, 76, 0.04);
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
}

.step-num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 12px;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.step-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(145deg, #0c1e10, #142818);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.step:hover .step-icon {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.18);
}

.step-icon svg {
    width: 22px;
    height: 22px;
}

.step-body {
    padding-top: 2px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: #d8d0bc;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 13px;
    color: var(--muted2);
    line-height: 1.65;
}

.works-vis {
    background: linear-gradient(145deg, rgba(10, 22, 12, 0.96), rgba(6, 14, 8, 0.99));
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 22px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(22, 120, 16, 0.08);
}

.works-vis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), rgba(34, 197, 94, 0.3), rgba(201, 168, 76, 0.4), transparent);
}

.f-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    cursor: none;
}

.f-step:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateX(4px);
}

.f-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.f-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #b8c8b0;
}

.f-sub {
    font-size: 11px;
    color: #7a8870;
    margin-top: 2px;
}

.f-arrow {
    margin-left: auto;
    font-size: 14px;
    color: rgba(201, 168, 76, 0.4);
}

.prog-wrap {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.prog-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.prog-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}

.prog-name {
    font-size: 12px;
    color: #7a8e72;
    width: 88px;
    flex-shrink: 0;
}

.prog-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #6a5018, #c9a84c, #e8c96a);
    position: relative;
}

.prog-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -1px;
    bottom: -1px;
    width: 6px;
    background: #e8c96a;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(232, 201, 106, 0.8);
}

.prog-pct {
    font-size: 11px;
    color: var(--gold);
    width: 30px;
    text-align: right;
    font-weight: 600;
}

/* SERVICES */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.svc-card {
    background: linear-gradient(145deg, rgba(10, 22, 12, 0.95), rgba(6, 14, 8, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    cursor: none;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sc, rgba(201, 168, 76, 0.4)), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.svc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.08), 0 20px 48px rgba(0, 0, 0, 0.3);
}

.svc-card:hover::after {
    opacity: 1;
}

.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: box-shadow 0.3s;
}

.svc-card:hover .svc-icon {
    box-shadow: 0 0 20px var(--sc, rgba(201, 168, 76, 0.3));
}

.svc-title {
    font-size: 15px;
    font-weight: 700;
    color: #d8d0bc;
    margin-bottom: 8px;
}

.svc-desc {
    font-size: 13px;
    color: #7a8e72;
    line-height: 1.7;
}

.svc-badge {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* REVIEWS */
.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.rev-card {
    background: linear-gradient(145deg, rgba(10, 22, 12, 0.95), rgba(6, 14, 8, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 26px 22px;
    transition: all 0.35s;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.rev-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: rgba(201, 168, 76, 0.06);
    line-height: 1;
    pointer-events: none;
}

.rev-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.18);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.06), 0 16px 40px rgba(0, 0, 0, 0.3);
}

.rev-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.rev-star {
    color: var(--gold);
    font-size: 13px;
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.8);
}

.rev-text {
    font-size: 13.5px;
    color: #96a890;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #142418, #2a4a20);
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    box-shadow: 0 0 14px rgba(201, 168, 76, 0.15);
}

.rev-name {
    font-size: 14px;
    font-weight: 600;
    color: #c8bca8;
}

.rev-role {
    font-size: 11.5px;
    color: #7a8870;
    margin-top: 2px;
}

/* CTA */
.cta-wrap {
    margin: 0 56px 80px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(12, 26, 14, 0.99), rgba(8, 18, 10, 0.99));
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 64px 60px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.cta-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), rgba(34, 197, 94, 0.4), rgba(201, 168, 76, 0.6), transparent);
}

.cta-glow1 {
    position: absolute;
    width: 350px;
    height: 350px;
    top: -100px;
    right: 80px;
    background: radial-gradient(circle, rgba(22, 120, 16, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbPulse 5s ease-in-out infinite;
}

.cta-glow2 {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: 100px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-left {
    position: relative;
    z-index: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    color: #f5f0e0;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.cta-sub {
    font-size: 14.5px;
    color: var(--muted2);
    line-height: 1.7;
}

.cta-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 12px;
    text-align: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a84c, #9a7828);
    color: #060e08;
    font-size: 15px;
    font-weight: 700;
    padding: 17px 36px;
    border: none;
    border-radius: 10px;
    cursor: none;
    white-space: nowrap;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-cta:hover {
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.7), 0 12px 36px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-cta:hover::before {
    opacity: 1;
}

.cta-note {
    font-size: 12px;
    color: #6a7a62;
    text-align: center;
}

/* FOOTER */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 52px 56px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-tagline {
    font-size: 13.5px;
    color: #6a7e62;
    line-height: 1.7;
    max-width: 250px;
    margin-top: 14px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    cursor: none;
    transition: all 0.25s;
}

.soc-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold);
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.2);
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: #8a9e82;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: #6a7e62;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copy {
    font-size: 12.5px;
    color: #607058;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    font-size: 12.5px;
    color: #607058;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--muted);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
    gap: 26px;
    margin: 0 0 36px;
    padding: 0 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-newsletter-copy {
    max-width: 700px;
}

.footer-newsletter-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gold2);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-newsletter-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    line-height: 1.1;
    color: #f4ecdb;
    letter-spacing: -0.01em;
}

.footer-newsletter-text {
    margin: 10px 0 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.98rem;
    line-height: 1.65;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    justify-self: end;
}

.footer-newsletter-input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #f4ecdb;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.footer-newsletter-input:focus {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.footer-newsletter-btn {
    height: 52px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #d9bc63 0%, #f1d36e 100%);
    color: #132212;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(201, 168, 76, 0.14);
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(201, 168, 76, 0.18);
}

@media (max-width: 1024px) {
    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-newsletter-copy {
        max-width: none;
    }

    .footer-newsletter-form {
        justify-self: start;
        max-width: 460px;
    }
}

@media (max-width: 640px) {
    .footer-newsletter {
        gap: 16px;
        margin: 0 0 28px;
        padding: 0 0 28px;
    }

    .footer-newsletter-label {
        margin-bottom: 8px;
        font-size: 0.7rem;
    }

    .footer-newsletter-title {
        font-size: 1.45rem;
    }

    .footer-newsletter-text {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .footer-newsletter-form {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }

    .footer-newsletter-input,
    .footer-newsletter-btn {
        width: 100%;
        height: 52px;
    }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
═══════════════════════════════════════ */

/* Tablet */
@media(max-width:1024px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .works-vis {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        padding: 100px 32px 40px;
    }

    .hero-title {
        font-size: clamp(30px, 4vw, 46px);
    }

    .features {
        padding: 0 32px 50px;
    }

    .section-wrap {
        padding: 60px 32px;
    }

    .tl-section {
        padding: 60px 32px;
    }

    .stats-wrap {
        margin: 0 32px 60px;
    }

    .cta-wrap {
        margin: 0 32px 60px;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rev-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        padding: 48px 32px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media(max-width:768px) {

    /* NAV */
    nav {
        padding: 0 18px;
        height: 62px;
    }

    .nav-links,
    .nav-dots {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        top: 62px;
        height: calc(100vh - 62px);
    }

    /* HERO */
    .hero {
        grid-template-columns: 1fr;
        padding: 90px 18px 36px;
        min-height: auto;
        gap: 28px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: -.5px;
        line-height: 1.12;
    }

    .hero-sub {
        font-size: 14px;
        max-width: 100%;
    }

    .btn-strategy {
        font-size: 14px;
        padding: 13px 26px;
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .hero-note {
        font-size: 11.5px;
    }

    .hero-ring {
        display: none;
    }

    /* FEATURE CARDS */
    .features {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 18px 44px;
    }

    .feat-card {
        padding: 24px 20px;
    }

    .feat-icon {
        width: 58px;
        height: 58px;
        border-radius: 13px;
    }

    .feat-title {
        font-size: 16px;
    }

    .feat-desc {
        font-size: 13px;
    }

    /* MARQUEE */
    .marquee-wrap {
        margin-bottom: 44px;
    }

    /* STATS */
    .stats-wrap {
        margin: 0 18px 50px;
        border-radius: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-num {
        font-size: 30px;
    }

    .stat-label {
        font-size: 11.5px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* SECTIONS */
    .section-wrap {
        padding: 50px 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-sub {
        font-size: 13.5px;
    }

    .section-tag {
        font-size: 10px;
        padding: 5px 12px;
    }

    /* HOW IT WORKS */
    .how-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .works-vis {
        display: none;
    }

    .step {
        padding: 14px 14px 14px 12px;
    }

    .step-num {
        width: 24px;
        height: 24px;
        font-size: 10px;
        margin-top: 10px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-desc {
        font-size: 12.5px;
    }

    /* TIMELINE */
    .tl-section {
        padding: 50px 18px;
    }

    .tl-header {
        margin-bottom: 40px;
    }

    /* ══════════════════════════════════════════
   MOBILE TIMELINE — Pink reference style
   Line LEFT · Big dot · Image RIGHT · Card below
══════════════════════════════════════════ */

    /* ── SECTION padding ── */
    .tl-section {
        padding: 50px 0px 50px 0;
    }

    .tl-header {
        padding: 0 18px;
        margin-bottom: 44px;
    }

    /* ── WRAP: full bleed, no side padding ── */
    .tl-wrap {
        padding: 0;
        max-width: 100%;
    }

    /* ── Vertical glow line ── */
    .tl-line-track {
        left: 28px;
        transform: none;
        top: 0;
        bottom: 40px;
        width: 2.5px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 3px;
    }

    .tl-line-fill {
        background: linear-gradient(to bottom,
                #c9a84c 0%,
                #d4c040 25%,
                #8ae050 55%,
                #4ade80 80%,
                #c9a84c 100%);
        border-radius: 3px;
        box-shadow:
            0 0 6px rgba(201, 168, 76, 1),
            0 0 14px rgba(201, 168, 76, 0.75),
            0 0 28px rgba(201, 168, 76, 0.4),
            0 0 55px rgba(201, 168, 76, 0.18);
        transition: height 0.08s linear;
    }

    /* ── Big beautiful dot (like pink reference) ── */
    .tl-dot {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--dc, #c9a84c);
        border: 3px solid var(--dark);
        box-shadow:
            0 0 0 3px var(--dc, #c9a84c),
            0 0 14px var(--ds, rgba(201, 168, 76, 1)),
            0 0 28px var(--ds, rgba(201, 168, 76, 0.65)),
            0 0 50px var(--ds, rgba(201, 168, 76, 0.28));
        animation: dotBeat 2.5s ease-in-out infinite;
        position: relative;
        z-index: 5;
        flex-shrink: 0;
    }

    /* Ring 1 — tight border ring */
    .tl-dot-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .tl-dot-wrap::before {
        content: '';
        position: absolute;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1.5px solid var(--dot-ring, rgba(201, 168, 76, 0.7));
        box-shadow:
            0 0 10px var(--dot-ring, rgba(201, 168, 76, 0.6)),
            0 0 22px var(--dot-ring, rgba(201, 168, 76, 0.25));
        pointer-events: none;
        z-index: 3;
    }

    /* Ring 2 — outer expanding pulse */
    .tl-dot-wrap::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--dot-ring, rgba(201, 168, 76, 0.3));
        pointer-events: none;
        z-index: 2;
        animation: dotRingPulse 2.5s ease-in-out infinite;
    }

    /* ══ PER-ITEM LAYOUT ══
     Full width flex column:
     ┌─────────────────────────────┐
     │ [dot on line] [IMAGE]       │
     │               [CARD below]  │
     └─────────────────────────────┘
  */
    .tl-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 0 !important;
        margin-bottom: 56px;
        padding: 0;
        position: relative;
    }

    /* Left column: dot only, fixed width matches line position */
    .tl-left .tl-dot-wrap,
    .tl-right .tl-dot-wrap {
        position: relative !important;
        grid-column: unset !important;
        grid-row: unset !important;
        flex-shrink: 0;
        width: 56px;
        margin-top: 80px;
        /* center on image */
        z-index: 4;
    }

    /* Right column: image + card stacked */
    .tl-left .tl-visual,
    .tl-right .tl-visual {
        order: -1;
        /* image first */
        flex: 1;
        min-width: 0;
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .tl-left .tl-card,
    .tl-right .tl-card {
        display: none;
        /* hide, shown via wrapper below */
    }

    /* Wrap visual + card in a flex column */
    .tl-item {
        flex-wrap: nowrap;
    }

    /* Re-do: use a proper structure */
    /* Actually use grid with named areas */
    .tl-item {
        display: grid !important;
        grid-template-columns: 56px 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 0 12px !important;
        margin-bottom: 60px;
        padding-left: 0;
    }

    /* IMAGE: col 2, row 1 */
    .tl-left .tl-visual,
    .tl-right .tl-visual {
        grid-column: 2 !important;
        grid-row: 1 !important;
        order: unset;
        margin: 0 16px 0 0;
        /* right margin from screen edge */
    }

    /* CARD: col 2, row 2 */
    .tl-left .tl-card,
    .tl-right .tl-card {
        display: block !important;
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin: 12px 16px 0 0;
    }

    /* DOT: col 1, row 1+2, centered on image */
    .tl-left .tl-dot-wrap,
    .tl-right .tl-dot-wrap {
        grid-column: 1 !important;
        grid-row: 1 / 3 !important;
        align-self: start !important;
        justify-self: center !important;
        width: 56px;
        margin-top: 0;
        padding-top: 70px;
        /* align dot center to image center */
    }

    /* ── Image ── */
    .tl-visual {
        border-radius: 18px !important;
        overflow: hidden;
        box-shadow:
            0 6px 30px rgba(0, 0, 0, 0.55),
            0 0 0 1px rgba(201, 168, 76, 0.14);
    }

    .tl-img {
        width: 100% !important;
        aspect-ratio: 4/3 !important;
        border-radius: 18px !important;
        border: 1px solid rgba(201, 168, 76, 0.14) !important;
        overflow: hidden;
    }

    /* ── Card ── */
    .tl-card {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    .tl-card-num {
        font-size: 38px !important;
        margin-bottom: -4px !important;
    }

    .tl-icon-wrap {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
        margin-bottom: 14px !important;
    }

    .tl-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .tl-desc {
        font-size: 13.5px !important;
        line-height: 1.72 !important;
        margin-bottom: 14px !important;
    }

    .tl-badge {
        font-size: 11px !important;
        padding: 6px 14px !important;
    }

    /* ── End dot ── */
    .tl-end {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 14px;
        padding-left: 14px;
        margin-top: 0;
    }

    .tl-end-dot {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0;
    }

    .tl-end-label {
        font-size: 13px;
        font-weight: 600;
    }

    /* SERVICES */
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-card {
        padding: 22px 18px;
    }

    .svc-title {
        font-size: 14.5px;
    }

    .svc-desc {
        font-size: 12.5px;
    }

    .services-header,
    [style*="display:flex"][style*="space-between"] {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* REVIEWS */
    .rev-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rev-card {
        padding: 22px 18px;
    }

    .rev-text {
        font-size: 13px;
    }

    .rev-name {
        font-size: 13px;
    }

    /* CTA */
    .cta-wrap {
        margin: 0 18px 60px;
        flex-direction: column;
        padding: 36px 22px;
        text-align: center;
        gap: 24px;
    }

    .cta-right {
        align-items: center;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-sub {
        font-size: 13.5px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
        font-size: 14px;
    }

    /* FOOTER */
    footer {
        padding: 70px 24px 40px;
        background: linear-gradient(to top, rgba(16, 32, 20, 0.6), transparent);
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.25), transparent);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 16px;
        text-align: left;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-tagline {
        font-size: 14.5px;
        max-width: 100%;
        margin: 18px 0 0;
        color: var(--muted2);
        line-height: 1.6;
    }

    .footer-socials {
        justify-content: flex-start;
        margin-top: 28px;
        gap: 14px;
    }

    .soc-btn {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(201, 168, 76, 0.04);
        border: 1px solid rgba(201, 168, 76, 0.12);
        font-size: 16px;
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 22px;
        color: var(--gold);
        letter-spacing: 2px;
    }

    .footer-col a {
        font-size: 15px;
        margin-bottom: 14px;
        color: var(--muted);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 22px;
        text-align: center;
        margin-top: 50px;
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-links {
        justify-content: center;
        gap: 28px;
        flex-wrap: wrap;
    }

    .footer-copy {
        font-size: 13.5px;
        color: var(--muted);
        opacity: 0.7;
    }

    /* BACK TO TOP */
    #backTop {
        bottom: 24px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    /* Disable heavy effects on mobile */
    #spotlight {
        display: none;
    }

    #trail-canvas {
        display: none;
    }

    .glow-ring-anim {
        display: none;
    }

    .hero-ring2 {
        display: none;
    }
}

/* Small phones */
@media(max-width:400px) {
    .hero-title {
        font-size: 26px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feat-card,
    .svc-card,
    .rev-card {
        padding: 20px 16px;
    }

    .tl-card {
        padding: 18px 16px;
    }

    .cta-wrap {
        padding: 28px 16px;
    }
}

/* ════════════════════════════════════════════════════
   REFERENCE-STYLE GLOW SYSTEM
   Bright glowing border + icon inner glow — like the reference card
   Buttons stay GOLD | Cards/elements get color-matched border glow
   ════════════════════════════════════════════════════ */

/* ── KEYFRAMES ── */
@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(74, 222, 128, .8);
    }

    50% {
        transform: scale(1.8);
        box-shadow: 0 0 18px rgba(74, 222, 128, 1), 0 0 36px rgba(74, 222, 128, .55);
    }
}

@keyframes tagPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(201, 168, 76, .14);
    }

    50% {
        box-shadow: 0 0 22px rgba(201, 168, 76, .38), 0 0 44px rgba(201, 168, 76, .13);
    }
}

@keyframes statsBG {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(201, 168, 76, .12), 0 0 28px rgba(201, 168, 76, .04);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(201, 168, 76, .45), 0 0 55px rgba(201, 168, 76, .14);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Card border breath — reference style */
@keyframes greenCardBreath {

    0%,
    100% {
        box-shadow: 0 0 0 1.5px rgba(50, 210, 50, .35), 0 0 22px rgba(50, 210, 50, .2), 0 0 55px rgba(50, 210, 50, .08), inset 0 0 35px rgba(50, 210, 50, .05);
    }

    50% {
        box-shadow: 0 0 0 1.5px rgba(50, 210, 50, .7), 0 0 38px rgba(50, 210, 50, .4), 0 0 90px rgba(50, 210, 50, .18), inset 0 0 55px rgba(50, 210, 50, .1);
    }
}

@keyframes yellowCardBreath {

    0%,
    100% {
        box-shadow: 0 0 0 1.5px rgba(200, 220, 40, .3), 0 0 22px rgba(200, 220, 40, .16), 0 0 55px rgba(200, 220, 40, .07), inset 0 0 35px rgba(200, 220, 40, .04);
    }

    50% {
        box-shadow: 0 0 0 1.5px rgba(200, 220, 40, .65), 0 0 38px rgba(200, 220, 40, .35), 0 0 90px rgba(200, 220, 40, .14), inset 0 0 55px rgba(200, 220, 40, .08);
    }
}

@keyframes goldCardBreath {

    0%,
    100% {
        box-shadow: 0 0 0 1.5px rgba(201, 168, 76, .3), 0 0 22px rgba(201, 168, 76, .18), 0 0 55px rgba(201, 168, 76, .07), inset 0 0 35px rgba(201, 168, 76, .05);
    }

    50% {
        box-shadow: 0 0 0 1.5px rgba(201, 168, 76, .65), 0 0 38px rgba(201, 168, 76, .38), 0 0 90px rgba(201, 168, 76, .15), inset 0 0 55px rgba(201, 168, 76, .09);
    }
}

/* Icon glow pulses */
@keyframes iconGlowGreen {

    0%,
    100% {
        box-shadow: 0 0 16px rgba(50, 210, 50, .55), 0 0 35px rgba(50, 210, 50, .22), inset 0 0 18px rgba(50, 210, 50, .14);
    }

    50% {
        box-shadow: 0 0 30px rgba(50, 210, 50, .9), 0 0 65px rgba(50, 210, 50, .4), inset 0 0 30px rgba(50, 210, 50, .25);
    }
}

@keyframes iconGlowYellow {

    0%,
    100% {
        box-shadow: 0 0 16px rgba(200, 220, 40, .5), 0 0 35px rgba(200, 220, 40, .2), inset 0 0 18px rgba(200, 220, 40, .12);
    }

    50% {
        box-shadow: 0 0 30px rgba(200, 220, 40, .85), 0 0 65px rgba(200, 220, 40, .36), inset 0 0 30px rgba(200, 220, 40, .22);
    }
}

@keyframes iconGlowGold {

    0%,
    100% {
        box-shadow: 0 0 16px rgba(201, 168, 76, .55), 0 0 35px rgba(201, 168, 76, .22), inset 0 0 18px rgba(201, 168, 76, .14);
    }

    50% {
        box-shadow: 0 0 30px rgba(201, 168, 76, .9), 0 0 65px rgba(201, 168, 76, .4), inset 0 0 30px rgba(201, 168, 76, .25);
    }
}

/* ══ NAVBAR ══ */
nav {
    box-shadow: 0 1px 0 rgba(201, 168, 76, .1), 0 4px 30px rgba(0, 0, 0, .5);
}

nav.scrolled {
    box-shadow: 0 1px 0 rgba(201, 168, 76, .22), 0 8px 40px rgba(0, 0, 0, .6);
}

.hex-logo {
    transition: filter .3s;
}

.logo-area:hover .hex-logo {
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, .9)) drop-shadow(0 0 28px rgba(201, 168, 76, .45));
}

.nav-links a {
    transition: color .2s;
}

.nav-links a::after {
    box-shadow: 0 0 10px rgba(201, 168, 76, 1), 0 0 22px rgba(201, 168, 76, .7);
}

/* ══ GOLD BUTTONS (unchanged) ══ */
.btn-nav {
    box-shadow: 0 0 18px rgba(201, 168, 76, .45), 0 0 36px rgba(201, 168, 76, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
    transition: all .3s;
}

.btn-nav:hover {
    box-shadow: 0 0 30px rgba(201, 168, 76, .9), 0 0 60px rgba(201, 168, 76, .45), 0 0 90px rgba(201, 168, 76, .2), inset 0 1px 0 rgba(255, 255, 255, .25);
    transform: translateY(-2px);
}

.btn-strategy,
.btn-cta {
    box-shadow: 0 0 22px rgba(201, 168, 76, .5), 0 0 50px rgba(201, 168, 76, .2), inset 0 1px 0 rgba(255, 255, 255, .2);
    transition: all .3s;
}

.btn-strategy:hover,
.btn-cta:hover {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .7), 0 0 32px rgba(201, 168, 76, .95), 0 0 70px rgba(201, 168, 76, .5), 0 0 110px rgba(201, 168, 76, .2), inset 0 1px 0 rgba(255, 255, 255, .3);
    transform: translateY(-3px) scale(1.025);
}

.btn-strategy:active,
.btn-cta:active {
    transform: translateY(0) scale(.98);
    box-shadow: 0 0 18px rgba(201, 168, 76, .5);
}

/* ══ HERO BADGE ══ */
.hero-badge {
    box-shadow: 0 0 14px rgba(201, 168, 76, .2), 0 0 30px rgba(201, 168, 76, .08), inset 0 1px 0 rgba(255, 255, 255, .06);
    animation: tagPulse 3.5s ease-in-out infinite;
    backdrop-filter: blur(8px);
}

/* ══ FEATURE CARDS — reference style ══ */
.feat-card {
    transition: transform .35s ease, box-shadow .4s ease, border-color .4s ease;
}

/* Card 1 — green border glow (EXACTLY like reference image) */
.fc1 {
    border: 1.5px solid rgba(50, 210, 50, .45) !important;
    background: linear-gradient(145deg, rgba(10, 28, 12, .97), rgba(8, 18, 10, .99)) !important;
    animation: greenCardBreath 3.5s ease-in-out infinite;
}

.fc1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(50, 210, 50, .6), transparent);
    box-shadow: 0 0 8px rgba(50, 210, 50, .8);
    pointer-events: none;
}

.fc1:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 0 1.5px rgba(50, 210, 50, .85), 0 0 45px rgba(50, 210, 50, .55), 0 0 100px rgba(50, 210, 50, .25), inset 0 0 60px rgba(50, 210, 50, .1) !important;
    border-color: rgba(50, 210, 50, .85) !important;
}

/* Card 2 — yellow-green */
.fc2 {
    border: 1.5px solid rgba(200, 220, 40, .4) !important;
    background: linear-gradient(145deg, rgba(12, 24, 8, .97), rgba(9, 18, 7, .99)) !important;
    animation: yellowCardBreath 3.5s ease-in-out infinite;
    animation-delay: .8s;
}

.fc2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 220, 40, .55), transparent);
    box-shadow: 0 0 8px rgba(200, 220, 40, .7);
    pointer-events: none;
}

.fc2:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 0 1.5px rgba(200, 220, 40, .8), 0 0 45px rgba(200, 220, 40, .5), 0 0 100px rgba(200, 220, 40, .22), inset 0 0 60px rgba(200, 220, 40, .09) !important;
    border-color: rgba(200, 220, 40, .8) !important;
}

/* Card 3 — gold */
.fc3 {
    border: 1.5px solid rgba(201, 168, 76, .42) !important;
    background: linear-gradient(145deg, rgba(14, 22, 10, .97), rgba(10, 16, 8, .99)) !important;
    animation: goldCardBreath 3.5s ease-in-out infinite;
    animation-delay: 1.6s;
}

.fc3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .6), transparent);
    box-shadow: 0 0 8px rgba(201, 168, 76, .8);
    pointer-events: none;
}

.fc3:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 0 1.5px rgba(201, 168, 76, .85), 0 0 45px rgba(201, 168, 76, .55), 0 0 100px rgba(201, 168, 76, .25), inset 0 0 60px rgba(201, 168, 76, .1) !important;
    border-color: rgba(201, 168, 76, .85) !important;
}

/* Feature icons — always pulsing like reference */
.fi1 {
    box-shadow: 0 0 18px rgba(50, 210, 50, .6), 0 0 38px rgba(50, 210, 50, .25), inset 0 0 20px rgba(50, 210, 50, .15);
    animation: iconGlowGreen 3.5s ease-in-out infinite;
}

.fi2 {
    box-shadow: 0 0 18px rgba(200, 220, 40, .55), 0 0 38px rgba(200, 220, 40, .22), inset 0 0 20px rgba(200, 220, 40, .12);
    animation: iconGlowYellow 3.5s ease-in-out infinite;
    animation-delay: .8s;
}

.fi3 {
    box-shadow: 0 0 18px rgba(201, 168, 76, .6), 0 0 38px rgba(201, 168, 76, .25), inset 0 0 20px rgba(201, 168, 76, .15);
    animation: iconGlowGold 3.5s ease-in-out infinite;
    animation-delay: 1.6s;
}

/* ══ STATS ══ */
.stats-border {
    animation: statsBG 4s ease-in-out infinite;
}

.stat-item {
    transition: background .3s, box-shadow .3s;
}

.stat-item:hover {
    background: rgba(201, 168, 76, .04);
    box-shadow: inset 0 0 50px rgba(201, 168, 76, .07), inset 0 1px 0 rgba(201, 168, 76, .15), 0 0 25px rgba(201, 168, 76, .1);
}

.stat-num {
    transition: filter .3s;
}

.stat-item:hover .stat-num {
    filter: drop-shadow(0 0 14px rgba(201, 168, 76, .85)) drop-shadow(0 0 32px rgba(201, 168, 76, .38));
}

/* ══ SERVICE CARDS — ref style ══ */
.svc-card {
    transition: transform .35s, box-shadow .4s, border-color .4s;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05), inset 0 1px 0 rgba(255, 255, 255, .03);
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sc, rgba(201, 168, 76, .4)), transparent);
    box-shadow: 0 0 6px var(--sc, rgba(201, 168, 76, .5));
    pointer-events: none;
    opacity: .6;
    transition: opacity .35s;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: var(--sc, rgba(201, 168, 76, .5)) !important;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card:hover {
    box-shadow:
        0 0 0 1.5px var(--sc, rgba(201, 168, 76, .55)),
        0 0 35px var(--sc, rgba(201, 168, 76, .3)),
        0 0 80px var(--sc, rgba(201, 168, 76, .12)),
        inset 0 0 50px color-mix(in srgb, var(--sc, rgba(201, 168, 76, .5)) 8%, transparent),
        0 20px 50px rgba(0, 0, 0, .35) !important;
}

.svc-card:hover .svc-icon {
    box-shadow: 0 0 22px var(--sc, rgba(201, 168, 76, .55)), 0 0 50px var(--sc, rgba(201, 168, 76, .22)), inset 0 0 14px var(--sc, rgba(201, 168, 76, .1));
}

/* ══ REVIEW CARDS ══ */
.rev-card {
    transition: transform .35s, box-shadow .4s, border-color .4s;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .04), inset 0 1px 0 rgba(255, 255, 255, .03);
}

.rev-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: rgba(201, 168, 76, .07);
    line-height: 1;
    pointer-events: none;
}

.rev-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 0 1.5px rgba(201, 168, 76, .45),
        0 0 30px rgba(201, 168, 76, .22),
        0 0 70px rgba(201, 168, 76, .09),
        inset 0 0 50px rgba(201, 168, 76, .06),
        inset 0 1px 0 rgba(201, 168, 76, .15),
        0 16px 40px rgba(0, 0, 0, .3) !important;
    border-color: rgba(201, 168, 76, .45) !important;
}

.rev-stars {
    transition: filter .3s;
}

.rev-card:hover .rev-stars {
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 1)) drop-shadow(0 0 18px rgba(201, 168, 76, .55));
}

.rev-av {
    transition: box-shadow .3s;
}

.rev-card:hover .rev-av {
    box-shadow: 0 0 16px rgba(201, 168, 76, .55), 0 0 32px rgba(201, 168, 76, .22), inset 0 0 10px rgba(201, 168, 76, .1);
}

/* ══ FLOAT CARDS (hero) ══ */
.float-card {
    transition: transform .3s, box-shadow .3s;
}

.fc-analytics {
    border: 1px solid rgba(34, 197, 94, .3) !important;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, .2), 0 0 22px rgba(34, 197, 94, .18), 0 0 50px rgba(34, 197, 94, .08), inset 0 1px 0 rgba(34, 197, 94, .1), 0 16px 40px rgba(0, 0, 0, .5);
}

.fc-analytics:hover {
    box-shadow: 0 0 0 1.5px rgba(34, 197, 94, .65), 0 0 38px rgba(34, 197, 94, .45), 0 0 80px rgba(34, 197, 94, .2), inset 0 0 40px rgba(34, 197, 94, .09), 0 20px 40px rgba(0, 0, 0, .5) !important;
    border-color: rgba(34, 197, 94, .65) !important;
}

.fc-chart {
    border: 1px solid rgba(201, 168, 76, .28) !important;
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .18), 0 0 22px rgba(201, 168, 76, .16), 0 0 50px rgba(201, 168, 76, .07), inset 0 1px 0 rgba(201, 168, 76, .1), 0 16px 40px rgba(0, 0, 0, .5);
}

.fc-chart:hover {
    box-shadow: 0 0 0 1.5px rgba(201, 168, 76, .65), 0 0 38px rgba(201, 168, 76, .45), 0 0 80px rgba(201, 168, 76, .2), inset 0 0 40px rgba(201, 168, 76, .09), 0 20px 40px rgba(0, 0, 0, .5) !important;
    border-color: rgba(201, 168, 76, .65) !important;
}

.fc-tag {
    border: 1px solid rgba(74, 222, 128, .25) !important;
    box-shadow: 0 0 0 1px rgba(74, 222, 128, .15), 0 0 16px rgba(74, 222, 128, .14), inset 0 1px 0 rgba(74, 222, 128, .08);
}

.fc-tag:hover {
    box-shadow: 0 0 0 1.5px rgba(74, 222, 128, .55), 0 0 30px rgba(74, 222, 128, .35), 0 0 65px rgba(74, 222, 128, .14) !important;
    border-color: rgba(74, 222, 128, .55) !important;
}

/* ══ PERSON CONTAINER ══ */
.person-container {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .12), inset 0 0 60px rgba(22, 140, 16, .06), 0 0 55px rgba(22, 140, 16, .22), 0 0 100px rgba(22, 140, 16, .09);
}

/* ══ SECTION TAGS ══ */
.section-tag {
    animation: tagPulse 3.5s ease-in-out infinite;
    backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* ══ HOW IT WORKS steps ══ */
.step {
    transition: all .3s ease;
}

.step:hover {
    background: rgba(201, 168, 76, .035);
    border: 1px solid rgba(201, 168, 76, .25) !important;
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .15), inset 0 0 35px rgba(201, 168, 76, .05), 0 0 20px rgba(201, 168, 76, .08);
}

.step:hover .step-icon {
    box-shadow: 0 0 20px rgba(201, 168, 76, .55), 0 0 45px rgba(201, 168, 76, .22), inset 0 0 14px rgba(201, 168, 76, .1);
    border-color: rgba(201, 168, 76, .65) !important;
}

.step:hover .step-num {
    box-shadow: 0 0 14px rgba(201, 168, 76, .65), 0 0 30px rgba(201, 168, 76, .26), inset 0 0 10px rgba(201, 168, 76, .12);
}

/* ══ WORKS VIS CARD ══ */
.works-vis {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .12), inset 0 0 50px rgba(22, 120, 16, .05), 0 0 50px rgba(22, 120, 16, .07);
    border: 1px solid rgba(201, 168, 76, .1) !important;
}

/* ══ FUNNEL STEPS ══ */
.f-step {
    transition: all .3s ease;
}

.f-step:hover {
    background: rgba(201, 168, 76, .055);
    border: 1px solid rgba(201, 168, 76, .3) !important;
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .16), inset 0 0 25px rgba(201, 168, 76, .06), 0 0 16px rgba(201, 168, 76, .09);
    transform: translateX(6px);
}

/* Progress bar glow tip */
.prog-fill::after {
    box-shadow: 0 0 14px rgba(232, 201, 106, 1), 0 0 28px rgba(232, 201, 106, .75), 0 0 55px rgba(201, 168, 76, .45);
}

/* ══ TIMELINE CARDS — ref style ══ */
.tl-card {
    transition: transform .35s ease, box-shadow .4s ease, border-color .4s ease;
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .1), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.tl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .35), transparent);
    box-shadow: 0 0 8px rgba(201, 168, 76, .5);
    pointer-events: none;
}

.tl-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1.5px rgba(201, 168, 76, .6),
        0 0 45px rgba(201, 168, 76, .35),
        0 0 90px rgba(201, 168, 76, .15),
        inset 0 0 60px rgba(201, 168, 76, .08),
        inset 0 1px 0 rgba(201, 168, 76, .2),
        0 24px 60px rgba(0, 0, 0, .4) !important;
    border-color: rgba(201, 168, 76, .6) !important;
}

.tl-card:hover .tl-icon-wrap {
    box-shadow: 0 0 24px rgba(201, 168, 76, .65), 0 0 50px rgba(201, 168, 76, .28), inset 0 0 16px rgba(201, 168, 76, .14);
}

.tl-img {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .1), inset 0 1px 0 rgba(255, 255, 255, .03);
    transition: transform .4s ease, box-shadow .4s ease;
}

.tl-img:hover {
    box-shadow:
        0 0 0 1.5px rgba(201, 168, 76, .4),
        0 0 40px rgba(201, 168, 76, .25),
        0 0 80px rgba(201, 168, 76, .1),
        inset 0 0 40px rgba(201, 168, 76, .07),
        0 20px 50px rgba(0, 0, 0, .4) !important;
}

/* ══ CTA WRAP ══ */
.cta-wrap {
    transition: box-shadow .4s ease, border-color .4s ease;
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .15), inset 0 1px 0 rgba(201, 168, 76, .07), 0 30px 80px rgba(0, 0, 0, .3);
}

.cta-wrap:hover {
    box-shadow:
        0 0 0 1.5px rgba(201, 168, 76, .4),
        0 0 60px rgba(201, 168, 76, .18),
        0 0 120px rgba(201, 168, 76, .07),
        inset 0 0 80px rgba(201, 168, 76, .06),
        inset 0 1px 0 rgba(201, 168, 76, .15),
        0 30px 80px rgba(0, 0, 0, .3) !important;
    border-color: rgba(201, 168, 76, .38) !important;
}

/* ══ SOCIAL BUTTONS ══ */
.soc-btn {
    transition: all .25s ease;
}

.soc-btn:hover {
    background: rgba(201, 168, 76, .1) !important;
    border-color: rgba(201, 168, 76, .45) !important;
    color: var(--gold2);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .35), 0 0 16px rgba(201, 168, 76, .6), 0 0 32px rgba(201, 168, 76, .22), inset 0 0 12px rgba(201, 168, 76, .08);
}

/* ══ FOOTER LINKS ══ */
.footer-col a {
    transition: color .25s, text-shadow .25s;
}

.footer-col a:hover {
    color: var(--gold) !important;
    text-shadow: 0 0 12px rgba(201, 168, 76, .8), 0 0 28px rgba(201, 168, 76, .38);
}

/* ══ MOBILE MENU ══ */
.mobile-menu a {
    transition: color .2s, text-shadow .2s;
}

.mobile-menu a:hover {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(201, 168, 76, .9), 0 0 40px rgba(201, 168, 76, .42);
}

/* ══ HEADLINE SHIMMER ══ */
.hero-title .hl {
    background: linear-gradient(105deg, var(--gold) 0%, var(--gold3) 38%, var(--gold2) 52%, #fff 64%, var(--gold2) 76%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3.5s linear infinite;
    filter: drop-shadow(0 0 22px rgba(201, 168, 76, .55));
}

/* ══ STAT-ITEM top bar glow ══ */
.stat-item::before {
    box-shadow: 0 4px 14px var(--sa, rgba(201, 168, 76, .55));
}


/* ══════════════════════════════════════
   HERO RIGHT — FOUNDER PROFILE CARD
══════════════════════════════════════ */

/* Hero grid */
.hero {
    grid-template-columns: 1.15fr 0.85fr !important;
}

/* Right column */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-height: 0;
    height: 100%;
    /* needs relative for float cards */
}

/* The card itself */
.founder-card-hero {
    width: 100%;
    background: linear-gradient(145deg, rgba(10, 24, 14, 0.98), rgba(6, 14, 8, 0.99));
    border: 1.5px solid rgba(50, 200, 50, 0.35);
    border-radius: 22px;
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow:
        0 0 0 1.5px rgba(50, 200, 50, 0.28),
        0 0 40px rgba(50, 200, 50, 0.2),
        0 0 80px rgba(50, 200, 50, 0.07),
        inset 0 0 50px rgba(50, 200, 50, 0.04);
    animation: greenCardBreath 4s ease-in-out infinite;
}

.founder-card-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(50, 200, 50, 0.7), transparent);
    box-shadow: 0 0 12px rgba(50, 200, 50, 0.8);
}

/* Avatar */
.fch-avatar-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    flex-shrink: 0;
}

.fch-avatar {
    /* width: 100%;
    height: 100%; */
    border-radius: 50%;
    /* overflow: hidden;
    border: 2px solid rgba(50, 200, 50, 0.4);
    box-shadow: 0 0 16px rgba(50, 200, 50, 0.3), 0 0 32px rgba(50, 200, 50, 0.1);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1e4020, #0a1a0c); */
}

.fch-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fch-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(50, 200, 50, 0.2);
    pointer-events: none;
}

.fch-ring1 {
    inset: -8px;
    animation: fpRingSpin 12s linear infinite;
}

.fch-ring2 {
    inset: -15px;
    border-color: rgba(201, 168, 76, 0.15);
    animation: fpRingSpin 18s linear infinite reverse;
}

.fch-ring3 {
    inset: -22px;
    border-color: rgba(50, 200, 50, 0.08);
    animation: fpRingSpin 26s linear infinite;
}

.fch-online-dot {
    position: absolute;
    bottom: 3px;
    right: 3px;
    z-index: 3;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4ade80;
    border: 2px solid rgba(8, 16, 10, 0.95);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.9), 0 0 16px rgba(74, 222, 128, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

/* Badge */
.fch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(50, 200, 50, 0.07);
    border: 1px solid rgba(50, 200, 50, 0.28);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: rgba(74, 222, 128, 0.9);
    box-shadow: 0 0 10px rgba(50, 200, 50, 0.12);
    width: fit-content;
    margin: 0 auto;
}

.fch-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.9);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Name */
.fch-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 800;
    color: #f5f0e0;
    letter-spacing: -0.3px;
    line-height: 1.1;
    margin: 0;
}

/* Bio */
.fch-bio {
    font-size: 12.5px;
    color: var(--muted2);
    line-height: 1.72;
    text-align: left;
    margin: 0;
}

.fch-gold {
    color: var(--gold2);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.35);
}

.fch-green {
    color: #4ade80;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.35);
}

/* Stats */
.fch-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 6px;
    margin: 0;
    gap: 0;
}

.fch-stat {
    flex: 1;
    text-align: center;
}

.fch-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold2), var(--gold3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4));
    line-height: 1.1;
    margin-bottom: 2px;
}

.fch-stat-num sup {
    font-size: 11px;
}

.fch-stat-lbl {
    font-size: 9.5px;
    color: var(--muted);
    font-weight: 400;
}

.fch-stat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

/* Social links */
.fch-socials {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
}

.fch-slink {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 9px 12px;
    text-decoration: none;
    color: var(--muted2);
    font-size: 12.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.fch-slink::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(50, 200, 50, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.fch-slink:hover {
    background: rgba(50, 200, 50, 0.05);
    border-color: rgba(50, 200, 50, 0.3);
    color: var(--text);
    transform: translateX(4px);
    box-shadow: 0 0 0 1px rgba(50, 200, 50, 0.15), 0 0 15px rgba(50, 200, 50, 0.07);
}

.fch-slink:hover::before {
    opacity: 1;
}

.fch-sicon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.fch-slink:hover .fch-sicon {
    background: rgba(50, 200, 50, 0.08);
    border-color: rgba(50, 200, 50, 0.3);
    box-shadow: 0 0 10px rgba(50, 200, 50, 0.2);
}

.fch-arrow {
    margin-left: auto;
    color: rgba(50, 200, 50, 0.4);
    font-size: 13px;
    transition: all 0.3s;
}

.fch-slink:hover .fch-arrow {
    color: #4ade80;
    transform: translateX(4px);
}

/* ── MOBILE ── */
@media(max-width:768px) {
    .hero {
        grid-template-columns: 1fr !important;
        padding: 90px 18px 36px !important;
        gap: 28px !important;
    }

    .hero-right {
        display: flex !important;
        height: auto;
        align-items: stretch;
    }

    .founder-card-hero {
        padding: 22px 16px 18px;
        border-radius: 18px;
        gap: 12px;
    }

    .fch-name {
        font-size: 22px;
    }

    .fch-bio {
        font-size: 12px;
    }

    .fch-stats {
        padding: 10px 4px;
    }

    .fch-stat-num {
        font-size: 16px;
    }

    .fch-slink {
        padding: 8px 10px;
        font-size: 12px;
    }

    .fch-avatar-wrap {
        width: 70px;
        height: 70px;
    }

    .fch-sicon {
        width: 28px;
        height: 28px;
    }
}

/* ── FCH TOP ROW: chart + stats ── */
.fch-top-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
}

.fch-mini-chart {
    flex: 1;
    background: rgba(8, 18, 10, 0.85);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 11px;
    padding: 10px 12px;
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.12), inset 0 1px 0 rgba(201, 168, 76, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fch-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 38px;
}

.fch-cbar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, #7a6020, #e0bc60);
    opacity: 0.88;
}

.fch-mini-stats {
    flex: 1;
    background: rgba(8, 18, 10, 0.85);
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 11px;
    padding: 10px 14px;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.1), inset 0 1px 0 rgba(34, 197, 94, 0.06);
}

.fch-mini-label {
    font-size: 8.5px;
    color: rgba(74, 222, 128, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fch-mini-val {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #e8c96a, #f0d880);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
    line-height: 1;
}

.fch-mini-change {
    font-size: 10px;
    color: #4ade80;
    margin-top: 4px;
    font-weight: 600;
}

/* ── LIVE BAR at bottom of card ── */
.fch-live-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(8, 20, 10, 0.85);
    border: 1px solid rgba(74, 222, 128, 0.28);
    border-radius: 30px;
    padding: 9px 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted2);
    box-shadow: 0 0 14px rgba(74, 222, 128, 0.12), inset 0 1px 0 rgba(74, 222, 128, 0.06);
    width: fit-content;
    margin: 0 auto;
}

.fch-live-dot2 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.9), 0 0 16px rgba(74, 222, 128, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

@media(max-width:768px) {
    .fch-top-row {
        gap: 8px;
    }

    .fch-mini-chart {
        padding: 8px 10px;
    }

    .fch-chart-bars {
        height: 30px;
    }

    .fch-mini-stats {
        padding: 8px 10px;
    }

    .fch-mini-val {
        font-size: 18px;
    }

    .fch-live-bar {
        font-size: 11.5px;
        padding: 7px 16px;
    }
}

/* ══════════════════════════════════
   HERO-RIGHT LAYOUT + FLOAT CARDS
══════════════════════════════════ */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: 100%;
    padding: 20px 30px 20px 50px;
    /* left:50px space for stats card, right:30px for chart card */
}

/* Base float card style */
.hr-float {
    position: absolute;
    backdrop-filter: blur(16px);
    border-radius: 14px;
    z-index: 20;
    pointer-events: auto;
}

/* ── Chart card: top-right corner ── */
.hr-chart-card {
    top: -10px;
    right: -14px;
    padding: 12px 14px;
    background: rgba(8, 18, 10, 0.88);
    border: 1px solid rgba(201, 168, 76, 0.32);
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.18),
        0 0 20px rgba(201, 168, 76, 0.18),
        0 12px 32px rgba(0, 0, 0, 0.5);
    animation: floatRight 4s ease-in-out infinite;
    animation-delay: -2s;
    min-width: 108px;
}

/* ── Stats card: left side, vertically centered ── */
.hr-stats-card {
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px 16px;
    background: rgba(6, 16, 8, 0.9);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow:
        0 0 0 1px rgba(34, 197, 94, 0.15),
        0 0 22px rgba(34, 197, 94, 0.15),
        0 12px 32px rgba(0, 0, 0, 0.5);
    animation: floatLeft 4s ease-in-out infinite;
    min-width: 126px;
}

.hr-stats-lbl {
    font-size: 8.5px;
    color: rgba(74, 222, 128, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hr-stats-val {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #e8c96a, #f0d880);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
    line-height: 1;
}

.hr-stats-chg {
    font-size: 10.5px;
    color: #4ade80;
    margin-top: 5px;
    font-weight: 600;
}

/* ── Live badge: bottom center ── */
.hr-live-badge {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px 20px;
    background: rgba(8, 20, 10, 0.9);
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow:
        0 0 0 1px rgba(74, 222, 128, 0.14),
        0 0 16px rgba(74, 222, 128, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted2);
    white-space: nowrap;
    animation: floatA 4s ease-in-out infinite;
    animation-delay: -1s;
}

.hr-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.9), 0 0 16px rgba(74, 222, 128, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

/* hover lift on float cards */
.hr-float:hover {
    transform: translateY(-4px) scale(1.03) !important;
    transition: transform 0.3s ease;
}

.hr-stats-card:hover {
    transform: translateY(calc(-50% - 4px)) scale(1.03) !important;
}

/* ── Mobile: hide floats, show live-bar inside card ── */
@media(max-width:768px) {
    .hero-right {
        display: flex !important;
        height: auto;
        padding: 0 !important;
        align-items: stretch;
    }

    .hr-float {
        display: none !important;
    }

    .fch-live-bar {
        display: flex;
    }
}

@media(min-width:769px) {
    .fch-live-bar {
        display: none;
    }

    /* on desktop, use floating badge */
}

/* ── LOADER ── */
#pageLoader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .6s ease, visibility .6s ease;
}

#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold3), var(--gold));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 1.5s linear infinite;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, .7));
}

.loader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, .07);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--golddim), var(--gold2), var(--gold3));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(201, 168, 76, .8);
    transition: width .05s linear;
}

.loader-txt {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── SPOTLIGHT ── */
#spotlight {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle 400px at 50% 50%, transparent 0%, rgba(0, 0, 0, .35) 100%);
    transition: background .1s linear;
    mix-blend-mode: normal;
    opacity: 0.6;
}

/* ── MOUSE TRAIL CANVAS ── */
#trail-canvas {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* ── GRAIN OVERLAY ── */
#grain {
    display: none;
}

/* ── WAVE DIVIDERS ── */
.wave-divider {
    position: relative;
    overflow: hidden;
    height: 60px;
    margin: 0 0 -2px;
    pointer-events: none;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

.wave-divider .wave-path {
    animation: waveMorph 8s ease-in-out infinite;
}

@keyframes waveMorph {

    0%,
    100% {
        d: path("M0,30 C200,55 400,5 600,30 C800,55 1000,5 1200,30 L1200,60 L0,60 Z");
    }

    50% {
        d: path("M0,30 C200,5 400,55 600,30 C800,5 1000,55 1200,30 L1200,60 L0,60 Z");
    }
}

/* ── MARQUEE ── */
.marquee-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(201, 168, 76, .1);
    border-bottom: 1px solid rgba(201, 168, 76, .1);
    background: linear-gradient(90deg, rgba(201, 168, 76, .04), rgba(34, 197, 94, .03), rgba(201, 168, 76, .04));
    margin-bottom: 60px;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 22s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.mq-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted2);
    letter-spacing: .3px;
}

.mq-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

.mq-sep {
    color: rgba(201, 168, 76, .3);
    font-size: 10px;
    padding: 0 4px;
}

.marquee-wrap:hover .marquee-inner {
    animation-play-state: paused;
}

/* ── 3D TILT CARDS ── */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card .tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08) 0%, transparent 65%);
    opacity: 0;
    transition: opacity .3s;
    z-index: 10;
}

.tilt-card:hover .tilt-shine {
    opacity: 1;
}

/* ── MAGNETIC BUTTON ── */
.magnetic {
    transition: transform .4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── TYPEWRITER cursor ── */
.tw-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--gold);
    margin-left: 2px;
    vertical-align: middle;
    animation: twBlink .75s step-end infinite;
    box-shadow: 0 0 8px rgba(201, 168, 76, .9);
}

@keyframes twBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ── SPLIT TEXT animation ── */
.split-word {
    display: inline-block;
    overflow: hidden;
}

.split-word span {
    display: inline-block;
    transform: translateY(110%);
    animation: wordReveal .7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordReveal {
    to {
        transform: translateY(0);
    }
}

/* ── GLOW RINGS on hero ── */
.glow-ring-anim {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(201, 168, 76, .12);
    animation: expandRing 4s ease-out infinite;
}

@keyframes expandRing {
    0% {
        transform: scale(.5);
        opacity: .8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ── CARD NUMBER big bg text ── */
.tl-card-num {
    background: linear-gradient(135deg, rgba(201, 168, 76, .06), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SCROLL PROGRESS BAR ── */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 9999;
    width: 0%;
    background: linear-gradient(90deg, var(--golddim), var(--gold2), var(--gold3), var(--green2));
    box-shadow: 0 0 10px rgba(201, 168, 76, .8), 0 0 20px rgba(201, 168, 76, .4);
    transition: width .1s linear;
    pointer-events: none;
}

#scrollProgress::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 6px;
    height: 6px;
    background: var(--gold3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 168, 76, 1), 0 0 20px rgba(201, 168, 76, .7);
}

/* ── BACK TO TOP ── */
@keyframes backTopArrowFloat {
    0%,
    100% {
        transform: translateY(0);
        opacity: .92;
    }

    50% {
        transform: translateY(-2px);
        opacity: 1;
    }
}

#backTop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 400;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #9a7828);
    border: none;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(201, 168, 76, .55), 0 0 40px rgba(201, 168, 76, .22);
    opacity: 0;
    transform: translateY(20px);
    transition: all .35s ease;
    color: #060e08;
    font-size: 18px;
    font-weight: 700;
}

#backTop i,
#backTop svg {
    width: 16px;
    height: 16px;
    animation: backTopArrowFloat 1.8s ease-in-out infinite;
    transform-origin: center;
}

#backTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#backTop:hover {
    box-shadow: 0 0 35px rgba(201, 168, 76, .9), 0 0 70px rgba(201, 168, 76, .4);
    transform: translateY(-4px);
}

/* ── HERO EXTRA RINGS ── */
.hero-ring2 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(34, 197, 94, .06);
    animation: ringPulse 6s ease-in-out infinite;
}

.hero-ring2::before {
    content: '';
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .05);
    animation: ringPulse 6s ease-in-out infinite 2s;
}

.hero-ring2::after {
    content: '';
    position: absolute;
    inset: 160px;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, .04);
    animation: ringPulse 6s ease-in-out infinite 4s;
}

/* ── SECTION NUMBER accent ── */
.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 800;
    position: absolute;
    right: -20px;
    top: -30px;
    color: rgba(201, 168, 76, .04);
    letter-spacing: -4px;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* ══ TIMELINE STYLES ══ */
.tl-section {
    position: relative;
    z-index: 1;
    padding: 80px 56px;
}

.tl-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.tl-header .section-sub {
    text-align: center;
}

.tl-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* The vertical line */
.tl-line-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 60px;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
    border-radius: 2px;
}

.tl-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #c9a84c, #a8c828, #4ade80, #c9a84c);
    border-radius: 2px;
    transition: height 0.1s linear;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5), 0 0 24px rgba(201, 168, 76, 0.2);
}

/* Each row */
.tl-item {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Dot in center column */
.tl-dot-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.tl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dc, #c9a84c);
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 3px var(--dc, #c9a84c), 0 0 20px var(--ds, rgba(201, 168, 76, 0.6)), 0 0 40px var(--ds, rgba(201, 168, 76, 0.3));
    transition: transform 0.3s;
    animation: dotBeat 2.5s ease-in-out infinite;
}

@keyframes dotBeat {

    0%,
    100% {
        box-shadow: 0 0 0 3px var(--dc, #c9a84c), 0 0 20px var(--ds, rgba(201, 168, 76, 0.6));
    }

    50% {
        box-shadow: 0 0 0 3px var(--dc, #c9a84c), 0 0 35px var(--ds, rgba(201, 168, 76, 0.9)), 0 0 60px var(--ds, rgba(201, 168, 76, 0.4));
        transform: scale(1.2);
    }
}

@keyframes dotRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Cards */
.tl-card {
    background: linear-gradient(145deg, rgba(10, 22, 12, 0.97), rgba(6, 14, 8, 0.99));
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.tl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.06), transparent 65%);
    pointer-events: none;
}

.tl-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.12), 0 20px 48px rgba(0, 0, 0, 0.3);
}

.tl-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: rgba(201, 168, 76, 0.07);
    line-height: 1;
    margin-bottom: -8px;
    letter-spacing: -2px;
}

.tl-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1.5px solid;
    transition: box-shadow 0.3s;
}

.tl-card:hover .tl-icon-wrap {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
}

.tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #e8e0cc;
    margin-bottom: 12px;
    line-height: 1.25;
}

.tl-desc {
    font-size: 14px;
    color: #8a9e82;
    line-height: 1.75;
    margin-bottom: 16px;
}

.tl-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid;
    letter-spacing: 0.5px;
}

/* Visuals */
.tl-visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.tl-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: transform 0.4s, box-shadow 0.4s;
}

.tl-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15), 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Align left = card on left, right = card on right */
.tl-left .tl-card {
    grid-column: 1;
}

.tl-left .tl-dot-wrap {
    grid-column: 2;
}

.tl-left .tl-visual {
    grid-column: 3;
}

.tl-right .tl-visual {
    grid-column: 1;
}

.tl-right .tl-dot-wrap {
    grid-column: 2;
}

.tl-right .tl-card {
    grid-column: 3;
}

/* End dot */
.tl-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 3;
    margin-top: -20px;
}

.tl-end-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #9a7828);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.7), 0 0 60px rgba(201, 168, 76, 0.3);
    animation: endGlow 2s ease-in-out infinite;
}

@keyframes endGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(201, 168, 76, 0.7), 0 0 60px rgba(201, 168, 76, 0.3);
    }

    50% {
        box-shadow: 0 0 50px rgba(201, 168, 76, 0.9), 0 0 80px rgba(201, 168, 76, 0.5);
    }
}

.tl-end-inner {
    font-size: 22px;
    color: #060e08;
    font-weight: 800;
}

.tl-end-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted2);
    letter-spacing: 0.3px;
}

/* timeline mobile — handled in main responsive block above */
@media(max-width:768px) {
    .svc-header-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .svc-header-row .btn-strategy {
        align-self: flex-start;
    }
    /* ══════════════════════════════════════════
   MOBILE TIMELINE — Pink reference style
   Line LEFT · Big dot · Image RIGHT · Card below
══════════════════════════════════════════ */

    /* ── SECTION padding ── */
    .tl-section {
        padding: 50px 0px 50px 0;
    }

    .tl-header {
        padding: 0 18px;
        margin-bottom: 44px;
    }

    /* ── WRAP: full bleed, no side padding ── */
    .tl-wrap {
        padding: 0;
        max-width: 100%;
    }

    /* ── Vertical glow line ── */
    .tl-line-track {
        left: 28px;
        transform: none;
        top: 0;
        bottom: 40px;
        width: 2.5px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 3px;
    }

    .tl-line-fill {
        background: linear-gradient(to bottom,
                #c9a84c 0%,
                #d4c040 25%,
                #8ae050 55%,
                #4ade80 80%,
                #c9a84c 100%);
        border-radius: 3px;
        box-shadow:
            0 0 6px rgba(201, 168, 76, 1),
            0 0 14px rgba(201, 168, 76, 0.75),
            0 0 28px rgba(201, 168, 76, 0.4),
            0 0 55px rgba(201, 168, 76, 0.18);
        transition: height 0.08s linear;
    }

    /* ── Big beautiful dot (like pink reference) ── */
    .tl-dot {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--dc, #c9a84c);
        border: 3px solid var(--dark);
        box-shadow:
            0 0 0 3px var(--dc, #c9a84c),
            0 0 14px var(--ds, rgba(201, 168, 76, 1)),
            0 0 28px var(--ds, rgba(201, 168, 76, 0.65)),
            0 0 50px var(--ds, rgba(201, 168, 76, 0.28));
        animation: dotBeat 2.5s ease-in-out infinite;
        position: relative;
        z-index: 5;
        flex-shrink: 0;
    }

    /* Ring 1 — tight border ring */
    .tl-dot-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .tl-dot-wrap::before {
        content: '';
        position: absolute;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1.5px solid var(--dot-ring, rgba(201, 168, 76, 0.7));
        box-shadow:
            0 0 10px var(--dot-ring, rgba(201, 168, 76, 0.6)),
            0 0 22px var(--dot-ring, rgba(201, 168, 76, 0.25));
        pointer-events: none;
        z-index: 3;
    }

    /* Ring 2 — outer expanding pulse */
    .tl-dot-wrap::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--dot-ring, rgba(201, 168, 76, 0.3));
        pointer-events: none;
        z-index: 2;
        animation: dotRingPulse 2.5s ease-in-out infinite;
    }

    /* ══ PER-ITEM LAYOUT ══
     Full width flex column:
     ┌─────────────────────────────┐
     │ [dot on line] [IMAGE]       │
     │               [CARD below]  │
     └─────────────────────────────┘
  */
    .tl-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 0 !important;
        margin-bottom: 56px;
        padding: 0;
        position: relative;
    }

    /* Left column: dot only, fixed width matches line position */
    .tl-left .tl-dot-wrap,
    .tl-right .tl-dot-wrap {
        position: relative !important;
        grid-column: unset !important;
        grid-row: unset !important;
        flex-shrink: 0;
        width: 56px;
        margin-top: 80px;
        /* center on image */
        z-index: 4;
    }

    /* Right column: image + card stacked */
    .tl-left .tl-visual,
    .tl-right .tl-visual {
        order: -1;
        /* image first */
        flex: 1;
        min-width: 0;
        grid-column: unset !important;
        grid-row: unset !important;
    }

    .tl-left .tl-card,
    .tl-right .tl-card {
        display: none;
        /* hide, shown via wrapper below */
    }

    /* Wrap visual + card in a flex column */
    .tl-item {
        flex-wrap: nowrap;
    }

    /* Re-do: use a proper structure */
    /* Actually use grid with named areas */
    .tl-item {
        display: grid !important;
        grid-template-columns: 56px 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 0 12px !important;
        margin-bottom: 60px;
        padding-left: 0;
    }

    /* IMAGE: col 2, row 1 */
    .tl-left .tl-visual,
    .tl-right .tl-visual {
        grid-column: 2 !important;
        grid-row: 1 !important;
        order: unset;
        margin: 0 16px 0 0;
        /* right margin from screen edge */
    }

    /* CARD: col 2, row 2 */
    .tl-left .tl-card,
    .tl-right .tl-card {
        display: block !important;
        grid-column: 2 !important;
        grid-row: 2 !important;
        margin: 12px 16px 0 0;
    }

    /* DOT: col 1, row 1+2, centered on image */
    .tl-left .tl-dot-wrap,
    .tl-right .tl-dot-wrap {
        grid-column: 1 !important;
        grid-row: 1 / 3 !important;
        align-self: start !important;
        justify-self: center !important;
        width: 56px;
        margin-top: 0;
        padding-top: 70px;
        /* align dot center to image center */
    }

    /* ── Image ── */
    .tl-visual {
        border-radius: 18px !important;
        overflow: hidden;
        box-shadow:
            0 6px 30px rgba(0, 0, 0, 0.55),
            0 0 0 1px rgba(201, 168, 76, 0.14);
    }

    .tl-img {
        width: 100% !important;
        aspect-ratio: 4/3 !important;
        border-radius: 18px !important;
        border: 1px solid rgba(201, 168, 76, 0.14) !important;
        overflow: hidden;
    }

    /* ── Card ── */
    .tl-card {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    .tl-card-num {
        font-size: 38px !important;
        margin-bottom: -4px !important;
    }

    .tl-icon-wrap {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
        margin-bottom: 14px !important;
    }

    .tl-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .tl-desc {
        font-size: 13.5px !important;
        line-height: 1.72 !important;
        margin-bottom: 14px !important;
    }

    .tl-badge {
        font-size: 11px !important;
        padding: 6px 14px !important;
    }

    /* ── End dot ── */
    .tl-end {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 14px;
        padding-left: 14px;
        margin-top: 0;
    }

    .tl-end-dot {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0;
    }

    .tl-end-label {
        font-size: 13px;
        font-weight: 600;
    }

}
