
:root {
    --green:#8cc63f;
    --green-glow: rgba(142, 202, 65, 0.35);
    --green-dim: rgba(142, 202, 65, 0.15);
    --white: #1c1c1c;
    --black: #1a1a1a;
    --bg: #ffffff;
    --surface: #f9f9f9;
    --surface-2: #f2f2f2;
    --text-muted: rgba(0, 0, 0, 0.45);
    --text-mid: rgba(0, 0, 0, 0.72);
    --text-dark: #1a1a1a;
	--brdcrumb:#f7f7f7;
    --border: rgba(0, 0, 0, 0.10);
    --border-green: rgba(142, 202, 65, 0.95);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--white);
            overflow-x: hidden;
            min-height: 100vh
        }

        #particles {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            display: flex;
            align-items: center !important;
            justify-content: space-around;
            padding: 0 2px;
            height: 72px;
            background: white;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            animation: fadeDown .8s ease both
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 18px;
            letter-spacing: -.02em;
            color: var(--white);
            text-decoration: none;
            flex-shrink: 0
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            /* background: var(--white); */
            border-radius: 10px;
			border:1px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            color: white;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-mid);
            text-decoration: none;
            letter-spacing: .01em;
            transition: color .2s;
            white-space: nowrap
        }

        .nav-links a:hover {
            color: var(--white)
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px
        }

        .nav-cta {
            padding: 10px 22px;
            background: var(--green);
            color: var(--black);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: .02em;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 0 20px var(--green-glow);
            white-space: nowrap
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 0 32px var(--green-glow)
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            padding: 8px;
            transition: border-color .2s
        }

        .hamburger:hover {
            border-color: var(--border-green)
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all .3s ease;
            transform-origin: center
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg)
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0)
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg)
        }

        /* MOBILE MENU */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background:#fffffff7;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 190;
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .3s ease
        }

        .mobile-menu.open {
            max-height: 420px;
            padding: 16px 0 28px
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            gap: 4px
        }

        .mobile-menu ul a {
            display: block;
            padding: 13px 0;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-mid);
            text-decoration: none;
            border-bottom: 1px solid var(--border);
            transition: color .2s
        }

        .mobile-menu ul a:hover {
            color: var(--white)
        }

        .mobile-cta {
            display: block;
            margin: 18px 24px 0;
            text-align: center;
            padding: 15px;
            background: var(--green);
            color: var(--black);
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: .02em;
            box-shadow: 0 0 20px var(--green-glow)
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 110px 24px 0;
            overflow: hidden;
      
            z-index: 1
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
   
            height: 380px;
            background: radial-gradient(ellipse at center, var(--green-glow) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            animation: glowPulse 4s ease-in-out infinite
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
           background-image: linear-gradient(rgba(142, 202, 65, 0.120) 1px, transparent 1px), linear-gradient(90deg, rgba(142, 202, 65, 0.120) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            width: 100%
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            background: rgba(255, 80, 160, 0.15);
            border: 1px solid rgba(255, 80, 160, 0.3);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #ff60b0;
            letter-spacing: .05em;
            margin-bottom: 28px;
            animation: fadeUp .9s .2s ease both
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #ff60b0;
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(52px, 8vw, 105px);
            line-height: .95;
            letter-spacing: .01em;
            color: var(--white);
            margin-bottom: 6px;
            animation: fadeUp .9s .35s ease both
        }

        .hero-title-green {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(42px, 6.5vw, 84px);
            color: var(--green);
            letter-spacing: .02em;
            animation: fadeUp .9s .5s ease both
        }

        .hero-subtitle {
            font-size: clamp(13px, 1.5vw, 16px);
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 500px;
            margin: 20px auto 32px;
            animation: fadeUp .9s .65s ease both
        }

        /* STORE BUTTONS */
        .store-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 56px;
            animation: fadeUp .9s .8s ease both
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 22px;
            border-radius: 10px;
            text-decoration: none;
            font-family: var(--font-body);
            transition: transform .2s, box-shadow .2s
        }

        .store-btn.apple {
            /* background: var(--white); */
            color: var(--black);
			border:1px solid var(--white);
        }

        .store-btn.google {
            background: transparent;
            color: var(--white);
          border:1px solid var(--white);
        }

        .store-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5)
        }

        .store-btn svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0
        }

        .store-btn-label {
            line-height: 1
        }

        .store-btn-label span {
            display: block;
            font-size: 10px;
            opacity: .6;
            margin-bottom: 2px
        }

        .store-btn-label strong {
            font-size: 15px;
            font-weight: 700
        }

        /* CAR SECTION */
        .car-section {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 900px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            min-height: 440px;
            margin: 0 auto;
            margin-bottom: 88px;
        }

        /* Car */
        .car-wrapper {
            position: relative;
            width: min(300px, 50vw);
            z-index: 3;
            animation: carEntrance 1.6s 1s cubic-bezier(.22, 1, .36, 1) both;
            transform-origin: bottom center;
            flex-shrink: 0
        }

        .car-wrapper::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            height: 28px;
            background: radial-gradient(ellipse at center, rgba(142, 202, 65, 0.55) 0%, transparent 70%);
            border-radius: 50%;
            animation: shadowPulse 3s ease-in-out infinite
        }

        .car-image {
            width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 24px 60px rgba(142, 202, 65, 0.35));
            animation: carFloat 6s ease-in-out infinite 2.5s
        }

        /* Shared float-card */
        .float-card {
            position: absolute;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px 20px;
            z-index: 5;
            min-width: 160px
        }

        /* TOP-LEFT: Save Over */
        .float-card.savings {
            left: 0;
            top: 20px;
            animation: fadeUp .9s 1.8s ease both, cardFloat 5s 2.7s ease-in-out infinite
        }

        /* BOTTOM-LEFT: Safe and Secure */
        .float-card.safe {
            left: 0;
            bottom: 0;
            animation: fadeUp .9s 2.2s ease both, cardFloat 5s 3.2s ease-in-out infinite
        }

        /* BOTTOM-RIGHT: Fully Electric */
        .float-card.electric {
            right: 0;
            bottom: 20px;
            text-align: center;
            animation: fadeUp .9s 2s ease both, cardFloat 5s 3s ease-in-out infinite
        }

        /* TOP-RIGHT: Smiley */
        .smiley-badge {
            position: absolute;
            right: 20px;
            top: 40px;
            width: 60px;
            height: 60px;
            background: var(--surface);
            border: 2px solid rgba(200, 180, 60, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            z-index: 5;
            animation: fadeUp .9s 2.4s ease both, cardFloat 5s 3.5s ease-in-out infinite
        }

        /* Card internals */
        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px
        }

        .card-icon.pink-icon {
            background: rgba(220, 60, 130, 0.15);
            border: 1px solid rgba(220, 60, 130, 0.2)
        }

        .card-icon.green-icon {
            background: var(--green-dim);
            border: 1px solid var(--border-green)
        }

        .card-icon svg {
            width: 24px;
            height: 24px
        }

        .card-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: .07em;
            text-transform: uppercase;
            margin-bottom: 4px
        }

        .card-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -.02em
        }

        .card-sub {
            font-size: 11px;
            color: var(--green);
            font-weight: 600;
            margin-top: 4px
        }

        .card-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--white)
        }

        /* KEYFRAMES */
        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(32px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes carEntrance {
            from {
                opacity: 0;
                transform: translateY(130px) scale(0.85)
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1)
            }
        }

        @keyframes carFloat {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-16px)
            }
        }

        @keyframes cardFloat {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-9px)
            }
        }

        @keyframes shadowPulse {

            0%,
            100% {
                opacity: .8;
                transform: translateX(-50%) scaleX(1)
            }

            50% {
                opacity: .3;
                transform: translateX(-50%) scaleX(.7)
            }
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: .9;
                transform: translateX(-50%) scale(1)
            }

            50% {
                opacity: .4;
                transform: translateX(-50%) scale(1.12)
            }
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .25
            }
        }

        /* RESPONSIVE */
        @media(max-width:900px) {
            nav {
        justify-content: space-between;
        padding: 0 14px;

            }

            .nav-links {
                display: none
            }

            .nav-cta {
                display: none
            }

            .hamburger {
                display: flex
            }

            .mobile-menu {
                display: block
            }

            .hero {
                padding: 88px 16px 0
            }

            .car-section {
                min-height: 360px
            }

            .car-wrapper {
                width: min(250px, 54vw)
            }

            .float-card {
                min-width: 130px;
                padding: 12px 14px
            }

            .card-value {
                font-size: 18px
            }

            .card-icon {
                width: 36px;
                height: 36px
            }

            .float-card.savings {
                left: 0;
                top: 10px
            }

            .float-card.safe {
                left: 0;
                bottom: 0
            }

            .float-card.electric {
                right: 0;
                bottom: 10px;
                min-width: 120px
            }

            .smiley-badge {
                right: 10px;
                top: 20px;
                width: 50px;
                height: 50px;
                font-size: 22px
            }
        }

        @media(max-width:600px) {
            .hero-title {
                font-size: clamp(40px, 12vw, 64px)
            }
  .hero {
            
            min-height: 50vh;
  }
            .hero-title-green {
                font-size: clamp(32px, 10vw, 52px)
            }

            .store-buttons {
                gap: 10px;
                margin-bottom: 36px
            }

            .store-btn {
                padding: 10px 16px
            }

            .store-btn-label strong {
                font-size: 13px
            }

            .car-section {
                min-height: 290px
            }

            .car-wrapper {
                width: min(200px, 58vw)
            }

            .float-card {
                min-width: 105px;
                padding: 10px 11px;
                border-radius: 12px
            }

            .card-value {
                font-size: 15px
            }

            .card-title {
                font-size: 12px
            }

            .card-label {
                font-size: 9px
            }

            .card-sub {
                font-size: 9px
            }

            .card-icon {
                width: 30px;
                height: 30px;
                border-radius: 8px;
                margin-bottom: 7px
            }

            .card-icon svg {
                width: 16px;
                height: 16px
            }

            .smiley-badge {
                width: 42px;
                height: 42px;
                font-size: 19px;
                right: 2px;
                top: 8px
            }

            .float-card.electric {
                min-width: 100px
            }
        }

        @media(max-width:380px) {
            .float-card {
                min-width: 88px;
                padding: 8px 9px
            }

            .card-value {
                font-size: 13px
            }

            .car-wrapper {
                width: min(180px, 62vw)
            }
        }

