@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");


      /* ============================================
   Creative Marketing — Design System
   ============================================ */

      :root {
        /* Brand */
        --orange: #f05a24;
        --orange-light: #ff7b42;
        --orange-deep: #d94a18;
        --gradient-orange: linear-gradient(135deg, #f05a24 0%, #ff7b42 100%);
        --gradient-orange-soft: linear-gradient(135deg, rgba(240, 90, 36, 0.08) 0%, rgba(255, 123, 66, 0.04) 100%);

        /* Neutrals */
        --ink: #15172a;
        --ink-2: #1f2235;
        --grey-900: #2a2e45;
        --grey-700: #4a4f63;
        --grey-500: #767b8e;
        --grey-300: #c9ccd6;
        --grey-200: #e4e6ec;
        --grey-100: #eff1f5;
        --grey-50: #f5f5f5;
        --white: #ffffff;

        /* Semantic */
        --success: #10b981;
        --warn: #f59e0b;

        /* Type */
        --font-heading: "Poppins", system-ui, -apple-system, sans-serif;
        --font-body: "Inter", system-ui, -apple-system, sans-serif;

        /* Spacing rhythm */
        --space-1: 4px;
        --space-2: 8px;
        --space-3: 12px;
        --space-4: 16px;
        --space-5: 24px;
        --space-6: 32px;
        --space-7: 48px;
        --space-8: 64px;
        --space-9: 96px;
        --space-10: 128px;

        /* Radius */
        --r-sm: 8px;
        --r-md: 12px;
        --r-lg: 16px;
        --r-xl: 20px;
        --r-2xl: 28px;
        --r-pill: 999px;

        /* Shadows */
        --shadow-sm: 0 1px 2px rgba(20, 22, 40, 0.04), 0 1px 3px rgba(20, 22, 40, 0.04);
        --shadow-md: 0 4px 12px rgba(20, 22, 40, 0.06), 0 2px 4px rgba(20, 22, 40, 0.04);
        --shadow-lg: 0 12px 32px rgba(20, 22, 40, 0.08), 0 4px 12px rgba(20, 22, 40, 0.05);
        --shadow-xl: 0 24px 60px rgba(20, 22, 40, 0.12), 0 8px 20px rgba(20, 22, 40, 0.06);
        --shadow-orange: 0 16px 40px rgba(240, 90, 36, 0.28), 0 4px 12px rgba(240, 90, 36, 0.18);

        /* Layout */
        --content-w: 1240px;
        --nav-h: 72px;
      }

      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: var(--font-body);
        color: var(--ink);
        background: var(--white);
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        font-size: 16px;
        line-height: 1.6;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: var(--font-heading);
        font-weight: 700;
        letter-spacing: -0.02em;
        margin: 0;
        line-height: 1.1;
        color: var(--ink);
      }
      h1 {
        font-size: clamp(40px, 5.6vw, 72px);
      }
      h2 {
        font-size: clamp(32px, 3.8vw, 52px);
      }
      h3 {
        font-size: clamp(22px, 2.2vw, 30px);
      }
      h4 {
        font-size: 20px;
        font-weight: 600;
      }
      p {
        margin: 0;
        color: var(--grey-700);
      }

      a {
        color: inherit;
        text-decoration: none;
      }
      button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
      }

      .container {
        max-width: var(--content-w);
        margin: 0 auto;
        padding: 0 24px;
      }

      /* ===== Buttons ===== */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        border-radius: var(--r-pill);
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 15px;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          background 0.2s ease,
          color 0.2s ease;
        white-space: nowrap;
      }
      .btn-primary {
        background: var(--gradient-orange);
        color: white;
        box-shadow: var(--shadow-orange);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow:
          0 22px 48px rgba(240, 90, 36, 0.34),
          0 6px 16px rgba(240, 90, 36, 0.22);
      }
      .btn-ghost {
        background: var(--white);
        color: var(--ink);
        border: 1px solid var(--grey-200);
      }
      .btn-ghost:hover {
        border-color: var(--ink);
        transform: translateY(-2px);
      }
      .btn-dark {
        background: var(--ink);
        color: white;
      }
      .btn-dark:hover {
        transform: translateY(-2px);
        background: var(--ink-2);
      }
      .btn-sm {
        padding: 10px 18px;
        font-size: 14px;
      }
      .btn-lg {
        padding: 18px 32px;
        font-size: 16px;
      }

      /* ===== Eyebrow / Pill ===== */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: var(--r-pill);
        background: rgba(240, 90, 36, 0.08);
        color: var(--orange);
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.02em;
      }
      .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange);
      }

      /* ===== Section ===== */
      .section {
        padding: 96px 0;
        position: relative;
      }
      .section-tight {
        padding: 72px 0;
      }
      .section-dark {
        background: var(--ink);
        color: white;
      }
      .section-dark h1,
      .section-dark h2,
      .section-dark h3 {
        color: white;
      }
      .section-dark p {
        color: rgba(255, 255, 255, 0.72);
      }
      .section-grey {
        background: var(--grey-50);
      }

      .section-head {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 56px;
      }
      .section-head h2 {
        margin: 16px 0 16px;
      }
      .section-head p {
        font-size: 18px;
      }

      /* ===== Card ===== */
      .card {
        background: white;
        border-radius: var(--r-2xl);
        padding: 32px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--grey-100);
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
      }
      .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
        border-color: var(--grey-200);
      }

      /* ===== Glass ===== */
      .glass {
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.6);
      }
      .glass-dark {
        background: rgba(20, 22, 40, 0.6);
        backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.08);
      }

      /* ===== Sticky Nav ===== */
      .nav {
        position: sticky;
        top: 0;
        z-index: 50;
        height: var(--nav-h);
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(20, 22, 40, 0.06);
        transition: box-shadow 0.2s;
      }
      .nav.scrolled {
        box-shadow: 0 4px 20px rgba(20, 22, 40, 0.05);
      }
      .nav-inner {
        height: 100%;
        max-width: var(--content-w);
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .nav-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 18px;
        color: var(--ink);
      }
      .nav-brand .mark {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .nav-links a {
        padding: 8px 14px;
        border-radius: var(--r-pill);
        font-size: 14px;
        font-weight: 500;
        color: var(--grey-700);
        transition:
          background 0.15s,
          color 0.15s;
      }
      .nav-links a:hover {
        background: var(--grey-100);
        color: var(--ink);
      }
      .nav-links a.active {
        color: var(--orange);
        background: rgba(240, 90, 36, 0.08);
      }
      .nav-cta {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      /* ===== Page mgmt ===== */
      .page {
        display: none;
        animation: pageIn 0.4s ease;
      }
      .page.active {
        display: block;
      }
      @keyframes pageIn {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ===== Hero ===== */
      .hero {
        position: relative;
        padding: 80px 0 96px;
        background: radial-gradient(1100px 540px at 92% -10%, rgba(240, 90, 36, 0.1), transparent 60%), radial-gradient(800px 400px at -10% 30%, rgba(255, 123, 66, 0.06), transparent 60%), var(--white);
        overflow: hidden;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: 64px;
        align-items: center;
      }
      @media (max-width: 980px) {
        .hero-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }
      }
      .hero h1 {
        margin-bottom: 20px;
      }
      .hero h1 .grad {
        background: var(--gradient-orange);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .hero-sub {
        font-size: 19px;
        color: var(--grey-700);
        margin-bottom: 32px;
        max-width: 560px;
        line-height: 1.55;
      }
      .hero-cta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }

      .trust-row {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
      }
      .trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: var(--grey-700);
      }
      .trust-pill svg {
        color: var(--orange);
      }

      /* ===== Stats bar ===== */
      .stats-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        background: var(--ink);
        color: white;
        border-radius: var(--r-2xl);
        padding: 32px;
        margin-top: 0;
      }
      .stat-cell {
        padding: 0 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
      .stat-cell:last-child {
        border-right: none;
      }
      .stat-num {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 40px;
        background: var(--gradient-orange);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1;
      }
      .stat-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin-top: 8px;
      }
      @media (max-width: 760px) {
        .stats-bar {
          grid-template-columns: repeat(2, 1fr);
          gap: 24px;
        }
        .stat-cell {
          border: none;
          padding: 0;
        }
      }

      /* ===== Grids ===== */
      .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      @media (max-width: 980px) {
        .grid-3,
        .grid-4 {
          grid-template-columns: repeat(2, 1fr);
        }
        .grid-2 {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 600px) {
        .grid-3,
        .grid-4 {
          grid-template-columns: 1fr;
        }
      }

      /* ===== Industry / Feature card ===== */
      .icon-tile {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: var(--gradient-orange-soft);
        color: var(--orange);
        margin-bottom: 20px;
        border: 1px solid rgba(240, 90, 36, 0.12);
      }
      .icon-tile.dark {
        background: rgba(255, 255, 255, 0.06);
        color: var(--orange-light);
        border-color: rgba(255, 255, 255, 0.08);
      }

      .feature-card h4 {
        margin-bottom: 8px;
      }
      .feature-card p {
        font-size: 14.5px;
        line-height: 1.55;
      }

      /* ===== Pricing ===== */
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: stretch;
      }
      @media (max-width: 980px) {
        .pricing-grid {
          grid-template-columns: 1fr;
          max-width: 460px;
          margin: 0 auto;
        }
      }
      .price-card {
        background: white;
        border-radius: var(--r-2xl);
        padding: 36px;
        border: 1px solid var(--grey-200);
        position: relative;
        display: flex;
        flex-direction: column;
        transition:
          transform 0.25s,
          box-shadow 0.25s;
      }
      .price-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
      }
      .price-card.popular {
        background: var(--ink);
        color: white;
        border-color: transparent;
        box-shadow: var(--shadow-xl);
      }
      .price-card.popular::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: calc(var(--r-2xl) + 2px);
        background: var(--gradient-orange);
        z-index: -1;
      }
      .price-card.popular {
        isolation: isolate;
      }
      .price-card .tag {
        display: inline-block;
        padding: 4px 12px;
        border-radius: var(--r-pill);
        background: rgba(240, 90, 36, 0.1);
        color: var(--orange);
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
      }
      .price-card.popular .tag {
        background: var(--gradient-orange);
        color: white;
      }
      .price-name {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 22px;
        margin-bottom: 8px;
      }
      .price-amount {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin: 8px 0 16px;
      }
      .price-amount .amt {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 48px;
        line-height: 1;
      }
      .price-amount .per {
        color: var(--grey-500);
        font-size: 14px;
      }
      .price-card.popular .price-amount .per {
        color: rgba(255, 255, 255, 0.6);
      }
      .price-desc {
        font-size: 14px;
        color: var(--grey-700);
        margin-bottom: 24px;
      }
      .price-card.popular .price-desc {
        color: rgba(255, 255, 255, 0.7);
      }
      .price-features {
        list-style: none;
        padding: 0;
        margin: 0 0 28px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex: 1;
      }
      .price-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14.5px;
        color: var(--grey-700);
      }
      .price-card.popular .price-features li {
        color: rgba(255, 255, 255, 0.85);
      }
      .price-features svg {
        flex-shrink: 0;
        margin-top: 3px;
        color: var(--orange);
      }

      /* ===== Testimonial ===== */
      .testimonial {
        background: white;
        border-radius: var(--r-2xl);
        padding: 32px;
        border: 1px solid var(--grey-200);
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
      }
      .testimonial p.quote {
        font-size: 17px;
        color: var(--ink);
        line-height: 1.55;
      }
      .testimonial .who {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: auto;
      }
      .testimonial .avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--gradient-orange);
        display: grid;
        place-items: center;
        color: white;
        font-weight: 700;
        font-family: var(--font-heading);
      }
      .testimonial .who-name {
        font-weight: 600;
        color: var(--ink);
        font-size: 14px;
      }
      .testimonial .who-role {
        font-size: 13px;
        color: var(--grey-500);
      }

      /* ===== CTA Banner ===== */
      .cta-banner {
        background: var(--ink);
        background-image: radial-gradient(800px 360px at 80% 20%, rgba(240, 90, 36, 0.28), transparent 60%), radial-gradient(600px 300px at 0% 100%, rgba(255, 123, 66, 0.18), transparent 60%);
        border-radius: var(--r-2xl);
        padding: 72px;
        text-align: center;
        color: white;
        overflow: hidden;
        position: relative;
      }
      .cta-banner h2 {
        color: white;
        margin-bottom: 16px;
      }
      .cta-banner p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 18px;
        max-width: 580px;
        margin: 0 auto 28px;
      }
      .cta-banner .row {
        display: inline-flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
      }
      @media (max-width: 600px) {
        .cta-banner {
          padding: 48px 28px;
        }
      }

      /* ===== Footer ===== */
      .footer {
        background: var(--ink);
        color: rgba(255, 255, 255, 0.7);
        padding: 72px 0 32px;
        margin-top: 0;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
        gap: 48px;
        margin-bottom: 56px;
      }
      @media (max-width: 900px) {
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 600px) {
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }
      }
      .footer h5 {
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 14px;
        color: white;
        margin-bottom: 16px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }
      .footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer ul a {
        font-size: 14px;
        transition: color 0.15s;
      }
      .footer ul a:hover {
        color: var(--orange-light);
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 13px;
        flex-wrap: wrap;
        gap: 16px;
      }
      .socials {
        display: flex;
        gap: 10px;
      }
      .socials a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.8);
        transition:
          background 0.2s,
          color 0.2s,
          transform 0.2s;
      }
      .socials a:hover {
        background: var(--gradient-orange);
        color: white;
        transform: translateY(-2px);
      }

      .newsletter {
        display: flex;
        gap: 8px;
        margin-top: 8px;
      }
      .newsletter input {
        flex: 1;
        padding: 12px 16px;
        border-radius: var(--r-pill);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        font-family: inherit;
        font-size: 14px;
      }
      .newsletter input::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
      .newsletter input:focus {
        outline: none;
        border-color: var(--orange);
      }
      .newsletter button {
        padding: 12px 18px;
        border-radius: var(--r-pill);
        background: var(--gradient-orange);
        color: white;
        font-weight: 600;
        font-size: 14px;
        transition: transform 0.2s;
      }
      .newsletter button:hover {
        transform: translateY(-1px);
      }

      /* ===== WhatsApp float ===== */
      .wa-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 60;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #25d366;
        color: white;
        display: grid;
        place-items: center;
        box-shadow:
          0 12px 28px rgba(37, 211, 102, 0.35),
          0 4px 10px rgba(37, 211, 102, 0.25);
        transition: transform 0.2s;
        cursor: pointer;
      }
      .wa-float:hover {
        transform: scale(1.08);
      }
      .wa-float::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(37, 211, 102, 0.4);
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(1.5);
          opacity: 0;
        }
      }

      /* ===== Reveal on scroll ===== */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }

      /* ===== Forms ===== */
      .field {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .field label {
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
      }
      .field input,
      .field select,
      .field textarea {
        padding: 14px 16px;
        border-radius: var(--r-md);
        border: 1px solid var(--grey-200);
        background: white;
        font-family: inherit;
        font-size: 15px;
        color: var(--ink);
        transition:
          border-color 0.15s,
          box-shadow 0.15s;
      }
      .field input:focus,
      .field select:focus,
      .field textarea:focus {
        outline: none;
        border-color: var(--orange);
        box-shadow: 0 0 0 4px rgba(240, 90, 36, 0.12);
      }
      .field.error input,
      .field.error select,
      .field.error textarea {
        border-color: #e5484d;
      }
      .field .err {
        color: #e5484d;
        font-size: 12px;
      }

      /* ===== FAQ ===== */
      .faq-item {
        border-bottom: 1px solid var(--grey-200);
        padding: 12px 0;
      }
      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 17px;
        color: var(--ink);
        width: 100%;
        text-align: left;
        padding: 8px 0px 8px 0px;
      }
      .faq-q .ico {
        transition: transform 0.40s;
        flex-shrink: 0;
      }
      .faq-item.open .faq-q .ico {
        transform: rotate(45deg);
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.40s ease;
        font-size: 15px;
        line-height: 1.6;
        color: var(--grey-700);
      }
      .faq-item.open .faq-a {
        max-height: 320px;
      }

      /* ===== Video card ===== */
      .video-card {
        position: relative;
        border-radius: var(--r-xl);
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: 16 / 10;
        background: var(--ink);
        color: white;
        transition:
          transform 0.25s,
          box-shadow 0.25s;
      }
      .video-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
      }
      .video-thumb {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--ink) 0%, var(--grey-900) 100%);
      }
      .video-thumb::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(240, 90, 36, 0.3), transparent 60%);
      }
      .video-overlay {
        position: absolute;
        inset: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
      }
      .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        color: var(--orange);
        display: grid;
        place-items: center;
        transition:
          transform 0.25s,
          background 0.25s;
      }
      .video-card:hover .video-play {
        transform: translate(-50%, -50%) scale(1.1);
        background: var(--gradient-orange);
        color: white;
      }
      .video-cat {
        align-self: flex-start;
        padding: 4px 10px;
        border-radius: var(--r-pill);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }
      .video-title {
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 17px;
        margin-top: 8px;
      }
      .video-meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.65);
        margin-top: 4px;
      }

      /* ===== Filter tabs ===== */
      .filter-tabs {
        display: inline-flex;
        gap: 4px;
        padding: 6px;
        background: white;
        border: 1px solid var(--grey-200);
        border-radius: var(--r-pill);
        margin: 0 auto 40px;
      }
      .filter-tab {
        padding: 10px 20px;
        border-radius: var(--r-pill);
        font-size: 14px;
        font-weight: 500;
        color: var(--grey-700);
        transition: all 0.2s;
      }
      .filter-tab.active {
        background: var(--ink);
        color: white;
      }

      /* ===== Modal ===== */
      .modal-backdrop {
        position: fixed;
        inset: 0;
        z-index: 100;
        background: rgba(20, 22, 40, 0.7);
        backdrop-filter: blur(8px);
        display: grid;
        place-items: center;
        padding: 24px;
        animation: fadeIn 0.25s ease;
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      .modal {
        background: white;
        border-radius: var(--r-2xl);
        max-width: 720px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 40px;
        position: relative;
        animation: modalIn 0.3s ease;
      }
      @keyframes modalIn {
        from {
          opacity: 0;
          transform: scale(0.96);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
      .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--grey-100);
        color: var(--ink);
        display: grid;
        place-items: center;
      }
      .modal-close:hover {
        background: var(--grey-200);
      }

      /* ===== Logo wordmark ===== */
      .brand-mark {
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }
      .brand-mark img {
        height: 36px;
        width: auto;
        display: block;
      }

      /* ===== Mobile nav ===== */
      .nav-burger {
        display: none;
      }
      @media (max-width: 900px) {
        .nav-links {
          display: none;
        }
        .nav-cta .btn-ghost {
          display: none;
        }
        .nav-burger {
          display: grid;
          place-items: center;
          width: 40px;
          height: 40px;
          border-radius: 10px;
          background: var(--grey-100);
        }
      }
      .nav-mobile {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        z-index: 49;
        background: white;
        padding: 24px;
        border-bottom: 1px solid var(--grey-200);
        display: none;
      }
      .nav-mobile.open {
        display: block;
      }
      .nav-mobile a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--ink);
        border-bottom: 1px solid var(--grey-100);
      }

      /* ===== Logo text ===== */
      .logo-text {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 17px;
        letter-spacing: -0.01em;
        display: flex;
        flex-direction: column;
        line-height: 1;
      }
      .logo-text .lt-1 {
        color: var(--orange);
      }
      .logo-text .lt-2 {
        font-size: 9px;
        font-weight: 500;
        color: var(--grey-500);
        margin-top: 3px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      /* ==========================================================
   FINAL RESPONSIVE OVERRIDE LAYER
   Added to harden the standalone HTML for desktop, tablet,
   mobile, small phones, and landscape screens.
   ========================================================== */

      html,
      body,
      #root {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }

      *,
      *::before,
      *::after {
        min-width: 0;
      }

      img,
      picture,
      video,
      canvas,
      iframe,
      svg {
        max-width: 100%;
      }

      input,
      select,
      textarea,
      button {
        max-width: 100%;
      }

      .container {
        width: min(100% - 48px, var(--content-w));
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      @media (max-width: 1180px) {
        :root {
          --content-w: 1080px;
        }

        .hero-grid {
          gap: 44px !important;
        }

        .card,
        .price-card,
        .testimonial {
          padding: 28px !important;
        }

        .cta-banner {
          padding: 60px 44px !important;
        }
      }

      @media (max-width: 1024px) {
        .hero {
          padding: 72px 0 80px !important;
        }

        .hero-grid {
          grid-template-columns: 1fr !important;
          text-align: center;
        }

        .hero-sub {
          max-width: 720px !important;
          margin-left: auto !important;
          margin-right: auto !important;
        }

        .hero-cta,
        .trust-row {
          justify-content: center !important;
        }

        .section {
          padding: 78px 0 !important;
        }

        .section-tight {
          padding: 62px 0 !important;
        }

        .pricing-grid {
          max-width: 560px !important;
        }
      }

      @media (max-width: 900px) {
        :root {
          --nav-h: 68px;
        }

        .nav-inner {
          padding-left: 18px !important;
          padding-right: 18px !important;
        }

        .nav-mobile {
          max-height: calc(100dvh - var(--nav-h));
          overflow-y: auto;
        }

        .footer-grid {
          grid-template-columns: 1fr 1fr !important;
          gap: 36px !important;
        }

        .contact-grid {
          grid-template-columns: 1fr !important;
        }

        .modal {
          max-width: min(720px, calc(100vw - 32px)) !important;
        }
      }

      @media (max-width: 768px) {
        .container {
          width: min(100% - 36px, var(--content-w));
        }

        h1 {
          font-size: clamp(34px, 10vw, 52px) !important;
        }

        h2 {
          font-size: clamp(28px, 8vw, 42px) !important;
        }

        h3 {
          font-size: clamp(21px, 6vw, 28px) !important;
        }

        .hero {
          padding: 56px 0 64px !important;
        }

        .hero-sub,
        .section-head p,
        .cta-banner p {
          font-size: 16px !important;
          line-height: 1.6 !important;
        }

        .section {
          padding: 64px 0 !important;
        }

        .section-tight {
          padding: 52px 0 !important;
        }

        .section-head {
          margin-bottom: 36px !important;
        }

        .grid-2,
        .grid-3,
        .grid-4,
        .pricing-grid {
          grid-template-columns: 1fr !important;
        }

        .stats-bar {
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
          gap: 22px !important;
          padding: 28px !important;
        }

        .stat-cell {
          border-right: 0 !important;
          padding: 0 !important;
        }

        .stat-num {
          font-size: 34px !important;
        }

        .filter-tabs {
          display: flex !important;
          width: 100% !important;
          max-width: 100% !important;
          overflow-x: auto !important;
          justify-content: flex-start !important;
          border-radius: 18px !important;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
        }

        .filter-tabs::-webkit-scrollbar {
          display: none;
        }

        .filter-tab {
          flex: 0 0 auto !important;
          white-space: nowrap !important;
          padding: 10px 16px !important;
        }

        .modal-backdrop {
          padding: 14px !important;
          align-items: start !important;
          overflow-y: auto !important;
        }

        .modal {
          width: 100% !important;
          max-height: none !important;
          padding: 28px !important;
          border-radius: 22px !important;
        }

        .modal [style*="grid-template-columns"] {
          grid-template-columns: 1fr !important;
        }

        .newsletter {
          flex-direction: column !important;
        }

        .newsletter button,
        .newsletter input {
          width: 100% !important;
        }
      }

      @media (max-width: 640px) {
        .brand-mark svg {
          width: 34px !important;
          height: 34px !important;
          flex: 0 0 auto;
        }

        .logo-text {
          font-size: 14px !important;
        }

        .logo-text .lt-2 {
          display: none !important;
        }

        .nav-cta > .btn {
          display: none !important;
        }

        .hero-cta,
        .cta-banner .row {
          flex-direction: column !important;
          align-items: stretch !important;
        }

        .hero-cta .btn,
        .cta-banner .btn,
        form .btn {
          width: 100% !important;
          justify-content: center !important;
        }

        .card,
        .price-card,
        .testimonial {
          padding: 22px !important;
          border-radius: 22px !important;
        }

        .cta-banner {
          padding: 44px 22px !important;
          border-radius: 22px !important;
        }

        .contact-grid,
        .contact-grid [style*="grid-template-columns"],
        form [style*="grid-template-columns"],
        .card [style*="grid-template-columns"] {
          grid-template-columns: 1fr !important;
        }

        .hero-dash {
          height: auto !important;
          max-width: 100% !important;
          display: flex !important;
          flex-direction: column !important;
          gap: 16px !important;
          margin: 0 auto !important;
        }

        .hero-dash .hd-card {
          position: relative !important;
          top: auto !important;
          left: auto !important;
          right: auto !important;
          bottom: auto !important;
          width: 100% !important;
          height: auto !important;
        }

        .hd-main,
        .hd-mobile,
        .hd-stat,
        .hd-toast {
          padding: 16px !important;
        }

        .hd-pipeline {
          grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }

        .hd-col {
          min-height: auto !important;
        }

        .video-play {
          width: 54px !important;
          height: 54px !important;
        }

        .wa-float {
          width: 54px !important;
          height: 54px !important;
          right: 18px !important;
          bottom: 18px !important;
        }

        .twk-panel {
          width: calc(100vw - 24px) !important;
          right: 12px !important;
          bottom: 12px !important;
          max-height: calc(100dvh - 24px) !important;
        }
      }

      @media (max-width: 520px) {
        .container {
          width: min(100% - 28px, var(--content-w));
        }

        .hero {
          padding: 44px 0 52px !important;
        }

        .section {
          padding: 52px 0 !important;
        }

        .section-tight {
          padding: 44px 0 !important;
        }

        .eyebrow {
          font-size: 12px !important;
          line-height: 1.25 !important;
          flex-wrap: wrap !important;
          justify-content: center !important;
        }

        .stats-bar {
          grid-template-columns: 1fr !important;
          padding: 24px !important;
        }

        .stat-cell {
          text-align: center !important;
        }

        .price-amount .amt {
          font-size: 40px !important;
        }

        .footer-grid {
          grid-template-columns: 1fr !important;
          gap: 28px !important;
        }

        .footer-bottom {
          flex-direction: column !important;
          align-items: flex-start !important;
        }

        .faq-q {
          font-size: 15px !important;
        }

        .modal {
          padding: 22px !important;
          border-radius: 18px !important;
        }

        .modal-close {
          top: 10px !important;
          right: 10px !important;
        }
      }

      @media (max-width: 400px) {
        .container {
          width: min(100% - 22px, var(--content-w));
        }

        .nav-inner {
          padding-left: 12px !important;
          padding-right: 12px !important;
        }

        .logo-text {
          max-width: 180px;
        }

        .btn {
          padding: 13px 18px !important;
          font-size: 14px !important;
        }

        .card,
        .price-card,
        .testimonial {
          padding: 18px !important;
        }

        .hd-pipeline {
          grid-template-columns: 1fr !important;
        }

        .filter-tab {
          padding: 9px 14px !important;
          font-size: 13px !important;
        }
      }

      @media (max-height: 520px) and (orientation: landscape) {
        .hero {
          padding-top: 36px !important;
          padding-bottom: 42px !important;
        }

        .nav-mobile {
          max-height: calc(100dvh - var(--nav-h));
          overflow-y: auto;
        }

        .modal-backdrop {
          align-items: start !important;
          overflow-y: auto !important;
        }
      }

      /* ==========================================================
   MOBILE TOPBAR + MENU OVERLAY FIX
   Keeps the top navigation locked to the viewport on mobile,
   prevents page content from bleeding through the translucent
   bar, and makes the opened mobile menu scroll independently.
   ========================================================== */
      @media (max-width: 900px) {
        body {
          padding-top: var(--nav-h) !important;
        }

        body.mobile-menu-open {
          overflow: hidden !important;
          overscroll-behavior: contain !important;
        }

        .nav {
          position: fixed !important;
          top: 0 !important;
          left: 0 !important;
          right: 0 !important;
          width: 100% !important;
          z-index: 1000 !important;
          background: var(--white) !important;
          backdrop-filter: none !important;
          -webkit-backdrop-filter: none !important;
          box-shadow: 0 4px 20px rgba(20, 22, 40, 0.08) !important;
        }

        .nav-mobile {
          position: fixed !important;
          top: var(--nav-h) !important;
          left: 0 !important;
          right: 0 !important;
          bottom: 0 !important;
          z-index: 999 !important;
          width: 100% !important;
          max-height: calc(100dvh - var(--nav-h)) !important;
          overflow-y: auto !important;
          overflow-x: hidden !important;
          background: var(--white) !important;
          box-shadow: 0 18px 34px rgba(20, 22, 40, 0.1) !important;
          overscroll-behavior: contain !important;
          -webkit-overflow-scrolling: touch;
        }

        .nav-mobile.open {
          display: block !important;
        }
      }

      /* ==========================================================
   MOBILE MENU DROPDOWN HEIGHT FIX
   The previous mobile overlay stretched from the navbar to the
   bottom of the viewport. That created a large empty white area
   after the Book demo button when the menu content was short.
   This makes the menu size to its content while still capping it
   to the viewport for smaller/landscape phones.
   ========================================================== */
      @media (max-width: 900px) {
        body.mobile-menu-open::after {
          content: "";
          position: fixed;
          top: var(--nav-h);
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 998;
          background: rgba(21, 23, 42, 0.1);
          pointer-events: none;
        }

        .nav-mobile {
          bottom: auto !important;
          height: auto !important;
          min-height: 0 !important;
          max-height: calc(100dvh - var(--nav-h) - 12px) !important;
          padding-bottom: 28px !important;
          border-radius: 0 0 22px 22px !important;
          border-bottom: 1px solid var(--grey-200) !important;
        }
      }



      /* ==========================================================
   SECTION CONTENT X-AXIS ALIGNMENT
   Gives all section/footer content the same 24px horizontal
   gutter as the header content without changing top header rules.
   ========================================================== */
      #root section .container,
      #root .footer .container {
        width: 100% !important;
        max-width: var(--content-w) !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          scroll-behavior: auto !important;
          transition-duration: 0.01ms !important;
        }
      }
    
