    :root {
      --ink: #0D0F1A;
      --ink-soft: #2C2F3F;
      --muted: #7A7F96;
      --bg: #F5F4F0;
      --card: #FFFFFF;
      --lime: #C6F135;
      --lime-dark: #A8D41A;
      --sky: #3B82F6;
      --sky-dark: #2563EB;
      --rose: #F43F5E;
      --amber: #F59E0B;
      --surface: #EEECEA;
      --radius-sm: 8px;
      --radius: 16px;
      --radius-lg: 24px;
      --radius-xl: 40px;
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; scroll-padding-top: 80px; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── HEADER ── */
    header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(245,244,240,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--ink);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .logo-text {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--ink);
      line-height: 1;
    }

    .logo-text span {
      color: var(--sky);
    }

    .header-btns {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 11px 22px;
      border-radius: 100px;
      cursor: pointer;
      border: none;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-ink {
      background: var(--ink);
      color: #fff;
    }
    .btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

    .btn-lime {
      background: var(--lime);
      color: var(--ink);
    }
    .btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198,241,53,0.4); }

    .btn-sky {
      background: var(--sky);
      color: #fff;
    }
    .btn-sky:hover { background: var(--sky-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.35); }

    .btn-green {
      background: #25D366;
      color: #fff;
    }
    .btn-green:hover { background: #1aad53; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 2px solid var(--ink);
    }
    .btn-ghost:hover { background: var(--ink); color: #fff; }

    .btn-lg { padding: 15px 32px; font-size: 1.05rem; }

    /* ── HERO ── */
    .hero {
      padding: 60px 0 0;
      overflow: hidden;
      position: relative;
    }

    .hero-bg-blob {
      position: absolute;
      top: -100px;
      right: -180px;
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-bg-blob2 {
      position: absolute;
      bottom: 60px;
      left: -100px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(198,241,53,0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--lime);
      color: var(--ink);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .hero-tag i { font-size: 0.75rem; }

    .hero h1 {
      font-family: var(--font-display);
      font-size: 45px;
      font-weight: 800;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .hero h1 .highlight {
      position: relative;
      display: inline-block;
      color: var(--sky);
    }

    .hero h1 .highlight::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--lime);
      border-radius: 2px;
      z-index: -1;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--ink-soft);
    }

    .trust-pill i {
      color: var(--sky);
      font-size: 0.9rem;
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
    }

    .hero-card-stack {
      position: relative;
      height: 420px;
    }

    .hcard {
      position: absolute;
      background: var(--card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 24px;
      transition: transform 0.4s ease;
    }

    .hcard-main {
      width: 90%;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .hcard-back1 {
      width: 80%;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%) rotate(-4deg);
      z-index: 2;
      background: #E8F4FD;
    }

    .hcard-back2 {
      width: 80%;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%) rotate(3deg);
      z-index: 1;
      background: #FEFCE8;
    }

    .hcard-visual {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 5rem;
      overflow: hidden;
      position: relative;
    }

    .hcard-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hcard-label {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .hcard-sub {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .hcard-badge {
      position: absolute;
      top: -12px;
      right: 20px;
      background: var(--lime);
      color: var(--ink);
      font-weight: 700;
      font-size: 0.75rem;
      padding: 6px 14px;
      border-radius: 100px;
      box-shadow: 0 4px 12px rgba(198,241,53,0.5);
    }

    /* Floating stat chips */
    .stat-chip {
      position: absolute;
      background: var(--card);
      border-radius: var(--radius);
      padding: 12px 18px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 10;
      animation: floatChip 3s ease-in-out infinite;
    }

    .stat-chip.chip1 { top: 20px; left: -20px; animation-delay: 0s; }
    .stat-chip.chip2 { top: 180px; right: -10px; animation-delay: 1.5s; }
    @media (max-width: 768px) {
    .stat-chip.chip2 { top: 120px;  }
    }

    @keyframes floatChip {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .chip-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .chip-icon.green { background: #D1FAE5; color: #059669; }
    .chip-icon.blue { background: #DBEAFE; color: var(--sky); }

    .chip-label { font-size: 0.7rem; color: var(--muted); line-height: 1; }
    .chip-val { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--ink); }

    /* ── STRIP ── */
    .trust-strip {
      background: var(--ink);
      padding: 18px 0;
      margin-top: 60px;
      overflow: hidden;
    }

    .strip-scroll {
      display: flex;
      gap: 48px;
      animation: scrollLeft 22s linear infinite;
      width: max-content;
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.7);
      font-weight: 500;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .strip-item i { color: var(--lime); }

    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── SERVICES ── */
    .services { padding: 80px 0; }

    .sec-eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 12px;
    }

    .sec-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.15;
    }

    .sec-desc {
      color: var(--muted);
      font-size: 1rem;
      max-width: 520px;
      margin-bottom: 48px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .scard {
      background: var(--card);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border: 1.5px solid transparent;
    }

    .scard:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--sky);
    }

    .scard::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 80px;
      height: 80px;
      background: var(--surface);
      border-radius: 0 var(--radius-lg) 0 80px;
    }

    .scard-icon {
      width: 56px;
      height: 56px;
      background: var(--ink);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .scard h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
    }

    .scard p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── HOW IT WORKS ── */
    .how { padding: 80px 0; background: var(--ink); color: #fff; }

    .how .sec-eyebrow { color: var(--lime); }
    .how .sec-title { color: #fff; }
    .how .sec-desc { color: rgba(255,255,255,0.55); }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }

    .steps-row::before {
      content: '';
      position: absolute;
      top: 30px;
      left: calc(12.5% + 4px);
      right: calc(12.5% + 4px);
      height: 2px;
      background: rgba(255,255,255,0.1);
    }

    .step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 60px;
      height: 60px;
      background: var(--lime);
      color: var(--ink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 800;
      margin: 0 auto 20px;
    }

    .step h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
    }

    /* ── WHY US ── */
    .whyus { padding: 80px 0; }

    .whyus-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .whyus-visual {
      position: relative;
    }

    .whyus-img-wrap {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/5;
      max-height: 480px;
    }

    .whyus-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .whyus-img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
    }

    .whyus-badge-float {
      position: absolute;
      bottom: 30px;
      right: -20px;
      background: var(--lime);
      border-radius: var(--radius);
      padding: 18px 22px;
      box-shadow: var(--shadow-lg);
      text-align: center;
    }

    .whyus-badge-float .val {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: var(--ink);
      line-height: 1;
    }

    .whyus-badge-float .lbl {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--ink-soft);
      margin-top: 4px;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 36px;
    }

    .feat-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .feat-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .feat-icon.a { background: #DBEAFE; color: var(--sky); }
    .feat-icon.b { background: #D1FAE5; color: #059669; }
    .feat-icon.c { background: #FEF3C7; color: #D97706; }
    .feat-icon.d { background: #FCE7F3; color: #DB2777; }

    .feat-text h4 {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .feat-text p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── COVERAGE ── */
    .coverage { padding: 80px 0; background: var(--surface); }

    .cities-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 36px;
    }

    .city-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--card);
      border: 1.5px solid rgba(0,0,0,0.07);
      border-radius: 100px;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--ink);
      transition: all 0.2s ease;
    }

    .city-chip i { color: var(--sky); font-size: 0.8rem; }

    .city-chip:hover {
      background: var(--sky);
      color: #fff;
      border-color: var(--sky);
      transform: translateY(-2px);
    }

    .city-chip:hover i { color: #fff; }

    /* ── PRICING ── */
    .pricing { padding: 80px 0; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 36px;
    }

    .price-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      padding: 30px 24px;
      text-align: center;
      box-shadow: var(--shadow);
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .price-card:hover {
      border-color: var(--lime);
      transform: translateY(-4px);
    }

    .price-card-icon {
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .price-card h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .price-card p {
      font-size: 0.82rem;
      color: var(--muted);
    }

    /* ── CTA BAND ── */
    .cta-band {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--sky) 0%, #1D4ED8 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.06);
      border-radius: 50%;
    }

    .cta-band::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -40px;
      width: 240px;
      height: 240px;
      background: rgba(255,255,255,0.04);
      border-radius: 50%;
    }

    .cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }

    .cta-inner p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      margin-bottom: 36px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

    /* ── CONTACT FORM ── */
    .contact { padding: 80px 0; background: var(--surface); }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
    }

    .contact-left h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 24px;
    }

    .contact-method {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
    }

    .cm-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .cm-icon.call { background: #DBEAFE; color: var(--sky); }
    .cm-icon.wa { background: #D1FAE5; color: #059669; }
    .cm-icon.loc { background: #FEF3C7; color: #D97706; }

    .cm-text strong {
      display: block;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--ink);
      margin-bottom: 3px;
    }

    .cm-text a, .cm-text span {
      font-size: 0.88rem;
      color: var(--muted);
    }

    .cm-text a:hover { color: var(--sky); }

    .open-hours {
      background: var(--ink);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 22px 24px;
      margin-top: 32px;
    }

    .open-hours h4 {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--lime);
    }

    .open-hours p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
    }

    .form-card {
      background: var(--card);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow-lg);
    }

    .form-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .form-card .sub {
      font-size: 0.88rem;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .fg {
      margin-bottom: 18px;
    }

    .fg label {
      display: block;
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 7px;
    }

    .fg input, .fg select, .fg textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #E2E8F0;
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: var(--ink);
      background: var(--bg);
      outline: none;
      transition: border-color 0.2s ease;
    }

    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--sky);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
    }

    .fg textarea { resize: vertical; min-height: 90px; }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .check-wrap {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 22px;
    }

    .check-wrap input[type="checkbox"] { margin-top: 3px; accent-color: var(--sky); }

    .check-wrap label {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .privacy-note {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #E2E8F0;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      color: #fff;
      padding: 48px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 48px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 24px;
    }

    .footer-logo { margin-bottom: 16px; }

    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }

    .footer-about p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      max-width: 400px;
    }

    .footer-contact h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .footer-contact p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
    }

    .footer-contact a { color: rgba(255,255,255,0.55); }
    .footer-contact a:hover { color: var(--lime); }

    .footer-bottom {
      text-align: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
    }

    /* ── FLOATING BUTTONS ── */
    .float-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      z-index: 999;
      transition: all 0.3s ease;
    }

    .float-wa:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

    .float-call {
      position: fixed;
      bottom: 28px;
      left: 28px;
      width: 58px;
      height: 58px;
      background: var(--sky);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #fff;
      box-shadow: 0 6px 24px rgba(59,130,246,0.45);
      z-index: 999;
      transition: all 0.3s ease;
    }

    .float-call:hover { transform: scale(1.12); }

    .pulse-ring {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 3px solid #25D366;
      animation: pulse 2s ease-out infinite;
    }

    .pulse-ring-call {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 3px solid var(--sky);
      animation: pulse 2s ease-out infinite;
      animation-delay: 1s;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.6); opacity: 0; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-trust { justify-content: center; }
      .hero-ctas { justify-content: center; }
      .hero-card-stack { max-width: 400px; margin: 0 auto; }
      .stat-chip.chip1 { left: 10px; }
      .stat-chip.chip2 { right: 10px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-row { grid-template-columns: repeat(2, 1fr); }
      .steps-row::before { display: none; }
      .whyus-grid { grid-template-columns: 1fr; }
      .whyus-visual { display: none; }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-wrap { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .steps-row { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      header .btn { padding: 9px 14px; font-size: 0.82rem; }
      .form-row-2 { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .hero-card-stack { height: 340px; }
      .hcard-visual { height: 140px; }
      
    }

    @media (max-width: 480px) {
      .hero { padding-top: 40px; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn { width: 100%; }
      .steps-row { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .cta-btns { flex-direction: column; align-items: stretch; }
      .cta-btns .btn { width: 100%; }
      .form-card { padding: 24px 18px; }
      .wa-hd-btn{
        display:none !important;
      }
    }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: none; }
 