.hiw-wrap {
	    background: #f5f5f5;
}
       .hiw-section {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 72px 40px 88px;
  position: relative;
}
.hiw-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(142,202,65,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hiw-head {
  text-align: center;
  margin-bottom: 64px;
}
.hiw-head h2 {
  font-family: var(--font-display);
  font-size: 62px;
  color: var(--white);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 14px;
}
.hiw-head p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}
.hiw-body {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 0 32px;
  align-items: center;
}
.hiw-col {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.hiw-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hiw-step.on { opacity: 1; transform: translateY(0); }
.hiw-col-left .hiw-step { text-align: right; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--green);
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.step-icon {
  display: inline-flex;
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.step-icon svg { width: 15px; height: 15px; fill: var(--green); }
.hiw-col-left .step-icon { margin-left: auto; }
.hiw-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}
.hiw-step p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.75;
}
.hiw-col-left .hiw-step::after {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--border-green);
  margin-top: 12px; margin-left: auto;
}
.hiw-col-right .hiw-step::before {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--border-green);
  margin-bottom: 12px;
}
.features_section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.first_fetures_ {
  width: 260px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.86) translateY(24px);
  transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
}
.first_fetures_.on { opacity: 1; transform: scale(1) translateY(0); }
.first_fetures_ img {
  width: 100%;
  display: block;
  border-radius: 28px;

}
.phone-glow {
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 70px;
  background: radial-gradient(ellipse, rgba(142,202,65,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.phone-glow-top {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 50px;
  background: radial-gradient(ellipse, rgba(142,202,65,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .hiw-section {
    padding: 56px 32px 72px;
  }
  .hiw-head h2 {
    font-size: 50px;
  }
  .hiw-body {
    grid-template-columns: 1fr 220px 1fr;
    gap: 0 20px;
  }
  .first_fetures_ {
    width: 220px;
  }
  .hiw-col {
    gap: 44px;
  }
}

/* ── Small tablet: 768px — stack phone top, steps below ── */
@media (max-width: 768px) {
  .hiw-section {
    padding: 48px 24px 64px;
  }
  .hiw-head {
    margin-bottom: 40px;
  }
  .hiw-head h2 {
    font-size: 44px;
  }
  .hiw-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 40px 0;
  }
  .hiw-col-left {
    order: 2;
  }
  .features_section {
    order: 1;
  }
  .hiw-col-right {
    order: 3;
  }
  .hiw-col-left .hiw-step {
    text-align: left;
  }
  .hiw-col-left .step-icon {
    margin-left: 0;
  }
  .hiw-col-left .hiw-step::after {
    margin-left: 0;
  }
  .hiw-col {
    gap: 36px;
  }
  .first_fetures_ {
    width: 200px;
  }
}

/* ── Mobile: 480px ── */
@media (max-width: 480px) {
  .hiw-section {
    padding: 40px 16px 56px;
  }
  .hiw-head h2 {
    font-size: 36px;
  }
  .hiw-head p {
    font-size: 13px;
  }
  .hiw-section::before {
    width: 100%;
    height: 300px;
  }
  .first_fetures_ {
    width: 170px;
  }
  .phone-glow {
    width: 140px;
    height: 50px;
  }
  .phone-glow-top {
    width: 110px;
    height: 36px;
  }
  .hiw-step h3 {
    font-size: 15px;
  }
  .hiw-step p {
    font-size: 12px;
  }
  .hiw-col {
    gap: 28px;
  }
}

.ft-root{
  font-family: var(--font-body);
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Footer bottom PNG background */
.ft-root::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;

  background: url("../images/hero/footer.png") no-repeat bottom center;
  background-size: cover;

  /* Reduce image opacity */
  opacity: 0.18;

  pointer-events: none;
  z-index: 0;
}

/* Keep content above background */
.ft-root > *{
  position: relative;
  z-index: 2;
}
.ft-links-area{
  width:100%;
  max-width:1340px;
  margin:0 auto;
  padding:64px 40px 56px;
}

.ft-grid{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:40px 32px;
  padding-bottom:44px;
  border-bottom:1px solid var(--border);
}

.ft-brand-logo{
  font-family:var(--font-display);
  font-size:40px;
  color:var(--white);
  letter-spacing:2px;
  line-height:1;
  margin-bottom:14px;
}
.ft-brand-logo span{color:var(--green)}
.ft-brand-desc{
  font-size:13px;
  color:var(--text-muted);
  line-height:1.8;
  max-width:260px;
  margin-bottom:26px;
}
.ft-socials{
  display:flex;
  gap:10px;
}
.ft-soc-btn{
  width:36px;height:36px;
  border-radius:50%;
  border:1px solid var(--border-green);
  background:var(--green-dim);
  display:flex;align-items:center;justify-content:center;
  color:var(--green);
  font-size:16px;
  text-decoration:none;
  transition:background 0.2s;
}
.ft-soc-btn:hover{background:rgba(142,202,65,0.2)}

.ft-col-title{
  font-family:var(--font-display);
  font-size:19px;
  color:var(--white);
  letter-spacing:1.5px;
  margin-bottom:18px;
}
.ft-col-title::after{
  content:'';display:block;
  width:22px;height:2px;
  background:var(--green);
  margin-top:7px;
}
.ft-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:11px;
}
.ft-links li a{
  font-size:13.5px;
  color:var(--text-muted);
  text-decoration:none;
  display:inline-flex;align-items:center;gap:7px;
  transition:color 0.2s;
}
.ft-links li a::before{
  content:'';
  width:4px;height:4px;
  border-radius:50%;
  background:rgba(142,202,65,0.3);
  flex-shrink:0;
  transition:background 0.2s;
}
.ft-links li a:hover{color:var(--green)}
.ft-links li a:hover::before{background:var(--green)}

.ft-bottom-bar{
  max-width:1340px;
  margin:0 auto;
  padding:20px 40px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.ft-copy{font-size:12.5px;color:var(--text-muted)}
.ft-copy span{color:var(--green)}
.ft-legal{display:flex;gap:10px;list-style:none}
.ft-legal li a{
  font-size:12.5px;color:var(--text-muted);
  text-decoration:none;padding:0 16px;
  border-right:1px solid var(--border);
  transition:color 0.2s;
}
.ft-legal li:last-child a{border-right:none;padding-right:0}
.ft-legal li a:hover{color:var(--green)}

.ft-car-img{
  width:100%;height:100%;
  object-fit:contain;
  filter:drop-shadow(0 0 8px rgba(142,202,65,0.5));
}
.ft-headlight{
  position:absolute;
  right:-20px;top:50%;transform:translateY(-50%);
  width:24px;height:12px;
  background:radial-gradient(ellipse at left,rgba(255,240,160,0.65) 0%,transparent 80%);
  border-radius:50%;
  pointer-events:none;
}

@media(max-width:1024px){
  .ft-grid{grid-template-columns:1fr 1fr;gap:36px 28px}
  .ft-brand-desc{max-width:100%}
}
@media(max-width:640px){
  .ft-links-area{padding:48px 20px 40px}
  .ft-grid{grid-template-columns:1fr 1fr;gap:28px 18px}
  .ft-brand-logo{font-size:32px}
  .ft-city-scene{height:150px}
  .ft-bottom-bar{padding:16px 20px 0;flex-direction:column;align-items:flex-start}
  .ft-legal{flex-wrap:wrap}
  .ft-legal li a{padding:0 12px}
}
@media(max-width:400px){
  .ft-grid{grid-template-columns:1fr}
}

.faq-root{
  background:var(--green);
  font-family:var(--font-body);
  width:100%;
  padding:72px 40px 80px;
}
.faq-inner{
  max-width:1270px;
  margin:0 auto;
  display:grid;
  grid-template-columns:340px 1fr;
  gap:0 64px;
  align-items:start;
}
.faq-left{
  position:sticky;
  top:32px;
}
.faq-label{
  font-size:11px;
  letter-spacing:3px;
  color:var(--green);
  text-transform:uppercase;
  margin-bottom:12px;
  font-family:var(--font-body);
  font-weight:600;
}
.faq-left h2{
  font-family:var(--font-display);
  font-size:52px;
  color:var(--white);
  letter-spacing:1px;
  line-height:1.05;
  margin-bottom:16px;
}
.faq-left p{
  font-size:13.5px;
  color:var(--text-muted);
  line-height:1.8;
  margin-bottom:36px;
}
.faq-person{
  position:relative;
  width:260px;
  height:280px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
}
.faq-person img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  opacity:0.85;
}
.faq-person-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(6,6,6,0.7) 0%,transparent 55%);
}
.faq-person-badge{
  position:absolute;
  bottom:16px;
  left:16px;
  right:16px;
  background:rgba(17,17,17,0.85);
  border:1px solid var(--border-green);
  border-radius:10px;
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.faq-person-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--green);
  flex-shrink:0;
  box-shadow:0 0 6px var(--green);
}
.faq-person-badge span{
  font-size:11.5px;
  color:var(--green);
  font-weight:500;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:0;
}
.faq-item{
  border-bottom:1px solid var(--border);
  overflow:hidden;
}
.faq-item:first-child{border-top:1px solid var(--border)}
.faq-q{
  width:100%;
  background:none;
  border:none;
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  text-align:left;
}
.faq-q-text{
  font-size:14.5px;
  font-weight:600;
  color:var(--text-mid);
  font-family:var(--font-body);
  transition:color 0.2s;
  flex:1;
}
.faq-item.open .faq-q-text{color:var(--white)}
.faq-icon{
  width:26px;height:26px;
  border-radius:50%;
  border:1px solid var(--border-green);
  background:var(--green-dim);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:background 0.25s,border-color 0.25s;
}
.faq-item.open .faq-icon{background:var(--green);border-color:var(--bg)}
.faq-icon svg{
  width:14px;height:14px;
  stroke:var(--green);
  fill:none;
  stroke-width:2.2;
  stroke-linecap:round;
  transition:transform 0.3s ease,stroke 0.25s;
}
.faq-item.open .faq-icon svg{transform:rotate(45deg);stroke:var(--bg)}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.38s ease,padding 0.25s ease;
  padding:0;
}
.faq-item.open .faq-a{
  max-height:200px;
  padding-bottom:20px;
}
.faq-a p{
  font-size:13px;
  color:var(--text-muted);
  line-height:1.8;
  padding-right:40px;
}

@media(max-width:900px){
  .faq-inner{grid-template-columns:1fr;gap:40px 0}
  .faq-left{position:static;display:flex;flex-direction:column;align-items:flex-start}
  .faq-person{width:100%;height:220px}
  .faq-left h2{font-size:40px}
  .faq-root{padding:48px 24px 64px}
}
@media(max-width:480px){
  .faq-left h2{font-size:32px}
  .faq-root{padding:40px 16px 56px}
  .faq-a p{padding-right:0}
}





.ride-root-main {
    width:100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 72px 40px 88px;
    position: relative;

}
  .ride-section-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    letter-spacing: 2px;
    color: var(--white);
    text-align: center;
    margin: 0 0 0.3rem;
  }

  .ride-section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 2.2rem;
    letter-spacing: 0.3px;
  }

  .ride-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .ride-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
  }

  .ride-card:hover {
    border-color: var(--border-green);
    transform: translateY(-6px);
  }

  .ride-card.card-first {
    animation: cardEntrance 0.7s cubic-bezier(0.22,1,0.36,1) both;
  }
  .ride-card.card-second {
    animation: cardEntrance 0.7s 0.18s cubic-bezier(0.22,1,0.36,1) both;
  }

  @keyframes cardEntrance {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
  }

  .ride-img-wrap {
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    overflow: hidden;
    position: relative;
  }

  .ride-card.card-first .ride-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, var(--green-dim) 0%, transparent 70%);
    animation: pulseGlow 2.8s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes pulseGlow {
    0%,100% { opacity: 0.5; }
    50%      { opacity: 1; }
  }

  .ride-img-wrap img {
    max-height: 148px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.45s ease;
  }
  .ride-card:hover .ride-img-wrap img {
    transform: scale(1.07);
  }

  .ride-badge {
    position: absolute;
    top: 10px;
    left: 12px;
    background: var(--green);
    color: #1a3a00;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
  }

  .ride-card.card-first .ride-badge {
    animation: badgePop 0.5s 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  @keyframes badgePop {
    from { opacity:0; transform: scale(0.6); }
    to   { opacity:1; transform: scale(1); }
  }

  .ride-body {
    padding: 1rem 1.1rem 1.1rem;
  }

  .ride-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.45rem;
  }

  .ride-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--white);
    letter-spacing: 1px;
  }

  .ride-likes {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.82rem;
  }

  .ride-likes i {
    color: #e05c7a;
    font-size: 15px;
  }

  .ride-card.card-first .ride-likes i {
    animation: heartbeat 1.4s 1s ease-in-out infinite;
  }
  @keyframes heartbeat {
    0%,100% { transform: scale(1); }
    14%      { transform: scale(1.25); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.15); }
    56%      { transform: scale(1); }
  }

  .ride-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .ride-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.78rem;
  }

  .ride-spec i {
    font-size: 14px;
    color: var(--text-mid);
  }

  .ride-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1rem;
  }

  .ride-btn {
    width: 100%;
    background: var(--green);
    color: #1a3a00;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 0.65rem 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.2s, transform 0.15s;
  }

  .ride-btn:hover {
    background: #a0dc4e;
    transform: scale(1.02);
  }
  .ride-btn:active {
    transform: scale(0.97);
  }

  .ride-card.card-first .ride-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    animation: shimmer 2.2s 1.2s ease-in-out infinite;
  }
  @keyframes shimmer {
    0%   { left: -100%; }
    60%,100% { left: 160%; }
  }

  .ride-card.card-first .ride-name {
    animation: textReveal 0.5s 0.5s ease both;
  }
  @keyframes textReveal {
    from { opacity:0; transform: translateX(-12px); }
    to   { opacity:1; transform: translateX(0); }
  }

  .ev-tag {
    display: inline-block;
    background: var(--green-dim);
    border: 1px solid var(--border-green);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
  }
  @media(max-width:480px){
.ride-root-main {
  padding: 48px 14px 64px;
}
  }




.blog-root-main {
    width: 100%;
    max-width: 1340px;
    padding: 72px 40px 88px;
    margin: 0 auto;

}
   .blog-header {
    text-align: center;
    margin-bottom: 2.4rem;
  }

  .blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 0.85rem;
    animation: fadeDown 0.5s ease both;
  }

  .blog-eyebrow i { font-size: 13px; }

  .blog-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: var(--white);
    margin: 0 0 0.4rem;
    animation: fadeDown 0.55s 0.08s ease both;
  }

  .blog-title span { color: var(--green); }

  .blog-subtitle {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin: 0;
    animation: fadeDown 0.55s 0.16s ease both;
  }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.3rem;
    margin-bottom: 2rem;
  }

  .blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(30px);
  }

  .blog-card.blog-visible {
    animation: cardRise 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
  }

  .blog-card:nth-child(1).blog-visible { animation-delay: 0.1s; }
  .blog-card:nth-child(2).blog-visible { animation-delay: 0.22s; }
  .blog-card:nth-child(3).blog-visible { animation-delay: 0.34s; }

  @keyframes cardRise {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .blog-card:hover {
    border-color: var(--green-border);
    transform: translateY(-5px);
  }

  .blog-thumb {
    width: 100%;
    height: 148px;
    object-fit: cover;
    background: var(--surface-2);
    display: block;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-thumb { transform: scale(1.05); }

  .blog-thumb-wrap {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }

  .blog-cat {
    position: absolute;
    top: 10px;
    left: 11px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
  }

  .blog-cat.cat-green  { background: var(--green); color: #1a3a00; }
  .blog-cat.cat-blue   { background: #2a7fff; color: #e6f1fb; }
  .blog-cat.cat-orange { background: #f07a22; color: #3a1600; }

  .blog-body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
  }

  .blog-date {
    color: var(--text-muted);
    font-size: 0.73rem;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .blog-date i { font-size: 13px; }

  .blog-read {
    color: var(--green);
    font-size: 0.73rem;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .blog-read i { font-size: 13px; }

  .blog-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.8px;
    color: var(--white);
    margin: 0 0 0.5rem;
    line-height: 1.25;
  }

  .blog-excerpt {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
  }

  .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: auto;
  }

  .blog-author {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .blog-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .blog-avatar.av-green  { background: var(--green-dim); color: var(--green); border: 1px solid var(--green-border); }
  .blog-avatar.av-blue   { background: rgba(42,127,255,0.15); color: #5fa3ff; border: 1px solid rgba(42,127,255,0.3); }
  .blog-avatar.av-orange { background: rgba(240,122,34,0.15); color: #f5a36a; border: 1px solid rgba(240,122,34,0.3); }

  .blog-author-name {
    font-size: 0.75rem;
    color: var(--text-mid);
    font-weight: 500;
  }

  .blog-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 14px;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    flex-shrink: 0;
  }

  .blog-card:hover .blog-arrow {
    background: var(--green);
    color: #1a3a00;
    transform: rotate(-45deg);
  }

  .blog-cta-wrap {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.5s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .blog-btn-primary {
    background: var(--green);
    color: #1a3a00;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.87rem;
    letter-spacing: 0.4px;
    padding: 0.65rem 1.6rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    overflow: hidden;
  }

  .blog-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shimmer 2.4s 1s ease-in-out infinite;
  }

  @keyframes shimmer {
    0%       { left: -100%; }
    60%,100% { left: 160%; }
  }

  .blog-btn-primary:hover { background: #a0dc4e; transform: scale(1.03); }
  .blog-btn-primary:active { transform: scale(0.97); }

  .blog-btn-outline {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.87rem;
    letter-spacing: 0.4px;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
  }

  .blog-btn-outline:hover { border-color: var(--green-border); color: var(--green); transform: scale(1.02); }
  .blog-btn-outline:active { transform: scale(0.97); }

  .serv-root-main-cntr {
	  background:#f5f5f5;
}

  .serv-root-main  {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 72px 40px 88px;
    position: relative;
  }
   .svc-bg-line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(142,202,65,0.12), transparent);
    pointer-events: none;
  }

  .svc-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }

  .svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 0.9rem;
    opacity: 0;
    animation: hdrFade 0.5s 0.1s ease forwards;
  }

  .svc-title {
    font-family: var(--font-display);
    font-size: 2.9rem;
    letter-spacing: 2px;
    color: var(--white);
    margin: 0 0 0.45rem;
    opacity: 0;
    animation: hdrFade 0.5s 0.22s ease forwards;
  }

  .svc-title span { color: var(--green); }

  .svc-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.65;
    opacity: 0;
    animation: hdrFade 0.5s 0.34s ease forwards;
  }

  @keyframes hdrFade {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    position: relative;
  }

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

  .svc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.4rem 1.3rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: border-color 0.35s, transform 0.35s;
  }

  .svc-card.svc-in { animation: cardIn 0.65s cubic-bezier(0.22,1,0.36,1) forwards; }
  .svc-card:nth-child(1).svc-in { animation-delay: 0.05s; }
  .svc-card:nth-child(2).svc-in { animation-delay: 0.17s; }
  .svc-card:nth-child(3).svc-in { animation-delay: 0.29s; }
  .svc-card:nth-child(4).svc-in { animation-delay: 0.41s; }

  @keyframes cardIn {
    from { opacity: 0; transform: translateY(36px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .svc-card:hover {
    border-color: var(--green-border);
    transform: translateY(-5px) scale(1.01);
  }

  .svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: var(--green-dim);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
  }

  .svc-card:hover::before { opacity: 1; }

  .svc-card-corner {
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    overflow: hidden;
    border-radius: 0 16px 0 0;
  }

  .svc-card-corner::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    transition: transform 0.4s ease, opacity 0.4s;
    opacity: 0;
  }

  .svc-card:hover .svc-card-corner::after {
    opacity: 1;
    transform: scale(1.4);
  }

  .svc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
  }

  .svc-card:hover .svc-icon-wrap {
    background: var(--green-dim);
    border-color: var(--green-border);
  }

  .svc-icon-wrap i {
    font-size: 24px;
    color: var(--text-mid);
    transition: color 0.3s, transform 0.4s;
  }

  .svc-card:hover .svc-icon-wrap i {
    color: var(--green);
    transform: scale(1.15) rotate(-8deg);
  }

  .svc-icon-ping {
    position: absolute;
    top: -4px; right: -4px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .svc-card:hover .svc-icon-ping {
    opacity: 1;
    animation: ping 1.2s ease-in-out infinite;
  }

  @keyframes ping {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.7); opacity: 0.3; }
  }

  .svc-card-num {
    position: absolute;
    top: 1.1rem; right: 1.2rem;
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.04);
    transition: color 0.35s;
    pointer-events: none;
    line-height: 1;
  }

  .svc-card:hover .svc-card-num { color: rgba(142,202,65,0.08); }

  .svc-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.8px;
    color: var(--white);
    margin: 0 0 0.45rem;
    transition: color 0.3s;
  }

  .svc-card:hover .svc-card-title { color: var(--green); }

  .svc-card-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.65;
    margin: 0 0 1.1rem;
    transition: color 0.3s;
  }

  .svc-card:hover .svc-card-desc { color: var(--text-mid); }

  .svc-tag-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .svc-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }

  .svc-card:hover .svc-tag {
    background: var(--green-dim);
    border-color: var(--green-border);
    color: var(--green);
  }

  .svc-book-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 0;
  }

  .svc-book-link i { font-size: 14px; transition: transform 0.3s; }
  .svc-card:hover .svc-book-link { color: var(--green); }
  .svc-card:hover .svc-book-link i { transform: translate(3px, -3px); }

  .svc-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0.85rem 0;
  }

  .svc-live-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.2rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    opacity: 0;
    animation: hdrFade 0.5s 0.7s ease forwards;
  }

  .svc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .svc-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--green);
    line-height: 1;
  }

  .svc-stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .svc-stat-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
  }

  .svc-live-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.4px;
  }

  .svc-live-dot::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    display: block;
    animation: livePulse 1.4s ease-in-out infinite;
  }

  @keyframes livePulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(1.5); }
  }

         @media(max-width:600px) {
.serv-root-main {
  padding: 48px 14px 64px;
}
.blog-root-main {
  padding: 48px 14px 64px;
}

         }