/* ==========================================================
   Vanilla build additions
   Keeps the original design system while replacing React-only
   inline component styling with reusable classes.
   ========================================================== */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-6 { margin-bottom: 6px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.ml-auto { margin-left: auto; }
.w-full { width: 100%; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

.gap-1 { gap: 4px; }
.items-end { align-items: flex-end; }
.mt-4 { margin-top: 16px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.orange { color: var(--orange); }
.ink { color: var(--ink); }
.muted { color: var(--grey-500); }
.small { font-size: 14px; }
.xsmall { font-size: 12px; }

.page-shell { animation: pageIn 0.4s ease; }
.nav a, .nav-mobile a, [data-nav], [data-modal], [data-video], [data-case] { cursor: pointer; }
.section-hero-center { padding: 80px 0 56px; }
.section-zero-bottom { padding: 0 0 96px; }
.section-stats { padding: 0 0 64px; }
.max-780 { max-width: 780px; }
.max-820 { max-width: 820px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.brand-mark svg, .socials svg, .btn svg, .icon-tile svg, .trust-pill svg, .price-features svg, .contact-row svg { flex-shrink: 0; }

/* Hero dashboard mockup */
.hero-dash { position: relative; height: 560px; width: 100%; }
.hd-card { position: absolute; background: white; border-radius: 20px; box-shadow: 0 24px 60px rgba(20,22,40,0.14), 0 8px 20px rgba(20,22,40,0.06); border: 1px solid rgba(20,22,40,0.04); }
.hd-main { top: 20px; left: 0; width: 78%; padding: 18px; }
.hd-mobile { top: 200px; right: 0; width: 200px; height: 380px; padding: 14px; background: linear-gradient(160deg, #15172A 0%, #2A2E45 100%); color: white; }
.hd-stat { top: 380px; left: 30px; width: 220px; padding: 16px 18px; }
.hd-toast { top: 70px; right: 60px; width: 260px; padding: 14px 16px; display: flex; align-items: center; gap: 10px; animation: floaty 4s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hd-row { display: flex; align-items: center; gap: 10px; }
.hd-circle { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.hd-tabs { display: flex; gap: 4px; padding: 4px; background: #F5F5F5; border-radius: 999px; margin-top: 10px; }
.hd-tab { padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 500; color: #767B8E; }
.hd-tab.act { background: white; color: #15172A; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.hd-pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.hd-col { background: #F5F5F5; border-radius: 12px; padding: 8px; min-height: 130px; }
.hd-col-head { display: flex; justify-content: space-between; font-size: 10px; font-weight: 600; color: #4A4F63; margin-bottom: 8px; padding: 0 4px; }
.hd-deal { background: white; border-radius: 8px; padding: 8px; margin-bottom: 6px; box-shadow: 0 1px 2px rgba(20,22,40,0.04); }
.hd-deal-name { font-size: 10px; font-weight: 600; color: #15172A; }
.hd-deal-val { font-size: 9px; color: #F05A24; font-weight: 600; margin-top: 2px; }
.hd-deal-bar { height: 3px; border-radius: 2px; background: #EFF1F5; margin-top: 6px; overflow: hidden; }
.hd-deal-bar > div { height: 100%; background: linear-gradient(90deg, #F05A24, #FF7B42); }
.hd-mtitle { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: white; margin-top: 8px; }
.hd-mlabel { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.hd-msms { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 10px; margin-top: 8px; font-size: 11px; color: rgba(255,255,255,0.85); line-height: 1.4; }
.hd-msms.out { background: linear-gradient(135deg, #F05A24, #FF7B42); color: white; display: inline-block; margin-left: auto; margin-top: 6px; max-width: 80%; }
.hd-msms-time { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.hd-cal-row { display: flex; gap: 6px; margin-top: 10px; align-items: center; }
.hd-cal-dot { width: 6px; height: 6px; border-radius: 50%; }
.hd-cal-text { font-size: 10px; color: rgba(255,255,255,0.85); }
.hd-stat-label { font-size: 11px; color: #767B8E; }
.hd-stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: #15172A; margin-top: 2px; }
.hd-stat-trend { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 999px; background: rgba(16,185,129,0.12); color: #10B981; font-size: 11px; font-weight: 600; margin-top: 4px; }
.hd-spark { display: flex; align-items: flex-end; gap: 3px; height: 24px; margin-top: 8px; }
.hd-spark > div { flex: 1; background: linear-gradient(180deg, #F05A24, #FF7B42); border-radius: 2px; }
.hd-toast-ico { width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(135deg,#F05A24,#FF7B42); display: grid; place-items: center; color: white; flex-shrink: 0; }
.hd-toast-t { font-size: 12px; font-weight: 600; color: #15172A; }
.hd-toast-s { font-size: 11px; color: #767B8E; margin-top: 1px; }
@media (max-width: 980px) { .hero-dash { height: 520px; max-width: 540px; margin: 0 auto; } }
@media (max-width: 540px) { .hd-main { width: 92%; } .hd-mobile { width: 160px; height: 320px; top: 240px; } .hd-stat { width: 180px; top: 420px; left: 10px; } .hd-toast { width: 220px; right: 10px; } }

/* Reusable mini visuals/cards */
.feature-mini { background: linear-gradient(135deg,#F5F5F5 0%,#fff 100%); border: 1px solid var(--grey-200); border-radius: 14px; padding: 14px; height: 120px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 82px; width: 100%; }
.bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg,rgba(240,90,36,0.8),rgba(255,123,66,0.6)); }
.check-list { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.check-list li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--grey-700); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: flex-start; }
.contact-row { display: flex; align-items: center; gap: 12px; }
.contact-row .contact-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--gradient-orange-soft); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.map-card { height: 200px; background: linear-gradient(135deg,#EFF1F5,#F5F5F5); position: relative; overflow: hidden; }
.case-visual { height: 200px; background: linear-gradient(135deg,#15172A 0%,#2A2E45 100%); position: relative; overflow: hidden; }
.case-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(240,90,36,0.35), transparent 60%); }
.case-tag { position: absolute; top: 16px; left: 16px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: white; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.case-stats { display: grid; gap: 8px; }
.case-stat { text-align: center; padding: 10px 8px; border-radius: 10px; background: var(--grey-50); }
.case-stat strong { display: block; font-family: var(--font-heading); font-size: 16px; color: var(--orange); }
.case-stat span { display: block; font-size: 11px; color: var(--grey-500); margin-top: 2px; }
.video-card-wrap { cursor: pointer; }
.form-success { text-align: center; padding: 24px 0; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(16,185,129,0.12); color: #10B981; display: grid; place-items: center; margin: 0 auto 20px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }


/* Static multi-page filter support */
.is-filter-hidden { display: none !important; }

/* Mobile overlay CTA button fix */
.nav-mobile a.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  border-bottom: 0 !important;
}

.nav-mobile a.btn-primary,
.nav-mobile a.btn-primary:visited,
.nav-mobile a.btn-primary:hover {
  color: #ffffff !important;
}