/* ==============================
   BREADCRUMB SECTION
============================== */
.custom_breadcrumb_section {
  width: 100%;
  background: var(--brdcrumb);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background */
.custom_breadcrumb_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--green-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--green-dim) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.25;
  pointer-events: none;
}

/* Green accent line on top */
.custom_breadcrumb_section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), rgba(142,202,65,0.5), var(--green));
}

/* ==============================
   INNER WRAPPER
============================== */
.custom_breadcrumb_inner {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
  padding: 68px 40px;
	margin-top:60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==============================
   PAGE TITLE
============================== */
.custom_breadcrumb_title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400; /* Bebas Neue is already bold by design */
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.custom_breadcrumb_title span {
  color: var(--green);
}

/* ==============================
   BREADCRUMB NAV
============================== */
.custom_breadcrumb_nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

/* Each item */
.custom_breadcrumb_item {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Link styles */
.custom_breadcrumb_link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--cb-radius);
  transition: color var(--cb-transition), background var(--cb-transition);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom_breadcrumb_link:hover {
  color: var(--green);
  background: var(--green-dim);
}

/* Active / current page */
.custom_breadcrumb_item.custom_breadcrumb_active .custom_breadcrumb_link {
  color: var(--green);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--cb-radius);
}

/* Separator */
.custom_breadcrumb_separator {
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: var(--green-glow);
}

.custom_breadcrumb_separator svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
  opacity: 0.5;
}

/* Home icon */
.custom_breadcrumb_home_icon {
  display: flex;
  align-items: center;
}

.custom_breadcrumb_home_icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* ==============================
   DECORATIVE PILL TAG
============================== */
.custom_breadcrumb_tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.9px;
  text-transform: uppercase;
  width: fit-content;
}

.custom_breadcrumb_tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: custom_breadcrumb_pulse 1.8s ease infinite;
}

@keyframes custom_breadcrumb_pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.65); }
}

/* ==============================
   RESPONSIVE — Tablet
============================== */
@media (max-width: 768px) {
  .custom_breadcrumb_inner {
    padding: 36px 24px;
    gap: 12px;
  }
  .custom_breadcrumb_title {
    font-size: 38px;
  }
  .custom_breadcrumb_link {
    font-size: 12px;
  }
}

/* ==============================
   RESPONSIVE — Mobile
============================== */
@media (max-width: 480px) {
  .custom_breadcrumb_inner {
    padding: 28px 16px;
    gap: 10px;
  }
  .custom_breadcrumb_title {
    font-size: 30px;
  }
  .custom_breadcrumb_link {
    font-size: 11px;
    padding: 3px 6px;
  }
  .custom_breadcrumb_tag {
    font-size: 10px;
    padding: 3px 10px;
  }
}

/* ==============================
   DEMO PREVIEW LABELS
============================== */
.demo_wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo_label {
  background: var(--surface);
  color: var(--text-muted);
  font-family: monospace;
  font-size: 11px;
  padding: 6px 14px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.5px;
}


        /* ── KEYFRAMES ────────────────────────────────────────────────────────── */
        @keyframes custom_about_fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes custom_about_fadeLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes custom_about_fadeRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes custom_about_scaleIn {
            from {
                opacity: 0;
                transform: scale(0.88);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes custom_about_pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.06);
                opacity: 0.85;
            }
        }

        @keyframes custom_about_rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes custom_about_float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes custom_about_countUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes custom_about_lineGrow {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes custom_about_cardHover {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-4px);
            }
        }

        @keyframes custom_about_spinSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes custom_about_bgShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes custom_about_ripple {
            0% {
                transform: scale(0.8);
                opacity: 0.6;
            }

            100% {
                transform: scale(2.2);
                opacity: 0;
            }
        }

        @keyframes custom_about_dash {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes custom_about_marqueeLTR {
            from {
                transform: translateX(-50%);
            }

            to {
                transform: translateX(0%);
            }
        }

        /* ── BREADCRUMB ───────────────────────────────────────────────────────── */
        .custom_about_breadcrumb {
            background: var(--brdcrumb);
            padding: 14px 100px;
            font-size: 13px;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
            animation: custom_about_fadeUp 0.5s ease both;
        }

        .custom_about_breadcrumb a {
            color: var(--green);
            text-decoration: none;
        }

        .custom_about_breadcrumb span {
            margin: 0 6px;
        }


        /* ════════════════════════════════════════════════════════════════════════
   SECTION 1 — HERO / WHO WE ARE
   ════════════════════════════════════════════════════════════════════════ */
        .custom_about_hero {
            position: relative;
            overflow: hidden;
            padding: 100px 100px 80px;
            background: var(--bg);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* dot-grid texture */
        .custom_about_hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
            opacity: 0.6;
        }

        /* animated green glow blob */
        .custom_about_hero_glow {
            position: absolute;
            width: 480px;
            height: 480px;
            background: var(--green-dim);
            border-radius: 50%;
            top: -120px;
            right: -80px;
            filter: blur(80px);
            animation: custom_about_pulse 6s ease-in-out infinite;
            pointer-events: none;
        }

        .custom_about_hero_left {
            position: relative;
            z-index: 2;
            animation: custom_about_fadeLeft 0.8s ease 0.2s both;
        }

        .custom_about_hero_label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green-dim);
            border: 1px solid var(--border-green);
            color: var(--green);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 40px;
            margin-bottom: 24px;
        }

        .custom_about_hero_label_dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green);
            animation: custom_about_pulse 2s ease-in-out infinite;
        }

        .custom_about_hero_title {
            font-family: var(--font-display);
            font-size: clamp(54px, 6vw, 84px);
            line-height: 0.95;
            color: var(--text-dark);
            margin-bottom: 28px;
            letter-spacing: 1px;
        }

        .custom_about_hero_title em {
            color: var(--green);
            font-style: normal;
            position: relative;
        }

        .custom_about_hero_desc {
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-mid);
            max-width: 480px;
            margin-bottom: 36px;
        }

        /* stat chips row */
        .custom_about_stat_row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .custom_about_stat_chip {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 14px 20px;
            text-align: center;
            animation: custom_about_fadeUp 0.6s ease both;
        }

        .custom_about_stat_chip:nth-child(1) {
            animation-delay: 0.5s;
        }

        .custom_about_stat_chip:nth-child(2) {
            animation-delay: 0.65s;
        }

        .custom_about_stat_chip:nth-child(3) {
            animation-delay: 0.8s;
        }

        .custom_about_stat_num {
            font-family: var(--font-display);
            font-size: 36px;
            color: var(--green);
            line-height: 1;
            letter-spacing: 1px;
        }

        .custom_about_stat_lbl {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 4px;
        }

        /* RIGHT visual */
        .custom_about_hero_right {
            position: relative;
            z-index: 2;
            animation: custom_about_fadeRight 0.8s ease 0.3s both;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .custom_about_visual_wrap {
            position: relative;
            width: 420px;
            height: 420px;
        }

        /* outer orbit ring */
        .custom_about_orbit {
            position: absolute;
            inset: 0;
            border: 1.5px dashed var(--border-green);
            border-radius: 50%;
            animation: custom_about_spinSlow 18s linear infinite;
        }

        .custom_about_orbit::before,
        .custom_about_orbit::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            background: var(--green);
            border-radius: 50%;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
        }

        .custom_about_orbit::after {
            top: auto;
            bottom: -7px;
            background: var(--surface-2);
            border: 2px solid var(--green);
        }

        /* inner card */
        .custom_about_visual_card {
            position: absolute;
            inset: 30px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            animation: custom_about_float 5s ease-in-out infinite;
            overflow: hidden;
        }

        .custom_about_visual_card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--green-dim) 0%, transparent 60%);
            border-radius: 28px;
            pointer-events: none;
        }

        .custom_about_visual_icon {
            width: 180px;
            height: 180px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: custom_about_pulse 3.5s ease-in-out infinite;
        }

        .custom_about_visual_icon img {
            width: 140px;
            height: 140px;
        }

        .custom_about_visual_tagline {
            font-family: var(--font-display);
            font-size: 22px;
            letter-spacing: 2px;
            color: var(--text-dark);
            text-align: center;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .custom_about_visual_sub {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            position: relative;
            z-index: 1;
        }

        /* floating badges on visual */
        .custom_about_badge {
            position: absolute;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 8px 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            z-index: 5;
        }

        .custom_about_badge_dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            animation: custom_about_pulse 2s ease-in-out infinite;
        }

        .custom_about_badge--tl {
            top: 10px;
            left: -10px;
            animation: custom_about_float 4.5s ease-in-out infinite 0.5s;
        }

        .custom_about_badge--br {
            bottom: 20px;
            right: -10px;
            animation: custom_about_float 4.5s ease-in-out infinite 1.5s;
        }


        /* ════════════════════════════════════════════════════════════════════════
   SECTION 2 — OUR MISSION / VALUES CARDS
   ════════════════════════════════════════════════════════════════════════ */
        .custom_about_mission {
            background: var(--surface);
            padding: 100px 100px;
            position: relative;
            overflow: hidden;
        }

        /* large bg text watermark */
        .custom_about_mission_watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: var(--font-display);
            font-size: 260px;
            color: var(--border);
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
            letter-spacing: 10px;
            opacity: 0.7;
        }

        .custom_about_mission_head {
            text-align: center;
            position: relative;
            z-index: 2;
            margin-bottom: 64px;
            animation: custom_about_fadeUp 0.7s ease 0.1s both;
        }

        .custom_about_mission_label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 16px;
        }

        .custom_about_mission_label::before,
        .custom_about_mission_label::after {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--green);
        }

        .custom_about_mission_title {
            font-family: var(--font-display);
            font-size: clamp(42px, 5vw, 68px);
            color: var(--text-dark);
            letter-spacing: 1px;
            line-height: 1;
            margin-bottom: 16px;
        }

        .custom_about_mission_title span {
            color: var(--green);
        }

        .custom_about_mission_sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 540px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* cards grid */
        .custom_about_values_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .custom_about_value_card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            cursor: default;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .custom_about_value_card.custom_about_visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .custom_about_value_card:hover {
            border-color: var(--border-green);
            transform: translateY(-6px) !important;
            box-shadow: 0 12px 40px var(--green-glow);
        }

        .custom_about_value_card:hover .custom_about_value_shine {
            transform: translateX(200%);
        }

        /* shine sweep on hover */
        .custom_about_value_shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(140, 198, 63, 0.08), transparent);
            transform: translateX(-100%);
            transition: transform 0.7s ease;
            pointer-events: none;
        }

        .custom_about_value_num {
            font-family: var(--font-display);
            font-size: 56px;
            color: var(--green-dim);
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: 2px;
            transition: color 0.3s;
        }

        .custom_about_value_card:hover .custom_about_value_num {
            color: var(--green);
        }

        .custom_about_value_icon {
            width: 52px;
            height: 52px;
            background: var(--green-dim);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: background 0.3s, transform 0.3s;
        }

        .custom_about_value_card:hover .custom_about_value_icon {
            background: var(--green);
            transform: rotate(6deg) scale(1.08);
        }

        .custom_about_value_icon svg {
            width: 26px;
            height: 26px;
            fill: none;
            stroke: var(--green);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s;
        }

        .custom_about_value_card:hover .custom_about_value_icon svg {
            stroke: #fff;
        }

        .custom_about_value_heading {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .custom_about_value_text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* bottom accent line */
        .custom_about_value_card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: var(--green);
            width: 0;
            transition: width 0.4s ease;
            border-radius: 0 0 0 20px;
        }

        .custom_about_value_card:hover::after {
            width: 100%;
        }


        /* ════════════════════════════════════════════════════════════════════════
   SECTION 3 — TEAM / JOURNEY TIMELINE
   ════════════════════════════════════════════════════════════════════════ */
        .custom_about_journey {
            background: var(--bg);
            padding: 100px 100px;
            position: relative;
            overflow: hidden;
        }

        .custom_about_journey::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
            background-size: 28px 28px;
            opacity: 0.4;
            pointer-events: none;
        }

        /* header */
        .custom_about_journey_head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: end;
            margin-bottom: 72px;
            position: relative;
            z-index: 2;
        }

        .custom_about_journey_label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 14px;
        }

        .custom_about_journey_label::before,
        .custom_about_journey_label::after {
            content: '';
            display: block;
            width: 24px;
            height: 1px;
            background: var(--green);
        }

        .custom_about_journey_title {
            font-family: var(--font-display);
            font-size: clamp(38px, 4.5vw, 62px);
            color: var(--text-dark);
            line-height: 1;
            letter-spacing: 1px;
        }

        .custom_about_journey_title span {
            color: var(--green);
        }

        .custom_about_journey_right_txt {
            font-size: 15px;
            color: var(--text-mid);
            line-height: 1.75;
            align-self: end;
            animation: custom_about_fadeRight 0.7s ease 0.4s both;
        }

        /* timeline */
        .custom_about_timeline {
            position: relative;
            z-index: 2;
            padding-left: 0;
        }

        /* vertical center line */
        .custom_about_timeline_line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--surface-2);
            transform: translateX(-50%);
        }

        .custom_about_timeline_line_fill {
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            background: var(--green);
            transform: translateX(-50%);
            height: 0;
            transition: height 1.5s ease;
        }

        .custom_about_timeline_line_fill.custom_about_visible {
            height: 100%;
        }

        .custom_about_tl_item {
            display: grid;
            grid-template-columns: 1fr 60px 1fr;
            gap: 0;
            margin-bottom: 60px;
            align-items: center;
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .custom_about_tl_item.custom_about_tl_left {
            transform: translateX(-40px);
        }

        .custom_about_tl_item.custom_about_tl_right {
            transform: translateX(40px);
        }

        .custom_about_tl_item.custom_about_visible {
            opacity: 1;
            transform: translateX(0) !important;
        }

        /* dot in center */
        .custom_about_tl_dot_wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .custom_about_tl_dot {
            width: 20px;
            height: 20px;
            background: var(--green);
            border-radius: 50%;
            border: 3px solid var(--bg);
            outline: 2px solid var(--green);
            position: relative;
        }

        .custom_about_tl_dot::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px solid var(--green-glow);
            animation: custom_about_ripple 2.5s ease-out infinite;
        }

        /* card */
        .custom_about_tl_card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 28px 24px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .custom_about_tl_card:hover {
            border-color: var(--border-green);
            box-shadow: 0 8px 32px var(--green-glow);
        }

        /* arrow pointer toward center line */
        .custom_about_tl_item:nth-child(odd) .custom_about_tl_content {
            text-align: right;
        }

        .custom_about_tl_item:nth-child(odd) .custom_about_tl_card {
            margin-right: 8px;
        }

        .custom_about_tl_item:nth-child(even) .custom_about_tl_content {
            text-align: left;
        }

        .custom_about_tl_item:nth-child(even) .custom_about_tl_card {
            margin-left: 8px;
        }

        .custom_about_tl_item:nth-child(odd) .custom_about_tl_empty,
        .custom_about_tl_item:nth-child(even) .custom_about_tl_empty {
            /* empty column */
        }

        .custom_about_tl_year {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 13px;
            letter-spacing: 2px;
            color: var(--green);
            background: var(--green-dim);
            border-radius: 20px;
            padding: 3px 12px;
            margin-bottom: 10px;
        }

        .custom_about_tl_heading {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .custom_about_tl_text {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* card highlight accent */
        .custom_about_tl_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            border-radius: 2px 2px 0 0;
        }

        .custom_about_tl_card:hover::before {
            transform: scaleX(1);
        }


        /* ════════════════════════════════════════════════════════════════════════
   MARQUEE STRIP
   ════════════════════════════════════════════════════════════════════════ */
        .custom_about_marquee {
            background: var(--green);
            overflow: hidden;
            padding: 14px 0;
            position: relative;
            z-index: 10;
        }

        .custom_about_marquee_track {
            display: flex;
            width: max-content;
            animation: custom_about_marqueeLTR 18s linear infinite;
        }

        .custom_about_marquee_item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 32px;
            font-family: var(--font-display);
            font-size: 17px;
            letter-spacing: 2px;
            color: #fff;
            white-space: nowrap;
        }

        .custom_about_marquee_sep {
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
        }

        /* ── RESPONSIVE ─────────────────────────────────────────────────────── */
        @media (max-width: 1024px) {

            .custom_about_hero,
            .custom_about_mission,
            .custom_about_journey {
                padding-left: 40px;
                padding-right: 40px;
            }

            .custom_about_breadcrumb {
                padding-left: 40px;
                padding-right: 40px;
            }

            .custom_about_values_grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .custom_about_hero {
                grid-template-columns: 1fr;
                padding: 60px 24px;
                text-align: center;
            }

            .custom_about_hero_right {
                display: none;
            }

            .custom_about_stat_row {
                justify-content: center;
            }

            .custom_about_mission {
                padding: 60px 24px;
            }

            .custom_about_values_grid {
                grid-template-columns: 1fr;
            }

            .custom_about_journey {
                padding: 60px 24px;
            }

            .custom_about_journey_head {
                grid-template-columns: 1fr;
            }

            .custom_about_tl_item {
                grid-template-columns: 1fr;
            }

            .custom_about_tl_dot_wrap,
            .custom_about_tl_empty {
                display: none;
            }

            .custom_about_tl_item:nth-child(odd) .custom_about_tl_card,
            .custom_about_tl_item:nth-child(even) .custom_about_tl_card {
                margin: 0 0 0 0;
            }

            .custom_about_timeline_line,
            .custom_about_timeline_line_fill {
                display: none;
            }

            .custom_about_breadcrumb {
                padding: 12px 24px;
            }
        }


/* ════════════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════════════ */
.custom_contact_marquee {
    background: var(--text-dark);
    overflow: hidden;
    padding: 13px 0;
}
.custom_contact_marquee_track {
    display: flex;
    width: max-content;
    animation: custom_contact_marqueeLTR 20s linear infinite;
}
.custom_contact_marquee_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
}
.custom_contact_marquee_item strong { color: var(--green); }
.custom_contact_marquee_sep {
    width: 5px; height: 5px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.6;
}


/* ════════════════════════════════════════════════════════════════════════
   SECTION 2 — MAIN CONTACT FORM + SIDEBAR
   ════════════════════════════════════════════════════════════════════════ */
.custom_contact_main {
    padding: 90px 100px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    position: relative;
}
.custom_contact_main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
}

/* ── FORM PANEL ──────────────────────────────────────────────────────── */
.custom_contact_form_panel {
    position: relative;
    z-index: 2;
    animation: custom_contact_fadeLeft 0.8s ease 0.2s both;
}

.custom_contact_form_header {
    margin-bottom: 40px;
}
.custom_contact_form_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}
.custom_contact_form_label::before,
.custom_contact_form_label::after {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--green);
}
.custom_contact_form_title {
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 56px);
    color: var(--text-dark);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.custom_contact_form_title span { color: var(--green); }
.custom_contact_form_sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 460px;
}

/* form card */
.custom_contact_form_card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}
.custom_contact_form_card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    border-radius: 3px 3px 0 0;
}

/* row grid */
.custom_contact_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.custom_contact_form_row.custom_contact_full { grid-template-columns: 1fr; }

/* field group */
.custom_contact_field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
}
.custom_contact_field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.custom_contact_field label .custom_contact_required {
    color: var(--green);
    margin-left: 2px;
}

/* inputs, textarea, select */
.custom_contact_field input,
.custom_contact_field textarea,
.custom_contact_field select {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.2s;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
}
.custom_contact_field input::placeholder,
.custom_contact_field textarea::placeholder {
    color: var(--text-muted);
}
.custom_contact_field input:focus,
.custom_contact_field textarea:focus,
.custom_contact_field select:focus {
    border-color: var(--border-green);
    box-shadow: 0 0 0 4px var(--green-dim);
    background: var(--surface);
}
.custom_contact_field input:hover,
.custom_contact_field textarea:hover,
.custom_contact_field select:hover {
    border-color: rgba(140,198,63,0.5);
}

/* select arrow */
.custom_contact_select_wrap {
    position: relative;
}
.custom_contact_select_wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text-muted);
    pointer-events: none;
}
.custom_contact_select_wrap select { width: 100%; cursor: pointer; }

/* character counter */
.custom_contact_char_count {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-top: -4px;
}

/* input with icon */
.custom_contact_input_icon_wrap {
    position: relative;
}
.custom_contact_input_icon_wrap input {
    padding-left: 42px;
    width: 100%;
}
.custom_contact_input_icon_wrap svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    transition: stroke 0.25s;
}
.custom_contact_input_icon_wrap:focus-within svg { stroke: var(--green); }

/* subject type pills */
.custom_contact_subject_pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.custom_contact_subject_pill {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 7px 16px;
    cursor: pointer;
    transition: all 0.22s ease;
    user-select: none;
    letter-spacing: 0.03em;
}
.custom_contact_subject_pill:hover {
    border-color: var(--border-green);
    color: var(--green);
}
.custom_contact_subject_pill.custom_contact_pill_active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

/* submit button */
.custom_contact_submit_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--green);
    color: #fff;
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.custom_contact_submit_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    background-size: 400px 100%;
    transform: translateX(-100%);
    transition: transform 0s;
}
.custom_contact_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px var(--green-glow);
}
.custom_contact_submit_btn:hover::before {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}
.custom_contact_submit_btn:active { transform: scale(0.98); }
.custom_contact_submit_btn svg {
    width: 22px; height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s;
}
.custom_contact_submit_btn:hover svg { transform: translateX(4px); }

/* success state */
.custom_contact_success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    animation: custom_contact_successBounce 0.5s ease both;
}
.custom_contact_success_circle {
    width: 80px; height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.custom_contact_success_circle svg {
    width: 38px; height: 38px;
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: custom_contact_checkDraw 0.5s ease 0.3s both;
}
.custom_contact_success h3 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.custom_contact_success p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}
.custom_contact_success_back {
    margin-top: 20px;
    font-size: 13px;
    color: var(--green);
    cursor: pointer;
    font-weight: 600;
    background: none;
    border: none;
    font-family: var(--font-body);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ── SIDEBAR ─────────────────────────────────────────────────────────── */
.custom_contact_sidebar {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: custom_contact_fadeRight 0.8s ease 0.35s both;
}

/* quick contact card */
.custom_contact_quick_card {
    background: var(--text-dark);
    border-radius: 22px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}
.custom_contact_quick_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
}
.custom_contact_quick_card_glow {
    position: absolute;
    width: 260px; height: 260px;
    background: var(--green-dim);
    border-radius: 50%;
    bottom: -80px; right: -60px;
    filter: blur(60px);
    animation: custom_contact_pulse 6s ease-in-out infinite;
}
.custom_contact_quick_title {
    font-family: var(--font-display);
    font-size: 28px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}
.custom_contact_quick_sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}
.custom_contact_quick_item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: padding-left 0.25s ease;
}
.custom_contact_quick_item:last-child { border-bottom: none; padding-bottom: 0; }
.custom_contact_quick_item:hover { padding-left: 6px; }
.custom_contact_quick_item_icon {
    width: 40px; height: 40px;
    background: rgba(140,198,63,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}
.custom_contact_quick_item:hover .custom_contact_quick_item_icon { background: var(--green); }
.custom_contact_quick_item_icon svg {
    width: 20px; height: 20px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
}
.custom_contact_quick_item:hover .custom_contact_quick_item_icon svg { stroke: #fff; }
.custom_contact_quick_item_label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.custom_contact_quick_item_val {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.custom_contact_quick_arrow {
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.25s;
}
.custom_contact_quick_item:hover .custom_contact_quick_arrow { opacity: 1; }
.custom_contact_quick_arrow svg {
    width: 18px; height: 18px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* hours card */
.custom_contact_hours_card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
}
.custom_contact_hours_card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    border-radius: 3px 3px 0 0;
}
.custom_contact_hours_title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.custom_contact_hours_title_dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: custom_contact_pulse 2s ease-in-out infinite;
}
.custom_contact_hours_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.custom_contact_hours_row:last-child { border-bottom: none; padding-bottom: 0; }
.custom_contact_hours_day { color: var(--text-mid); }
.custom_contact_hours_time { font-weight: 600; color: var(--text-dark); }
.custom_contact_hours_badge {
    font-size: 10px;
    font-weight: 700;
    background: var(--green-dim);
    color: var(--green);
    border-radius: 20px;
    padding: 2px 8px;
    letter-spacing: 0.05em;
}

/* social card */
.custom_contact_social_card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 26px;
}
.custom_contact_social_title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.custom_contact_social_row {
    display: flex;
    gap: 10px;
}
.custom_contact_social_btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 10px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    font-family: var(--font-body);
}
.custom_contact_social_btn svg {
    width: 18px; height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.custom_contact_social_btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--green-glow);
}


/* ════════════════════════════════════════════════════════════════════════
   SECTION 3 — MAP + OFFICES
   ════════════════════════════════════════════════════════════════════════ */
.custom_contact_map_section {
    background: var(--surface);
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
}
.custom_contact_map_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.5;
    pointer-events: none;
}

/* header */
.custom_contact_map_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
}
.custom_contact_map_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}
.custom_contact_map_label::before, .custom_contact_map_label::after {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--green);
}
.custom_contact_map_title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1;
}
.custom_contact_map_title span { color: var(--green); }
.custom_contact_map_right_txt {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 320px;
    text-align: right;
    line-height: 1.7;
}


/* offices grid */
.custom_contact_offices_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}
.custom_contact_office_card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 22px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(24px);
}
.custom_contact_office_card.custom_contact_visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.custom_contact_office_card:hover {
    border-color: var(--border-green);
    box-shadow: 0 8px 30px var(--green-glow);
    transform: translateY(-5px) !important;
}

/* pin badge on card */
.custom_contact_office_pin {
    width: 40px; height: 40px;
    background: var(--green-dim);
    border-radius: 50% 50% 50% 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s;
}
.custom_contact_office_card:hover .custom_contact_office_pin { background: var(--green); }
.custom_contact_office_pin svg {
    width: 20px; height: 20px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}
.custom_contact_office_card:hover .custom_contact_office_pin svg { stroke: #fff; }
.custom_contact_office_city {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.custom_contact_office_type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--green-dim);
    color: var(--green);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 14px;
}
.custom_contact_office_addr {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}
.custom_contact_office_link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    margin-top: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: gap 0.2s;
}
.custom_contact_office_link:hover { gap: 9px; }
.custom_contact_office_link svg {
    width: 14px; height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* active office highlight */
.custom_contact_office_card.custom_contact_office_hq {
    border-color: var(--border-green);
    background: var(--surface);
}
.custom_contact_office_card.custom_contact_office_hq::before {
    content: 'HQ';
    position: absolute;
    top: 16px; right: 16px;
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.1em;
}
.custom_contact_office_card { position: relative; }


/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .custom_contact_hero,
    .custom_contact_main,
    .custom_contact_map_section { padding-left: 40px; padding-right: 40px; }
    .custom_contact_breadcrumb { padding-left: 40px; padding-right: 40px; }
    .custom_contact_main { grid-template-columns: 1fr; gap: 40px; }
    .custom_contact_sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .custom_contact_quick_card { grid-column: span 2; }
}
@media (max-width: 768px) {
    .custom_contact_hero { flex-direction: column; padding: 50px 24px 40px; }
    .custom_contact_hero_right { display: none; }
    .custom_contact_main { padding: 50px 24px; }
    .custom_contact_map_section { padding: 50px 24px; }
    .custom_contact_sidebar { grid-template-columns: 1fr; }
    .custom_contact_quick_card { grid-column: span 1; }
    .custom_contact_form_row { grid-template-columns: 1fr; }
    .custom_contact_offices_grid { grid-template-columns: 1fr; }
    .custom_contact_map_head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .custom_contact_map_right_txt { text-align: left; }
    .custom_contact_breadcrumb { padding: 12px 24px; }
}


        /* ── KEYFRAMES ───────────────────────────────────────────────────────── */
        @keyframes custom_terms_fadeUp {
            from {
                opacity: 0;
                transform: translateY(32px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes custom_terms_fadeLeft {
            from {
                opacity: 0;
                transform: translateX(-28px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes custom_terms_fadeRight {
            from {
                opacity: 0;
                transform: translateX(28px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes custom_terms_pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.75;
            }
        }

        @keyframes custom_terms_lineGrow {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes custom_terms_marqueeLTR {
            from {
                transform: translateX(-50%);
            }

            to {
                transform: translateX(0%);
            }
        }

        @keyframes custom_terms_progressFill {
            from {
                width: 0;
            }

            to {
                width: var(--target-width);
            }
        }

        @keyframes custom_terms_float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes custom_terms_spinSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes custom_terms_sectionSlideIn {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes custom_terms_highlight {
            0% {
                background-position: -100%;
            }

            100% {
                background-position: 200%;
            }
        }



        /* ════════════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════════════ */
        .custom_terms_marquee {
            background: var(--green);
            overflow: hidden;
            padding: 12px 0;
        }

        .custom_terms_marquee_track {
            display: flex;
            width: max-content;
            animation: custom_terms_marqueeLTR 22s linear infinite;
        }

        .custom_terms_marquee_item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 28px;
            font-family: var(--font-display);
            font-size: 15px;
            letter-spacing: 2px;
            color: #fff;
            white-space: nowrap;
            opacity: 0.9;
        }

        .custom_terms_marquee_sep {
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
        }

        /* ════════════════════════════════════════════════════════════════════════
   MAIN LAYOUT — SIDEBAR + CONTENT
   ════════════════════════════════════════════════════════════════════════ */
        .custom_terms_layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 0;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 100px 80px;
            align-items: start;
            position: relative;
        }

        /* ── STICKY SIDEBAR (TOC) ────────────────────────────────────────────── */
        .custom_terms_toc {
            position: sticky;
            top: 24px;
            padding: 28px 0 28px 0;
            padding-right: 32px;
            border-right: 1px solid var(--border);
            animation: custom_terms_fadeLeft 0.7s ease 0.3s both;
        }

        .custom_terms_toc_title {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }

        /* read progress ring on toc */
        .custom_terms_toc_progress {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .custom_terms_toc_ring {
            position: relative;
            width: 42px;
            height: 42px;
            flex-shrink: 0;
        }

        .custom_terms_toc_ring svg {
            width: 42px;
            height: 42px;
            transform: rotate(-90deg);
        }

        .custom_terms_toc_ring_track {
            fill: none;
            stroke: var(--surface-2);
            stroke-width: 3;
        }

        .custom_terms_toc_ring_fill {
            fill: none;
            stroke: var(--green);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-dasharray: 113;
            stroke-dashoffset: 113;
            transition: stroke-dashoffset 0.3s ease;
        }

        .custom_terms_toc_pct {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--green);
        }

        .custom_terms_toc_progress_txt {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .custom_terms_toc_progress_txt strong {
            display: block;
            font-size: 13px;
            color: var(--text-dark);
        }

        .custom_terms_toc_nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .custom_terms_toc_nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            border-radius: 10px;
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: none;
            transition: background 0.2s, color 0.2s, padding-left 0.2s;
            position: relative;
        }

        .custom_terms_toc_nav li a:hover {
            background: var(--surface);
            color: var(--text-dark);
            padding-left: 16px;
        }

        .custom_terms_toc_nav li a.custom_terms_toc_active {
            background: var(--green-dim);
            color: var(--green);
            font-weight: 600;
        }

        .custom_terms_toc_nav li a.custom_terms_toc_active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 3px;
            background: var(--green);
            border-radius: 2px;
        }

        .custom_terms_toc_num {
            font-size: 10px;
            font-weight: 700;
            color: var(--green);
            background: var(--green-dim);
            border-radius: 5px;
            padding: 1px 6px;
            flex-shrink: 0;
            min-width: 22px;
            text-align: center;
        }

        .custom_terms_toc_active .custom_terms_toc_num {
            background: var(--green);
            color: #fff;
        }

        .custom_terms_toc_print {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .custom_terms_toc_btn {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-mid);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 9px 14px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: var(--font-body);
            text-decoration: none;
        }

        .custom_terms_toc_btn svg {
            width: 15px;
            height: 15px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
        }

        .custom_terms_toc_btn:hover {
            background: var(--green-dim);
            border-color: var(--border-green);
            color: var(--green);
        }

        /* ── CONTENT AREA ────────────────────────────────────────────────────── */
        .custom_terms_content {
            padding: 40px 0 0 52px;
			    width: 100%;
    max-width: 1300px;
            animation: custom_terms_fadeRight 0.7s ease 0.3s both;
        }

        /* intro alert banner */
        .custom_terms_alert {
            background: var(--green-dim);
            border: 1px solid var(--border-green);
            border-radius: 14px;
            padding: 18px 22px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .custom_terms_alert_icon {
            width: 36px;
            height: 36px;
            background: var(--green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .custom_terms_alert_icon svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: #fff;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .custom_terms_alert_text {
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.7;
        }

        .custom_terms_alert_text strong {
            color: var(--text-dark);
        }

        /* section blocks */
        .custom_terms_section {
            margin-bottom: 52px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .custom_terms_section.custom_terms_visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* section anchor */
        .custom_terms_section_anchor {
            display: block;
            height: 80px;
            margin-top: -80px;
            visibility: hidden;
            pointer-events: none;
        }

        /* section header */
        .custom_terms_section_head {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .custom_terms_section_num {
            font-family: var(--font-display);
            font-size: 42px;
            color: var(--green-dim);
            line-height: 1;
            letter-spacing: 1px;
            flex-shrink: 0;
            min-width: 52px;
            transition: color 0.3s;
        }

        .custom_terms_section:hover .custom_terms_section_num {
            color: var(--green);
        }

        .custom_terms_section_icon {
            width: 44px;
            height: 44px;
            background: var(--green-dim);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 4px;
            transition: background 0.3s;
        }

        .custom_terms_section:hover .custom_terms_section_icon {
            background: var(--green);
        }

        .custom_terms_section_icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: var(--green);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s;
        }

        .custom_terms_section:hover .custom_terms_section_icon svg {
            stroke: #fff;
        }

        .custom_terms_section_title {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--text-dark);
            letter-spacing: 0.5px;
            margin-bottom: 3px;
            line-height: 1.1;
        }

        .custom_terms_section_subtitle {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* body text */
        .custom_terms_text {
            font-size: 14.5px;
            color: var(--text-mid);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .custom_terms_text:last-child {
            margin-bottom: 0;
        }

        /* highlight inline text */
        .custom_terms_highlight {
            background: var(--green-dim);
            color: var(--text-dark);
            font-weight: 600;
            border-radius: 5px;
            padding: 1px 6px;
        }

        /* bulleted list */
        .custom_terms_list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 16px;
        }

        .custom_terms_list li {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.7;
        }

        .custom_terms_list li::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 7px;
        }

        /* numbered list */
        .custom_terms_list_num {
            list-style: none;
            counter-reset: terms-counter;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 16px;
        }

        .custom_terms_list_num li {
            counter-increment: terms-counter;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.7;
        }

        .custom_terms_list_num li::before {
            content: counter(terms-counter, decimal-leading-zero);
            font-size: 11px;
            font-weight: 700;
            color: var(--green);
            background: var(--green-dim);
            border-radius: 6px;
            padding: 2px 7px;
            flex-shrink: 0;
            margin-top: 3px;
            min-width: 28px;
            text-align: center;
        }

        /* info box */
        .custom_terms_infobox {
            background: var(--surface);
            border: 1px solid var(--border);
            border-left: 3px solid var(--green);
            border-radius: 0 12px 12px 0;
            padding: 16px 20px;
            margin-bottom: 16px;
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.7;
        }

        .custom_terms_infobox strong {
            color: var(--text-dark);
        }

        /* warning box */
        .custom_terms_warnbox {
            background: rgba(255, 193, 7, 0.07);
            border: 1px solid rgba(255, 193, 7, 0.25);
            border-left: 3px solid #f0ad00;
            border-radius: 0 12px 12px 0;
            padding: 16px 20px;
            margin-bottom: 16px;
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.7;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .custom_terms_warnbox_icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .custom_terms_warnbox_icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: #f0ad00;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* two-column rule grid */
        .custom_terms_rule_grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 16px;
        }

        .custom_terms_rule_card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 18px 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: border-color 0.25s, box-shadow 0.25s;
        }

        .custom_terms_rule_card:hover {
            border-color: var(--border-green);
            box-shadow: 0 4px 18px var(--green-glow);
        }

        .custom_terms_rule_card_icon {
            width: 34px;
            height: 34px;
            background: var(--green-dim);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.25s;
        }

        .custom_terms_rule_card:hover .custom_terms_rule_card_icon {
            background: var(--green);
        }

        .custom_terms_rule_card_icon svg {
            width: 17px;
            height: 17px;
            fill: none;
            stroke: var(--green);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.25s;
        }

        .custom_terms_rule_card:hover .custom_terms_rule_card_icon svg {
            stroke: #fff;
        }

        .custom_terms_rule_card_text {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.6;
        }

        .custom_terms_rule_card_text strong {
            display: block;
            font-size: 13px;
            color: var(--text-dark);
            margin-bottom: 3px;
        }

        /* table */
        .custom_terms_table_wrap {
            overflow-x: auto;
            border-radius: 14px;
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }

        .custom_terms_table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13.5px;
        }

        .custom_terms_table thead tr {
            background: var(--text-dark);
        }

        .custom_terms_table thead th {
            padding: 14px 18px;
            text-align: left;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.09em;
            color: rgba(255, 255, 255, 0.75);
            white-space: nowrap;
        }

        .custom_terms_table thead th:first-child {
            border-radius: 13px 0 0 0;
        }

        .custom_terms_table thead th:last-child {
            border-radius: 0 13px 0 0;
        }

        .custom_terms_table tbody tr {
            border-bottom: 1px solid var(--border);
            transition: background 0.2s;
        }

        .custom_terms_table tbody tr:last-child {
            border-bottom: none;
        }

        .custom_terms_table tbody tr:hover {
            background: var(--surface);
        }

        .custom_terms_table tbody td {
            padding: 13px 18px;
            color: var(--text-mid);
            vertical-align: top;
        }

        .custom_terms_table tbody td strong {
            color: var(--text-dark);
        }

        .custom_terms_table_badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            border-radius: 20px;
            padding: 3px 9px;
            letter-spacing: 0.04em;
        }

        .custom_terms_table_badge.green {
            background: var(--green-dim);
            color: var(--green);
        }

        .custom_terms_table_badge.warn {
            background: rgba(255, 193, 7, 0.12);
            color: #c68a00;
        }

        .custom_terms_table_badge.dark {
            background: var(--surface-2);
            color: var(--text-mid);
        }

        /* divider */
        .custom_terms_divider {
            height: 1px;
            background: var(--border);
            margin: 40px 0;
            position: relative;
        }

        .custom_terms_divider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 1px;
            width: 80px;
            background: var(--green);
            border-radius: 1px;
        }

        /* ════════════════════════════════════════════════════════════════════════
   AGREEMENT FOOTER
   ════════════════════════════════════════════════════════════════════════ */
        .custom_terms_agree_section {
            background: var(--text-dark);
            padding: 60px 100px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .custom_terms_agree_section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 22px 22px;
        }

        .custom_terms_agree_glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--green-dim);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: blur(80px);
            animation: custom_terms_pulse 7s ease-in-out infinite;
            pointer-events: none;
        }

        .custom_terms_agree_label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--green);
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .custom_terms_agree_label::before,
        .custom_terms_agree_label::after {
            content: '';
            display: block;
            width: 28px;
            height: 1px;
            background: var(--green);
        }

        .custom_terms_agree_title {
            font-family: var(--font-display);
            font-size: clamp(36px, 4.5vw, 58px);
            color: #fff;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
            position: relative;
            z-index: 2;
        }

        .custom_terms_agree_title span {
            color: var(--green);
        }

        .custom_terms_agree_sub {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            max-width: 480px;
            margin: 0 auto 36px;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .custom_terms_agree_btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .custom_terms_agree_btn_primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--green);
            color: #fff;
            font-family: var(--font-display);
            font-size: 18px;
            letter-spacing: 1.5px;
            padding: 14px 32px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            text-decoration: none;
        }

        .custom_terms_agree_btn_primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px var(--green-glow);
        }

        .custom_terms_agree_btn_primary svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: #fff;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.25s;
        }

        .custom_terms_agree_btn_primary:hover svg {
            transform: translateX(4px);
        }

        .custom_terms_agree_btn_sec {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            font-family: var(--font-display);
            font-size: 18px;
            letter-spacing: 1.5px;
            padding: 14px 28px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .custom_terms_agree_btn_sec:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .custom_terms_agree_btn_sec svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .custom_terms_agree_updated {
            margin-top: 28px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
        }

      /* ── TABLET  (max 1100px) ────────────────────────────────────────────── */
@media (max-width: 1100px) {
 
    .custom_terms_breadcrumb {
        padding-left: 40px;
        padding-right: 40px;
    }
 
    .custom_terms_hero {
        padding: 60px 40px 56px;
        gap: 32px;
    }
 
    .custom_terms_hero_title {
        font-size: clamp(42px, 5.5vw, 68px);
    }
 
    .custom_terms_layout {
        padding-left: 40px;
        padding-right: 40px;
        grid-template-columns: 240px 1fr;
    }
 
    .custom_terms_agree_section {
        padding-left: 40px;
        padding-right: 40px;
    }
 
    .custom_terms_rule_grid {
        grid-template-columns: 1fr 1fr;
    }
}
 
/* ── SMALL TABLET  (max 900px) ───────────────────────────────────────── */
@media (max-width: 900px) {
 
    /* breadcrumb */
    .custom_terms_breadcrumb {
        padding: 12px 24px;
        font-size: 12px;
    }
    .custom_terms_breadcrumb_date {
        display: none;
    }
 
    /* hero — stack vertically */
    .custom_terms_hero {
        flex-direction: column;
        padding: 52px 24px 44px;
        gap: 40px;
        text-align: center;
    }
    .custom_terms_hero_left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .custom_terms_hero_desc {
        max-width: 100%;
    }
    .custom_terms_hero_right {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .custom_terms_meta_card {
        min-width: 0;
        flex: 1 1 200px;
    }
 
    /* hide TOC sidebar */
    .custom_terms_toc {
        display: none;
    }
 
    /* layout becomes single column */
    .custom_terms_layout {
        grid-template-columns: 1fr;
        padding: 0 24px 60px;
    }
 
    /* content — remove left indent */
    .custom_terms_content {
        padding: 32px 0 0;
    }
 
    /* rule grid — single column */
    .custom_terms_rule_grid {
        grid-template-columns: 1fr;
    }
 
    /* table — allow horizontal scroll */
    .custom_terms_table_wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .custom_terms_table {
        min-width: 560px;
    }
 
    /* agree footer */
    .custom_terms_agree_section {
        padding: 50px 24px;
    }
    .custom_terms_agree_btns {
        flex-direction: column;
        align-items: center;
    }
    .custom_terms_agree_btn_primary,
    .custom_terms_agree_btn_sec {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
 
/* ── MOBILE  (max 640px) ─────────────────────────────────────────────── */
@media (max-width: 640px) {
 
    /* breadcrumb */
    .custom_terms_breadcrumb {
        padding: 10px 16px;
    }
 
    /* hero */
    .custom_terms_hero {
        padding: 44px 16px 36px;
    }
    .custom_terms_hero_title {
        font-size: clamp(40px, 11vw, 56px);
    }
    .custom_terms_hero_tag {
        font-size: 10px;
        padding: 5px 12px;
    }
    .custom_terms_hero_desc {
        font-size: 14px;
    }
    .custom_terms_hero_right {
        flex-direction: column;
        align-items: stretch;
    }
    .custom_terms_meta_card {
        flex: unset;
        width: 100%;
    }
 
    /* marquee */
    .custom_terms_marquee_item {
        font-size: 13px;
        padding: 0 18px;
        letter-spacing: 1.5px;
    }
 
    /* layout */
    .custom_terms_layout {
        padding: 0 16px 48px;
    }
 
    /* content */
    .custom_terms_content {
        padding: 24px 0 0;
	 max-width: 350px;
		width:100%;
    }
 
    /* alert banner */
    .custom_terms_alert {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }
    .custom_terms_alert_icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .custom_terms_alert_text {
        font-size: 13px;
    }
 
    /* section head */
    .custom_terms_section_head {
        gap: 10px;
        flex-wrap: wrap;
    }
    .custom_terms_section_num {
        font-size: 32px;
        min-width: 40px;
    }
    .custom_terms_section_icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .custom_terms_section_icon svg {
        width: 18px;
        height: 18px;
    }
    .custom_terms_section_title {
        font-size: 22px;
    }
    .custom_terms_section_subtitle {
        font-size: 11px;
    }
 
    /* body text */
    .custom_terms_text {
        font-size: 13.5px;
    }
 
    /* lists */
    .custom_terms_list li,
    .custom_terms_list_num li {
        font-size: 13px;
    }
 
    /* info / warn boxes */
    .custom_terms_infobox,
    .custom_terms_warnbox {
        font-size: 13px;
        padding: 14px 16px;
    }
    .custom_terms_warnbox {
        flex-direction: column;
        gap: 8px;
    }
    .custom_terms_warnbox_icon {
        margin-top: 0;
    }
 
    /* rule cards */
    .custom_terms_rule_grid {
        gap: 10px;
    }
    .custom_terms_rule_card {
        padding: 14px 14px;
    }
    .custom_terms_rule_card_text {
        font-size: 12.5px;
    }
 
    /* table */
    .custom_terms_table {
        font-size: 12.5px;
        min-width: 480px;
    }
    .custom_terms_table thead th {
        padding: 11px 14px;
        font-size: 10px;
    }
    .custom_terms_table tbody td {
        padding: 11px 14px;
    }
 
    /* section spacing */
    .custom_terms_section {
        margin-bottom: 36px;
    }
    .custom_terms_divider {
        margin: 28px 0;
    }
 
    /* agree footer */
    .custom_terms_agree_section {
        padding: 44px 16px;
    }
    .custom_terms_agree_title {
        font-size: clamp(30px, 9vw, 44px);
    }
    .custom_terms_agree_sub {
        font-size: 13px;
        margin-bottom: 28px;
    }
    .custom_terms_agree_btn_primary,
    .custom_terms_agree_btn_sec {
        font-size: 16px;
        padding: 13px 20px;
        max-width: 100%;
    }
}
 @media (min-width: 769px) and (max-width: 1024px) {
    .custom_terms_content {
        max-width: 500px;
    }
}
/* ── EXTRA SMALL  (max 400px) ────────────────────────────────────────── */
@media (max-width: 400px) {
 
    .custom_terms_hero {
        padding: 36px 14px 30px;
    }
    .custom_terms_hero_title {
        font-size: clamp(36px, 12vw, 48px);
    }
    .custom_terms_layout {
        padding: 0 14px 40px;
    }
    .custom_terms_section_title {
        font-size: 20px;
    }
    .custom_terms_section_num {
        font-size: 28px;
        min-width: 36px;
    }
    .custom_terms_agree_section {
        padding: 36px 14px;
    }
    .custom_terms_meta_card {
        padding: 14px 16px;
    }
}


    /* ─── HERO ─────────────────────────────────────────────────────── */

.custom_safety_cntr {
	/* width:100%;
	max-width:1340px; 

	margin:0 auto;
	position:relative; */
			/* padding:0px 7%; */
}
    .custom_safety_hero {
      background: var(--surface);
      padding: 7rem 10% 6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    .custom_safety_hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 50%, var(--green-dim), transparent);
      pointer-events: none;
    }
    .custom_safety_hero_eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green);
      background: var(--green-dim);
      border: 1px solid var(--border-green);
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1.4rem;
    }
    .custom_safety_hero_eyebrow svg { width: 14px; height: 14px; fill: var(--green); }
    .custom_safety_hero_headline {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 6vw, 5.5rem);
      line-height: 0.95;
      letter-spacing: 0.01em;
      color: var(--text-dark);
      margin-bottom: 1.4rem;
    }
    .custom_safety_hero_headline em {
      font-style: normal;
      color: var(--green);
    }
    .custom_safety_hero_sub {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-mid);
      max-width: 480px;
      margin-bottom: 2.2rem;
    }
    .custom_safety_hero_stats {
      display: flex;
      gap: 2.5rem;
    }
    .custom_safety_stat_num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--text-dark);
      line-height: 1;
    }
    .custom_safety_stat_num span { color: var(--green); }
    .custom_safety_stat_label {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 0.25rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .custom_safety_hero_visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .custom_safety_hero_shield {
      width: 280px;
      height: 280px;
      background: linear-gradient(135deg, var(--green-dim) 0%, transparent 80%);
      border: 2px solid var(--border-green);
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .custom_safety_hero_shield::after {
      content: '';
      position: absolute;
      inset: -20px;
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      border: 1px solid var(--green-glow);
      animation: custom_safety_pulse 3s ease-in-out infinite;
    }
    @keyframes custom_safety_pulse {
      0%, 100% { opacity: 0.4; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.04); }
    }
    .custom_safety_hero_shield svg {
      width: 110px;
      height: 110px;
    }
    .custom_safety_hero_badge {
      position: absolute;
      bottom: 20px;
      right: 10px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .custom_safety_hero_badge_icon {
      width: 38px;
      height: 38px;
      background: var(--green-dim);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .custom_safety_hero_badge_icon svg { width: 18px; height: 18px; fill: var(--green); }
    .custom_safety_hero_badge_text strong {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-dark);
    }
    .custom_safety_hero_badge_text span {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    /* ─── SECTION SHELL ────────────────────────────────────────────── */
    .custom_safety_section {
      padding: 5.5rem 10% 5%;
    }
    .custom_safety_section_alt {
      background: var(--surface);
    }
    .custom_safety_section_header {
      max-width: 640px;
      margin-bottom: 3.5rem;
    }
    .custom_safety_eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.8rem;
    }
    .custom_safety_heading {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      line-height: 1;
      letter-spacing: 0.01em;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }
    .custom_safety_desc {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-mid);
    }

    /* ─── FEATURE CARDS (rider + driver) ──────────────────────────── */
    .custom_safety_cards_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .custom_safety_card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem 1.75rem;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }
    .custom_safety_card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .custom_safety_card:hover {
      border-color: var(--border-green);
      box-shadow: 0 8px 32px var(--green-glow);
      transform: translateY(-4px);
    }
    .custom_safety_card:hover::before { transform: scaleX(1); }
    .custom_safety_card_icon {
      width: 52px;
      height: 52px;
      background: var(--green-dim);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
    }
    .custom_safety_card_icon svg { width: 26px; height: 26px; fill: var(--green); }
    .custom_safety_card_tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
      background: var(--green-dim);
      border: 1px solid var(--border-green);
      padding: 0.18rem 0.6rem;
      border-radius: 100px;
      margin-bottom: 0.75rem;
    }
    .custom_safety_card_title {
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }
    .custom_safety_card_body {
      font-size: 0.88rem;
      line-height: 1.68;
      color: var(--text-mid);
    }

    /* ─── 2-COL SPLIT ──────────────────────────────────────────────── */
    .custom_safety_split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .custom_safety_split_reverse { direction: rtl; }
    .custom_safety_split_reverse > * { direction: ltr; }
    .custom_safety_split_visual {
      position: relative;
    }
    .custom_safety_split_img_wrap {
      border-radius: 20px;
      overflow: hidden;
background-image:url(https://bitdrive.in/assets/images/features/14413.jpg);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .custom_safety_steps {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .custom_safety_step {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }
    .custom_safety_step_num {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--green);
      line-height: 1;
      min-width: 42px;
      padding-top: 2px;
    }
    .custom_safety_step_title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.35rem;
    }
    .custom_safety_step_body {
      font-size: 0.875rem;
      line-height: 1.65;
      color: var(--text-mid);
    }

    /* ─── SOS / EMERGENCY BANNER ───────────────────────────────────── */
    .custom_safety_sos_wrap {
      background: var(--text-dark);
      border-radius: 24px;
      padding: 3.5rem 4rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: center;
      margin: 0 5% 5.5rem;
      position: relative;
      overflow: hidden;
    }
    .custom_safety_sos_wrap::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
      pointer-events: none;
    }
    .custom_safety_sos_label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.7rem;
    }
    .custom_safety_sos_heading {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: #fff;
      line-height: 1.05;
      margin-bottom: 1rem;
    }
    .custom_safety_sos_body {
      font-size: 0.95rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.65);
      max-width: 480px;
    }
    .custom_safety_sos_btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--green);
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 1rem 2rem;
      border-radius: 10px;
      white-space: nowrap;
      transition: opacity 0.2s, transform 0.2s;
      flex-shrink: 0;
    }
    .custom_safety_sos_btn:hover { opacity: 0.9; transform: translateY(-2px); }
    .custom_safety_sos_btn svg { width: 18px; height: 18px; fill: #fff; }

    /* ─── STATS BAR ────────────────────────────────────────────────── */
    .custom_safety_stats_bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin: 4% 10% 5.5rem;
    }
    .custom_safety_stats_item {
      padding: 2.2rem 2rem;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .custom_safety_stats_item:last-child { border-right: none; }
    .custom_safety_stats_num {
      font-family: var(--font-display);
      font-size: 2.8rem;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .custom_safety_stats_num span { color: var(--green); }
    .custom_safety_stats_lbl {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ─── EV SAFETY (green trip) ───────────────────────────────────── */
    .custom_safety_ev_grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .custom_safety_ev_card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .custom_safety_ev_card:hover {
      border-color: var(--border-green);
      box-shadow: 0 6px 24px var(--green-glow);
    }
    .custom_safety_ev_icon {
      width: 46px;
      height: 46px;
      background: var(--green-dim);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .custom_safety_ev_icon svg { width: 22px; height: 22px; fill: var(--green); }
    .custom_safety_ev_title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }
    .custom_safety_ev_body {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--text-mid);
    }

    /* ─── DRIVER SAFETY ────────────────────────────────────────────── */
    .custom_safety_driver_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .custom_safety_driver_card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem 1.75rem;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .custom_safety_driver_card:hover {
      border-color: var(--border-green);
      box-shadow: 0 8px 28px var(--green-glow);
      transform: translateY(-3px);
    }
    .custom_safety_driver_num {
      font-family: var(--font-display);
      font-size: 2.8rem;
      color: var(--green-dim);
      line-height: 1;
      margin-bottom: 1rem;
      -webkit-text-stroke: 1.5px var(--green);
      color: transparent;
    }
    .custom_safety_driver_title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    .custom_safety_driver_body {
      font-size: 0.875rem;
      line-height: 1.68;
      color: var(--text-mid);
    }

    /* ─── FAQ ──────────────────────────────────────────────────────── */
    .custom_safety_faq_list {
      max-width: 1340px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .custom_safety_faq_item {
      border-bottom: 1px solid var(--border);
    }
    .custom_safety_faq_item:last-child { border-bottom: none; }
    .custom_safety_faq_q {
      width: 100%;
      background: none;
      border: none;
      padding: 1.4rem 1.75rem;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      transition: background 0.2s;
    }
    .custom_safety_faq_q:hover { background: var(--surface); }
    .custom_safety_faq_q svg {
      width: 18px;
      height: 18px;
      fill: var(--green);
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .custom_safety_faq_item.open .custom_safety_faq_q svg { transform: rotate(45deg); }
    .custom_safety_faq_a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s ease;
      padding: 0 1.75rem;
    }
    .custom_safety_faq_item.open .custom_safety_faq_a {
      max-height: 300px;
      padding: 0 1.75rem 1.4rem;
    }
    .custom_safety_faq_a p {
      font-size: 0.9rem;
      line-height: 1.72;
      color: var(--text-mid);
    }

    /* ─── CTA BAND ─────────────────────────────────────────────────── */
    .custom_safety_cta_band {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 5rem 5%;
      text-align: center;
    }
    .custom_safety_cta_heading {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--text-dark);
      margin-bottom: 1rem;
      line-height: 1;
    }
    .custom_safety_cta_heading em { font-style: normal; color: var(--green); }
    .custom_safety_cta_sub {
      font-size: 1rem;
      color: var(--text-mid);
      margin-bottom: 2.5rem;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    .custom_safety_cta_btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .custom_safety_btn_primary {
      background: var(--green);
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.85rem 2rem;
      border-radius: 8px;
      transition: opacity 0.2s, transform 0.2s;
    }
    .custom_safety_btn_primary:hover { opacity: 0.88; transform: translateY(-2px); }
    .custom_safety_btn_outline {
      background: transparent;
      color: var(--text-dark);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.85rem 2rem;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .custom_safety_btn_outline:hover {
      border-color: var(--green);
      color: var(--green);
      transform: translateY(-2px);
    }

    /* ─── SCROLL REVEAL ────────────────────────────────────────────── */
    .custom_safety_reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .custom_safety_reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ───────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .custom_safety_cards_grid { grid-template-columns: repeat(2, 1fr); }
      .custom_safety_driver_grid { grid-template-columns: repeat(2, 1fr); }
      .custom_safety_stats_bar { grid-template-columns: repeat(2, 1fr); }
      .custom_safety_stats_item:nth-child(2) { border-right: none; }
      .custom_safety_stats_item:nth-child(3) { border-top: 1px solid var(--border); }
      .custom_safety_stats_item:nth-child(4) { border-top: 1px solid var(--border); }
    }
    @media (max-width: 900px) {
      .custom_safety_hero { grid-template-columns: 1fr; padding: 4rem 5%; }
      .custom_safety_hero_visual { display: none; }
      .custom_safety_split { grid-template-columns: 1fr; gap: 3rem; }
      .custom_safety_split_reverse { direction: ltr; }
      .custom_safety_sos_wrap { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 2rem; margin: 0 4% 4rem; }
      .custom_safety_ev_grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {

   
      .custom_safety_cards_grid { grid-template-columns: 1fr; }
      .custom_safety_driver_grid { grid-template-columns: 1fr; }
      .custom_safety_stats_bar { grid-template-columns: 1fr 1fr; }
      .custom_safety_stats_item:nth-child(2) { border-right: none; }
      .custom_safety_stats_item:nth-child(3) { border-top: 1px solid var(--border); }
      .custom_safety_stats_item:nth-child(4) { border-top: 1px solid var(--border); }
      .custom_safety_hero_stats { flex-direction: column; gap: 1.2rem; }
      .custom_safety_section { padding: 4rem 5% 5%; }
      .custom_safety_stats_bar { margin: 0 5% 4rem; }
    }
    @media (max-width: 400px) {
      .custom_safety_stats_bar { grid-template-columns: 1fr; }
      .custom_safety_stats_item { border-right: none; border-top: 1px solid var(--border); }
      .custom_safety_stats_item:first-child { border-top: none; }
    }


    /* ═══════════════════════════════════════════
       HERO — split layout
    ═══════════════════════════════════════════ */

    .custom_drive_cntr {
        position: relative;
        overflow: hidden;
      margin: 0 auto;

    }
    .custom_drive_hero {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 4rem;
      align-items: center;
      padding: 6rem 10% 5rem;
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }
    .custom_drive_hero::before {
      content: '';
      position: absolute;
      top: -120px; left: -120px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--green-dim) 0%, transparent 70%);
      pointer-events: none;
    }
    .custom_drive_hero_eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green);
      background: var(--green-dim);
      border: 1px solid var(--border-green);
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1.4rem;
    }
    .custom_drive_hero_headline {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 6vw, 5.8rem);
      line-height: 0.93;
      letter-spacing: 0.01em;
      color: var(--text-dark);
      margin-bottom: 1.4rem;
    }
    .custom_drive_hero_headline em {
      font-style: normal;
      color: var(--green);
    }
    .custom_drive_hero_sub {
      font-size: 1.05rem;
      line-height: 1.72;
      color: var(--text-mid);
      max-width: 500px;
      margin-bottom: 2.5rem;
    }
    .custom_drive_hero_pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 2.5rem;
    }
    .custom_drive_hero_pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-mid);
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 0.4rem 0.9rem;
      border-radius: 100px;
    }
    .custom_drive_hero_pill svg { width: 13px; height: 13px; fill: var(--green); flex-shrink: 0; }
    .custom_drive_hero_cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--green);
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      padding: 1rem 2.2rem;
      border-radius: 10px;
      border: none;
      transition: opacity 0.2s, transform 0.2s;
    }
    .custom_drive_hero_cta:hover { opacity: 0.9; transform: translateY(-2px); }
    .custom_drive_hero_cta svg { width: 18px; height: 18px; fill: #fff; }

    /* ─── Hero form card ─── */
    .custom_drive_hero_card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      box-shadow: 0 12px 48px rgba(0,0,0,0.07);
      position: relative;
      z-index: 1;
    }
    .custom_drive_hero_card_title {
      font-family: var(--font-display);
      font-size: 1.9rem;
      letter-spacing: 0.02em;
      color: var(--text-dark);
      margin-bottom: 0.3rem;
    }
    .custom_drive_hero_card_sub {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 1.8rem;
      line-height: 1.5;
    }
    .custom_drive_form_group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.1rem;
    }
    .custom_drive_form_label {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-mid);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .custom_drive_form_input,
    .custom_drive_form_select {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: var(--surface);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .custom_drive_form_input:focus,
    .custom_drive_form_select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px var(--green-dim);
    }
    .custom_drive_form_select_wrap {
      position: relative;
    }
    .custom_drive_form_select_wrap::after {
      content: '';
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--text-muted);
      pointer-events: none;
    }
    .custom_drive_form_phone_row {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 0.5rem;
    }
    .custom_drive_form_submit {
      width: 100%;
      background: var(--green);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 0.9rem;
      border-radius: 8px;
      border: none;
      margin-top: 0.4rem;
      transition: opacity 0.2s, transform 0.2s;
      letter-spacing: 0.02em;
    }
    .custom_drive_form_submit:hover { opacity: 0.88; transform: translateY(-1px); }
    .custom_drive_form_note {
      font-size: 0.72rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 0.9rem;
      line-height: 1.5;
    }

    /* ═══════════════════════════════════════════
       STATS TICKER
    ═══════════════════════════════════════════ */
    .custom_drive_stats_bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid var(--border);
    }
    .custom_drive_stats_item {
      padding: 2rem 2rem;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .custom_drive_stats_item:last-child { border-right: none; }
    .custom_drive_stats_num {
      font-family: var(--font-display);
      font-size: 2.6rem;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .custom_drive_stats_num span { color: var(--green); }
    .custom_drive_stats_lbl {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    /* ═══════════════════════════════════════════
       SECTION SHELL
    ═══════════════════════════════════════════ */
    .custom_drive_section {
      padding: 5.5rem 10% 5%;
    }
    .custom_drive_section_alt {
      background: var(--surface);
    }
    .custom_drive_section_dark {
      background: var(--text-dark);
    }
    .custom_drive_section_header {
      max-width: 640px;
      margin-bottom: 3.5rem;
    }
    .custom_drive_eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.75rem;
    }
    .custom_drive_heading {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      line-height: 1;
      letter-spacing: 0.01em;
      color: var(--text-dark);
      margin-bottom: 0.9rem;
    }
    .custom_drive_heading_light {
      color: #fff;
    }
    .custom_drive_desc {
      font-size: 1rem;
      line-height: 1.72;
      color: var(--text-mid);
    }
    .custom_drive_desc_light {
      color: rgba(255,255,255,0.6);
    }

    /* ═══════════════════════════════════════════
       EARNINGS CARDS
    ═══════════════════════════════════════════ */
    .custom_drive_earn_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .custom_drive_earn_card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2.2rem 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .custom_drive_earn_card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .custom_drive_earn_card:hover {
      border-color: var(--border-green);
      box-shadow: 0 10px 36px var(--green-glow);
      transform: translateY(-4px);
    }
    .custom_drive_earn_card:hover::after { transform: scaleX(1); }
    .custom_drive_earn_icon {
      width: 54px;
      height: 54px;
      background: var(--green-dim);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
    }
    .custom_drive_earn_icon svg { width: 26px; height: 26px; fill: var(--green); }
    .custom_drive_earn_amount {
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--text-dark);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .custom_drive_earn_amount span { color: var(--green); font-size: 1.1rem; }
    .custom_drive_earn_title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    .custom_drive_earn_body {
      font-size: 0.875rem;
      line-height: 1.68;
      color: var(--text-mid);
    }

    /* ═══════════════════════════════════════════
       HOW IT WORKS — timeline
    ═══════════════════════════════════════════ */
    .custom_drive_timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .custom_drive_timeline::before {
      content: '';
      position: absolute;
      top: 34px;
      left: calc(12.5% + 27px);
      right: calc(12.5% + 27px);
      height: 2px;
      background: linear-gradient(to right, var(--green), var(--green-glow));
    }
    .custom_drive_timeline_step {
      text-align: center;
      padding: 0 1.5rem;
      position: relative;
    }
    .custom_drive_timeline_circle {
      width: 56px;
      height: 56px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: #fff;
      letter-spacing: 0.02em;
      position: relative;
      z-index: 1;
    }
    .custom_drive_timeline_circle svg { width: 22px; height: 22px; fill: #fff; }
    .custom_drive_timeline_title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    .custom_drive_timeline_body {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--text-mid);
    }

    /* ═══════════════════════════════════════════
       VEHICLE TYPES
    ═══════════════════════════════════════════ */
    .custom_drive_vehicle_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .custom_drive_vehicle_card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 2rem 1.75rem;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
      cursor: pointer;
    }
    .custom_drive_vehicle_card:hover,
    .custom_drive_vehicle_card.custom_drive_active {
      border-color: var(--border-green);
      box-shadow: 0 8px 32px var(--green-glow);
      transform: translateY(-3px);
    }
    .custom_drive_vehicle_card.custom_drive_active {
      background: linear-gradient(135deg, var(--green-dim) 0%, var(--bg) 100%);
    }
    .custom_drive_vehicle_icon {
      width: 60px;
      height: 60px;
      background: var(--surface-2);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .custom_drive_vehicle_card.custom_drive_active .custom_drive_vehicle_icon {
      background: var(--green-dim);
    }
    .custom_drive_vehicle_icon svg { width: 30px; height: 30px; fill: var(--text-muted); }
    .custom_drive_vehicle_card.custom_drive_active .custom_drive_vehicle_icon svg { fill: var(--green); }
    .custom_drive_vehicle_badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
      background: var(--green-dim);
      border: 1px solid var(--border-green);
      padding: 0.2rem 0.65rem;
      border-radius: 100px;
      margin-bottom: 0.7rem;
    }
    .custom_drive_vehicle_name {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }
    .custom_drive_vehicle_desc {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--text-mid);
      margin-bottom: 1.2rem;
    }
    .custom_drive_vehicle_specs {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .custom_drive_vehicle_spec {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .custom_drive_vehicle_spec svg { width: 13px; height: 13px; fill: var(--green); }

    /* ═══════════════════════════════════════════
       BENEFITS — dark section
    ═══════════════════════════════════════════ */
    .custom_drive_benefits_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .custom_drive_benefit_card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 2rem 1.75rem;
      transition: background 0.25s, border-color 0.25s;
    }
    .custom_drive_benefit_card:hover {
      background: rgba(255,255,255,0.08);
      border-color: var(--border-green);
    }
    .custom_drive_benefit_icon {
      width: 50px;
      height: 50px;
      background: var(--green-dim);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .custom_drive_benefit_icon svg { width: 24px; height: 24px; fill: var(--green); }
    .custom_drive_benefit_title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .custom_drive_benefit_body {
      font-size: 0.875rem;
      line-height: 1.68;
      color: rgba(255,255,255,0.55);
    }

    /* ═══════════════════════════════════════════
       REQUIREMENTS
    ═══════════════════════════════════════════ */
    .custom_drive_req_grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .custom_drive_req_block {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem 2rem 1.75rem;
    }
    .custom_drive_req_block_title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .custom_drive_req_block_title svg {
      width: 20px;
      height: 20px;
      fill: var(--green);
      flex-shrink: 0;
    }
    .custom_drive_req_list {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .custom_drive_req_item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.875rem;
      line-height: 1.55;
      color: var(--text-mid);
    }
    .custom_drive_req_check {
      width: 18px;
      height: 18px;
      background: var(--green-dim);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .custom_drive_req_check svg { width: 10px; height: 10px; fill: var(--green); }

    /* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
    .custom_drive_testimonials_grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .custom_drive_testimonial_card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem 1.75rem;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .custom_drive_testimonial_card:hover {
      border-color: var(--border-green);
      box-shadow: 0 8px 28px var(--green-glow);
    }
    .custom_drive_testimonial_stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem;
    }
    .custom_drive_testimonial_stars svg { width: 15px; height: 15px; fill: var(--green); }
    .custom_drive_testimonial_quote {
      font-size: 0.92rem;
      line-height: 1.72;
      color: var(--text-mid);
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    .custom_drive_testimonial_author {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }
    .custom_drive_testimonial_avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--green-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--green);
      flex-shrink: 0;
    }
    .custom_drive_testimonial_name {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.15rem;
    }
    .custom_drive_testimonial_meta {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    .custom_drive_faq_grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
    .custom_drive_faq_list {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .custom_drive_faq_item {
      border-bottom: 1px solid var(--border);
    }
    .custom_drive_faq_item:last-child { border-bottom: none; }
    .custom_drive_faq_q {
      width: 100%;
      background: none;
      border: none;
      padding: 1.3rem 1.6rem;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
      transition: background 0.2s;
    }
    .custom_drive_faq_q:hover { background: var(--surface); }
    .custom_drive_faq_q svg {
      width: 18px; height: 18px;
      fill: var(--green);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .custom_drive_faq_item.open .custom_drive_faq_q svg { transform: rotate(45deg); }
    .custom_drive_faq_a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s;
      padding: 0 1.6rem;
    }
    .custom_drive_faq_item.open .custom_drive_faq_a {
      max-height: 300px;
      padding: 0 1.6rem 1.3rem;
    }
    .custom_drive_faq_a p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--text-mid);
    }

    /* ─── FAQ right side contact card ─── */
    .custom_drive_faq_contact {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .custom_drive_faq_contact_icon {
      width: 64px;
      height: 64px;
      background: var(--green-dim);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
    }
    .custom_drive_faq_contact_icon svg { width: 28px; height: 28px; fill: var(--green); }
    .custom_drive_faq_contact_title {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--text-dark);
      margin-bottom: 0.6rem;
    }
    .custom_drive_faq_contact_body {
      font-size: 0.875rem;
      line-height: 1.65;
      color: var(--text-mid);
      margin-bottom: 1.8rem;
    }
    .custom_drive_faq_contact_btn {
      display: block;
      width: 100%;
      background: var(--green);
      color: #fff;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 0.85rem;
      border-radius: 8px;
      border: none;
      text-align: center;
      transition: opacity 0.2s;
      margin-bottom: 0.8rem;
    }
    .custom_drive_faq_contact_btn:hover { opacity: 0.88; }
    .custom_drive_faq_contact_btn_outline {
      display: block;
      width: 100%;
      background: transparent;
      color: var(--text-dark);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.85rem;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      text-align: center;
      transition: border-color 0.2s, color 0.2s;
    }
    .custom_drive_faq_contact_btn_outline:hover {
      border-color: var(--green);
      color: var(--green);
    }

    /* ═══════════════════════════════════════════
       CTA BAND
    ═══════════════════════════════════════════ */
    .custom_drive_cta_band {
      background: var(--text-dark);
      padding: 6rem 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .custom_drive_cta_band::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
      pointer-events: none;
    }
    .custom_drive_cta_band_eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.8rem;
    }
    .custom_drive_cta_band_heading {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      color: #fff;
      line-height: 1;
      margin-bottom: 1.2rem;
      position: relative;
    }
    .custom_drive_cta_band_heading em { font-style: normal; color: var(--green); }
    .custom_drive_cta_band_sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.6);
      max-width: 500px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
      position: relative;
    }
    .custom_drive_cta_band_btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }
    .custom_drive_btn_green {
      background: var(--green);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      padding: 0.9rem 2.2rem;
      border-radius: 8px;
      border: none;
      transition: opacity 0.2s, transform 0.2s;
    }
    .custom_drive_btn_green:hover { opacity: 0.88; transform: translateY(-2px); }
    .custom_drive_btn_ghost {
      background: transparent;
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 0.9rem 2.2rem;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.2);
      transition: border-color 0.2s, color 0.2s;
    }
    .custom_drive_btn_ghost:hover {
      border-color: var(--green);
      color: var(--green);
    }

   
    /* ═══════════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════════ */
    .custom_drive_reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .custom_drive_reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .custom_drive_hero { grid-template-columns: 1fr; }
      .custom_drive_hero_card { max-width: 480px; }
      .custom_drive_earn_grid { grid-template-columns: repeat(2, 1fr); }
      .custom_drive_vehicle_grid { grid-template-columns: repeat(2, 1fr); }
      .custom_drive_benefits_grid { grid-template-columns: repeat(2, 1fr); }
      .custom_drive_testimonials_grid { grid-template-columns: repeat(2, 1fr); }
      .custom_drive_timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .custom_drive_timeline::before { display: none; }
    }
    @media (max-width: 900px) {
      .custom_drive_req_grid { grid-template-columns: 1fr; }
      .custom_drive_faq_grid { grid-template-columns: 1fr; }
      .custom_drive_stats_bar { grid-template-columns: repeat(2, 1fr); }
      .custom_drive_stats_item:nth-child(2) { border-right: none; }
      .custom_drive_stats_item:nth-child(3) { border-top: 1px solid var(--border); }
      .custom_drive_stats_item:nth-child(4) { border-top: 1px solid var(--border); }
    }
    @media (max-width: 640px) {

      .custom_drive_earn_grid { grid-template-columns: 1fr; }
      .custom_drive_vehicle_grid { grid-template-columns: 1fr; }
      .custom_drive_benefits_grid { grid-template-columns: 1fr; }
      .custom_drive_testimonials_grid { grid-template-columns: 1fr; }
      .custom_drive_timeline { grid-template-columns: 1fr; }
      .custom_drive_hero { padding: 3.5rem 5% 3rem; }
      .custom_drive_section { padding: 3.5rem 5%; }
    }
    @media (max-width: 400px) {
      .custom_drive_stats_bar { grid-template-columns: 1fr; }
      .custom_drive_stats_item { border-right: none; border-top: 1px solid var(--border); }
      .custom_drive_stats_item:first-child { border-top: none; }
    }


.custom_cities * { box-sizing: border-box; margin: 0; padding: 0; }
.custom_cities { font-family: var(--font-body); background: var(--bg); color: var(--text-dark); }

.custom_cities .cc-breadcrumb {
  background: var(--brdcrumb);
  padding: 10px 32px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.custom_cities .cc-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.custom_cities .cc-breadcrumb a:hover { color: var(--green); }
.custom_cities .cc-breadcrumb .sep { color: var(--border); }
.custom_cities .cc-breadcrumb .active { color: var(--text-dark); font-weight: 500; }

.custom_cities .cc-hero {
  background: var(--black);
  padding: 64px 10% 52px;
  position: relative;
  overflow: hidden;
}
.custom_cities .cc-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--green-dim);
}
.custom_cities .cc-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(142,202,65,0.07);
}
.custom_cities .cc-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.custom_cities .cc-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.custom_cities .cc-hero h1 {
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 1;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.custom_cities .cc-hero h1 span { color: var(--green); }
.custom_cities .cc-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}
.custom_cities .cc-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 0 16px;
  max-width: 420px;
  gap: 10px;
}
.custom_cities .cc-search-bar i { color: rgba(255,255,255,0.35); font-size: 17px; }
.custom_cities .cc-search-bar input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 0;
  flex: 1;
}
.custom_cities .cc-search-bar input::placeholder { color: rgba(255,255,255,0.3); }

.custom_cities .cc-stats {
  display: flex;
  gap: 32px;
  padding: 22px 10% 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.custom_cities .cc-stat { display: flex; align-items: center; gap: 10px; }
.custom_cities .cc-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green);
  letter-spacing: 0.5px;
}
.custom_cities .cc-stat-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.custom_cities .cc-stat-div { width: 1px; background: var(--border); height: 30px; }

.custom_cities .cc-body { padding: 40px 10% 32px; }
.custom_cities .cc-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}
.custom_cities .cc-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}
.custom_cities .cc-section-title span { color: var(--green); }
.custom_cities .cc-count-badge {
  font-size: 12px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--border-green);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.custom_cities .cc-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.custom_cities .cc-city-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px 16px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
}
.custom_cities .cc-city-card:hover {
  border-color: var(--border-green);
  background: var(--surface-2);
}
.custom_cities .cc-city-card.live::after {
  content: 'LIVE';
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  padding: 2px 7px;
  border-radius: 20px;
}
.custom_cities .cc-city-card.coming::after {
  content: 'COMING SOON';
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 20px;
}
.custom_cities .cc-city-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--green);
}
.custom_cities .cc-city-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.custom_cities .cc-city-state {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.custom_cities .cc-city-meta {
  display: flex;
  gap: 14px;
}
.custom_cities .cc-city-meta span {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.custom_cities .cc-city-meta i { color: var(--green); font-size: 13px; }
.custom_cities .cc-city-card.coming .cc-city-icon { background: var(--surface-2); color: var(--text-muted); }
.custom_cities .cc-city-card.coming .cc-city-name { color: var(--text-mid); }

.custom_cities .cc-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-bottom: 48px;
}
.custom_cities .cc-city-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.custom_cities .cc-city-row:hover { border-color: var(--border-green); }
.custom_cities .cc-city-row i { color: var(--green); font-size: 15px; flex-shrink: 0; }
.custom_cities .cc-city-row-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.custom_cities .cc-city-row-state { font-size: 11px; color: var(--text-muted); }
.custom_cities .cc-city-row.dim i { color: var(--text-muted); }
.custom_cities .cc-city-row.dim .cc-city-row-name { color: var(--text-muted); }

.custom_cities .cc-cta {
  background: var(--black);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.custom_cities .cc-cta::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--green-dim);
}
.custom_cities .cc-cta-text { position: relative; z-index: 1; }
.custom_cities .cc-cta-text p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
}
.custom_cities .cc-cta-text h3 {
  font-family: var(--font-display);
  font-size: 34px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.custom_cities .cc-cta-actions { display: flex; gap: 12px; position: relative; z-index: 1; flex-shrink: 0; }
.custom_cities .cc-btn-primary {
  background: var(--green);
  color: var(--black);
  border: none;
  border-radius: 7px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.custom_cities .cc-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 7px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .custom_cities .cc-hero h1 { font-size: 42px; }
  .custom_cities .cc-stats { flex-wrap: wrap; gap: 16px; }
  .custom_cities .cc-cta { flex-direction: column; align-items: flex-start; }
  .custom_cities .cc-body { padding: 28px 16px; }
  .custom_cities .cc-hero { padding: 44px 16px 38px; }
  .custom_cities .cc-cta-actions { flex-direction: column; width: 100%; }
}

.custom_book*{box-sizing:border-box;margin:0;padding:0;}
.custom_book{font-family:var(--font-body);background:var(--bg);color:var(--text-dark);}

.custom_book .cb-breadcrumb{background:var(--brdcrumb);padding:10px 32px;font-size:13px;color:var(--text-muted);border-bottom:1px solid var(--border);display:flex;align-items:center;gap:6px;}
.custom_book .cb-breadcrumb a{color:var(--text-muted);text-decoration:none;}
.custom_book .cb-breadcrumb a:hover{color:var(--green);}
.custom_book .cb-breadcrumb .sep{color:var(--border);}
.custom_book .cb-breadcrumb .active{color:var(--text-dark);font-weight:500;}

.custom_book .cb-hero{background:var(--black);padding:60px 10% 50px;position:relative;overflow:hidden;}
.custom_book .cb-hero-blob1{position:absolute;top:-50px;right:-50px;width:300px;height:300px;border-radius:50%;background:var(--green-dim);}
.custom_book .cb-hero-blob2{position:absolute;bottom:-70px;left:8%;width:180px;height:180px;border-radius:50%;background:rgba(142,202,65,0.06);}
.custom_book .cb-hero-inner{position:relative;z-index:1;max-width:600px;}
.custom_book .cb-eyebrow{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--green);margin-bottom:14px;}
.custom_book .cb-hero h1{font-family:var(--font-display);font-size:58px;line-height:1;color:#fff;letter-spacing:1px;margin-bottom:16px;}
.custom_book .cb-hero h1 span{color:var(--green);}
.custom_book .cb-hero-sub{font-size:15px;color:rgba(255,255,255,0.52);line-height:1.7;max-width:440px;margin-bottom:30px;}
.custom_book .cb-hero-pills{display:flex;gap:10px;flex-wrap:wrap;}
.custom_book .cb-pill{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);border-radius:20px;padding:6px 14px;font-size:12px;color:rgba(255,255,255,0.65);}
.custom_book .cb-pill i{color:var(--green);font-size:14px;}

.custom_book .cb-steps-section{padding:52px 10% 0;}
.custom_book .cb-section-label{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--green);margin-bottom:10px;}
.custom_book .cb-section-title{font-family:var(--font-display);font-size:36px;color:var(--text-dark);letter-spacing:0.5px;margin-bottom:8px;}
.custom_book .cb-section-title span{color:var(--green);}
.custom_book .cb-section-sub{font-size:14px;color:var(--text-muted);margin-bottom:36px;line-height:1.6;}

.custom_book .cb-steps{display:flex;flex-direction:column;gap:0;}
.custom_book .cb-step{display:grid;grid-template-columns:64px 1fr;gap:0 20px;position:relative;}
.custom_book .cb-step-line{display:flex;flex-direction:column;align-items:center;}
.custom_book .cb-step-num{width:44px;height:44px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:22px;color:var(--black);flex-shrink:0;position:relative;z-index:1;}
.custom_book .cb-step-connector{width:2px;background:var(--border);flex:1;min-height:32px;}
.custom_book .cb-step:last-child .cb-step-connector{display:none;}
.custom_book .cb-step-body{padding-bottom:36px;}
.custom_book .cb-step-tag{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--text-muted);margin-bottom:6px;margin-top:10px;}
.custom_book .cb-step-head{font-size:19px;font-weight:600;color:var(--text-dark);margin-bottom:8px;}
.custom_book .cb-step-desc{font-size:14px;color:var(--text-mid);line-height:1.7;margin-bottom:14px;}
.custom_book .cb-step-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:16px 18px;display:flex;flex-direction:column;gap:10px;}
.custom_book .cb-step-card-row{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--text-mid);}
.custom_book .cb-step-card-row i{color:var(--green);font-size:16px;flex-shrink:0;}
.custom_book .cb-step-card-row strong{color:var(--text-dark);font-weight:600;}

.custom_book .cb-mockup-wrap{background:var(--black);border-radius:12px;padding:20px;margin-top:14px;display:inline-block;max-width:300px;}
.custom_book .cb-mock-bar{display:flex;align-items:center;gap:8px;margin-bottom:16px;}
.custom_book .cb-mock-dot{width:8px;height:8px;border-radius:50%;}
.custom_book .cb-mock-input{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.12);border-radius:7px;padding:10px 12px;display:flex;align-items:center;gap:8px;margin-bottom:8px;}
.custom_book .cb-mock-input i{color:var(--green);font-size:15px;}
.custom_book .cb-mock-input span{font-size:13px;color:rgba(255,255,255,0.55);}
.custom_book .cb-mock-input .val{color:#fff;}
.custom_book .cb-mock-divider{height:1px;background:rgba(255,255,255,0.07);margin:4px 0;}

.custom_book .cb-vehicle-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:10px;margin-top:14px;}
.custom_book .cb-v-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:14px 12px;text-align:center;cursor:pointer;}
.custom_book .cb-v-card.active{border-color:var(--border-green);background:var(--green-dim);}
.custom_book .cb-v-card i{font-size:26px;color:var(--text-muted);display:block;margin-bottom:8px;}
.custom_book .cb-v-card.active i{color:var(--green);}
.custom_book .cb-v-card .cb-v-name{font-size:13px;font-weight:600;color:var(--text-dark);margin-bottom:2px;}
.custom_book .cb-v-card .cb-v-info{font-size:11px;color:var(--text-muted);}

.custom_book .cb-tips-section{padding:0 10% 48px;}
.custom_book .cb-tips-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px;margin-top:28px;}
.custom_book .cb-tip-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:18px 16px;}
.custom_book .cb-tip-icon{width:36px;height:36px;border-radius:8px;background:var(--green-dim);display:flex;align-items:center;justify-content:center;margin-bottom:12px;}
.custom_book .cb-tip-icon i{color:var(--green);font-size:18px;}
.custom_book .cb-tip-title{font-size:14px;font-weight:600;color:var(--text-dark);margin-bottom:5px;}
.custom_book .cb-tip-desc{font-size:13px;color:var(--text-muted);line-height:1.6;}

.custom_book .cb-app-section{background:var(--black);margin: 32px 10% 48px;border-radius:12px;padding:40px 32px;display:flex;align-items:center;justify-content:space-between;gap:24px;position:relative;overflow:hidden;}
.custom_book .cb-app-blob{position:absolute;right:-40px;top:-40px;width:200px;height:200px;border-radius:50%;background:var(--green-dim);}
.custom_book .cb-app-text{position:relative;z-index:1;}
.custom_book .cb-app-text p{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--green);margin-bottom:8px;}
.custom_book .cb-app-text h3{font-family:var(--font-display);font-size:32px;color:#fff;line-height:1.1;margin-bottom:6px;}
.custom_book .cb-app-text span{font-size:13px;color:rgba(255,255,255,0.45);}
.custom_book .cb-app-btns{display:flex;gap:10px;flex-direction:column;position:relative;z-index:1;}
.custom_book .cb-app-btn{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.13);border-radius:8px;padding:10px 18px;cursor:pointer;}
.custom_book .cb-app-btn i{color:var(--green);font-size:20px;}
.custom_book .cb-app-btn-label{font-size:10px;color:rgba(255,255,255,0.45);letter-spacing:0.5px;}
.custom_book .cb-app-btn-name{font-size:13px;font-weight:600;color:#fff;}

.custom_book .cb-faq-section{padding:0 10% 52px;}
.custom_book .cb-faq-list{margin-top:28px;display:flex;flex-direction:column;gap:10px;}
.custom_book .cb-faq-item{background:var(--surface);border:1px solid var(--border);border-radius:10px;overflow:hidden;}
.custom_book .cb-faq-q{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;font-size:14px;font-weight:600;color:var(--text-dark);cursor:pointer;gap:12px;}
.custom_book .cb-faq-q i{color:var(--green);font-size:16px;flex-shrink:0;display:none;}
.custom_book .cb-faq-a{padding:0 18px 16px;font-size:13px;color:var(--text-mid);line-height:1.7;}

@media(max-width:600px){
  .custom_book .cb-hero h1{font-size:40px;}
  .custom_book .cb-steps-section,.custom_book .cb-tips-section,.custom_book .cb-faq-section{padding-left:16px;padding-right:16px;}
  .custom_book .cb-app-section{flex-direction:column;align-items:flex-start;margin:0 16px 40px;}
  .custom_book .cb-steps{grid-template-columns:48px 1fr;}
}