    :root {
      --bg: #f4f7fb;
      --paper: #ffffff;
      --ink: #0f172a;
      --muted: #334155;
      --line: #d7e2ef;
      --flag-black: #121212;
      --flag-red: #e10613;
      --flag-gold: #ffca28;
      --hot-red: #e10613;
      --hot-orange: #ff5a36;
      --hot-yellow: #ffd43b;
      --cta-blue: #0b2d50;
      --cta-blue-dark: #07213a;
      --green: #0f4f3f;
      --green-soft: #e4f4ef;
      --shadow: 0 22px 48px rgba(11, 45, 80, 0.16);
      --radius-xl: 24px;
      --radius-lg: 16px;
      --radius-sm: 10px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: "Bricolage Grotesque", sans-serif;
      color: var(--ink);
      overflow-x: hidden;
      background:
        radial-gradient(circle at 8% 10%, rgba(255, 212, 59, 0.2) 0%, rgba(255, 212, 59, 0) 30%),
        radial-gradient(circle at 90% 6%, rgba(225, 6, 19, 0.12) 0%, rgba(225, 6, 19, 0) 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 58%, #e6eef8 100%);
      line-height: 1.45;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1160px, 92%);
      margin: 0 auto;
    }

    .section {
      padding: 3.1rem 0;
    }

    .section-head {
      display: flex;
      gap: 1rem;
      align-items: end;
      justify-content: space-between;
      margin-bottom: 1.2rem;
    }

    .section-head h2 {
      font-family: "DM Serif Display", serif;
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      line-height: 1.1;
    }

    .section-head p {
      max-width: 54ch;
      color: var(--muted);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 120;
      border-bottom: 1px solid rgba(11, 45, 80, 0.14);
      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, 0.95);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.7rem 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      color: var(--ink);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .brand img {
      width: 68px;
      height: auto;
      border-radius: 0;
      object-fit: contain;
      border: none;
      background: transparent;
      padding: 0;
    }

    .brand strong {
      display: block;
      font-size: 1rem;
      line-height: 1;
    }

    .brand span {
      font-size: 0.74rem;
      color: var(--muted);
      line-height: 1;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav a {
      text-decoration: none;
      font-weight: 600;
      color: #1e293b;
      font-size: 0.9rem;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.75rem 1.02rem;
      font-size: 0.88rem;
      font-weight: 700;
      border: none;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      font-family: inherit;
      white-space: nowrap;
    }

    .pill:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

    .pill-primary {
      background: linear-gradient(130deg, var(--hot-red), #d30f2f 45%, var(--hot-orange));
      color: #fff;
    }

    .pill-dark {
      background: linear-gradient(130deg, var(--cta-blue), #164b7b);
      color: #fff;
    }

    .pill-soft {
      background: #fff5cf;
      color: #0f2c4f;
      border: 1px solid #f1cb49;
    }

    .flag-bar {
      height: 6px;
      background: linear-gradient(90deg, var(--flag-black) 0 33.3%, var(--flag-red) 33.3% 66.6%, var(--flag-gold) 66.6% 100%);
    }

    .hero {
      padding: 2.3rem 0 1.6rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.98fr;
      gap: 1rem;
      align-items: start;
    }

    .hero-copy {
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
      border: 1px solid #cfdeee;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: 1.7rem;
      position: relative;
      overflow: hidden;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      inset: auto -60px -80px auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 45, 80, 0.12) 0%, rgba(11, 45, 80, 0) 70%);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: linear-gradient(130deg, var(--cta-blue), #1e4b77);
      color: #ffffff !important;
      font-weight: 800;
      font-size: 0.88rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border-radius: 999px;
      padding: 0.44rem 0.88rem;
      margin-bottom: 0.75rem;
      line-height: 1.2;
      border: 1px solid rgba(255, 255, 255, 0.35);
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
      box-shadow: 0 8px 16px rgba(225, 6, 19, 0.28);
    }

    .hero h1 {
      font-family: "DM Serif Display", serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.04;
      margin-bottom: 0.8rem;
    }

    .hero h1 span {
      color: var(--flag-red);
      font-style: italic;
    }

    .hero-copy > p {
      color: var(--muted);
      font-size: 1.01rem;
      max-width: 62ch;
      margin-bottom: 1rem;
    }

    .hero-media {
      margin-top: 1rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.14);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    }

    .hero-media img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.1rem;
    }

    .chip {
      border: 1px solid #cfdeee;
      background: #f8fbff;
      border-radius: 999px;
      padding: 0.38rem 0.7rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: #1f2937;
    }

    .hero-actions {
      display: flex;
      gap: 0.55rem;
      flex-wrap: wrap;
      margin-bottom: 1.1rem;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.6rem;
    }

    .stat {
      background: #f6faff;
      border: 1px dashed #bfd0e3;
      border-radius: 12px;
      padding: 0.75rem;
    }

    .stat strong {
      display: block;
      font-size: 1.1rem;
      color: #111;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .stat span {
      display: block;
      color: var(--muted);
      font-size: 0.76rem;
    }

    .hero-form {
      background: var(--paper);
      border: 1px solid #bfd0e3;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: 1.15rem;
      position: relative;
      overflow: hidden;
    }

    .hero-form-slot {
      display: none;
    }

    .hero-form::before {
      content: "";
      position: absolute;
      inset: -30% -15% auto;
      height: 220px;
      background: linear-gradient(180deg, rgba(11, 45, 80, 0.16), rgba(11, 45, 80, 0));
      pointer-events: none;
    }

    .hero-form h2 {
      font-family: "DM Serif Display", serif;
      font-size: 1.8rem;
      margin-bottom: 0.4rem;
      position: relative;
      z-index: 1;
    }

    .hero-form > p {
      color: var(--muted);
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 1;
    }

    .timer {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.4rem;
      position: relative;
      z-index: 1;
      margin-bottom: 0.85rem;
    }

    .timer-box {
      background: linear-gradient(140deg, var(--cta-blue-dark), var(--cta-blue) 52%, #1e4b77);
      color: #fff;
      border-radius: 10px;
      padding: 0.46rem 0.2rem;
      text-align: center;
      box-shadow: 0 8px 16px rgba(11, 45, 80, 0.28);
    }

    .timer-box strong {
      display: block;
      font-size: 1.05rem;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .timer-box span {
      font-size: 0.66rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.8;
    }

    .lead-form {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 0.48rem;
    }

    .phone-row {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 0.5rem;
    }

    .label {
      font-size: 0.81rem;
      color: #1f2937;
      font-weight: 700;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      width: 100%;
      border: 1px solid #c9d8e8;
      border-radius: var(--radius-sm);
      background: #fff;
      padding: 0.64rem 0.72rem;
      font: inherit;
      color: var(--ink);
      font-size: 0.92rem;
    }

    .lead-form textarea {
      min-height: 68px;
      resize: vertical;
    }

    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
      outline: 2px solid rgba(11, 45, 80, 0.24);
      border-color: #1e4b77;
    }

    .form-note {
      color: #475569;
      font-size: 0.74rem;
      line-height: 1.4;
    }

    .form-success {
      display: none;
      background: var(--green-soft);
      color: var(--green);
      border: 1px solid rgba(15, 79, 63, 0.2);
      border-radius: var(--radius-sm);
      padding: 0.55rem 0.65rem;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .quick-strip {
      background: linear-gradient(95deg, var(--cta-blue-dark), var(--cta-blue) 52%, #1e4b77);
      color: #fff;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .quick-strip .container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem 1.2rem;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 0;
      font-size: 0.86rem;
    }

    .quick-strip strong {
      color: var(--hot-yellow);
    }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .adv-card {
      background: #fff;
      border: 1px solid #d7e2ef;
      border-radius: var(--radius-lg);
      padding: 0.95rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .adv-card h3 {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      color: #1f1b18;
    }

    .adv-card p {
      font-size: 0.86rem;
      color: var(--muted);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 0.85rem;
    }

    .photo-card,
    .content-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    }

    .photo-card img {
      width: 100%;
      height: 100%;
      min-height: 280px;
      object-fit: cover;
    }

    .content-card {
      padding: 1.2rem;
    }

    .point-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .point {
      background: #f7fbff;
      border: 1px solid #d7e2ef;
      border-radius: 12px;
      padding: 0.75rem;
    }

    .point h3 {
      font-size: 0.98rem;
      margin-bottom: 0.24rem;
    }

    .point p {
      font-size: 0.84rem;
      color: var(--muted);
    }

    .levels {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .level {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid #d7e2ef;
      background: #fff;
    }

    .level-head {
      padding: 0.65rem 0.75rem;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .level:nth-child(1) .level-head { background: #0b2d50; }
    .level:nth-child(2) .level-head { background: #d91522; }
    .level:nth-child(3) .level-head { background: #ffca28; color: #1b2433; }
    .level:nth-child(4) .level-head { background: #145085; }
    .level:nth-child(5) .level-head { background: #0f4f3f; }

    .level-body {
      padding: 0.85rem 0.75rem;
    }

    .level-body p {
      color: var(--muted);
      font-size: 0.86rem;
      margin-bottom: 0.55rem;
      min-height: 74px;
    }

    .badge {
      display: inline-flex;
      border: 1px solid #c9d8e8;
      border-radius: 999px;
      background: #eef5fd;
      padding: 0.3rem 0.62rem;
      font-size: 0.76rem;
      font-weight: 700;
      color: #0f2c4f;
    }

    .benefit-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }

    .bullet-card {
      border: 1px solid #d7e2ef;
      border-radius: var(--radius-lg);
      background: #fff;
      padding: 1rem;
    }

    .branch-scroller {
      display: flex;
      gap: 0.75rem;
      overflow-x: auto;
      padding: 0.15rem 0.15rem 0.65rem;
      scroll-snap-type: x mandatory;
      margin-bottom: 0.45rem;
    }

    .branch-scroller::-webkit-scrollbar {
      height: 8px;
    }

    .branch-scroller::-webkit-scrollbar-thumb {
      background: linear-gradient(90deg, #0b2d50, #e10613);
      border-radius: 999px;
    }

    .branch-scroller::-webkit-scrollbar-track {
      background: #dce7f3;
      border-radius: 999px;
    }

    .branch-card {
      min-width: 210px;
      border: 1px solid #d7e2ef;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      scroll-snap-align: start;
      flex-shrink: 0;
      box-shadow: 0 8px 18px rgba(11, 45, 80, 0.12);
    }

    .branch-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }

    .branch-card figcaption {
      padding: 0.52rem 0.62rem;
      font-size: 0.79rem;
      color: #1f2937;
      font-weight: 700;
    }

    .bullet-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.55rem;
    }

    .bullet-list {
      list-style: none;
      display: grid;
      gap: 0.45rem;
    }

    .bullet-list li {
      position: relative;
      padding-left: 1.12rem;
      font-size: 0.9rem;
      color: #3f362d;
    }

    .bullet-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45rem;
      width: 0.52rem;
      height: 0.52rem;
      border-radius: 50%;
      background: var(--flag-red);
      box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.15);
    }

    .city-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.55rem;
      margin-top: 1rem;
    }

    .city {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #ffffff, #f2f7ff);
      border: 1px solid #c7d6e8;
      border-radius: 999px;
      text-align: center;
      min-height: 38px;
      padding: 0.48rem 0.7rem;
      font-size: 0.86rem;
      color: #0b2d50 !important;
      -webkit-text-fill-color: #0b2d50;
      font-weight: 700;
      line-height: 1.2;
      text-shadow: 0 0 0 #0b2d50;
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .testimonial {
      background: #fff;
      border: 1px solid #d7e2ef;
      border-radius: var(--radius-lg);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .stars {
      color: #c78400;
      letter-spacing: 0.12em;
      font-size: 0.78rem;
    }

    .testimonial p {
      color: #1f2937;
      font-size: 0.9rem;
      flex: 1;
    }

    .testimonial .who {
      border-top: 1px dashed #d9e4f0;
      padding-top: 0.55rem;
      font-size: 0.82rem;
      color: #5a6b80;
    }

    .faq-list {
      display: grid;
      gap: 0.6rem;
    }

    .faq {
      background: #fff;
      border: 1px solid #d7e2ef;
      border-radius: 14px;
      overflow: hidden;
    }

    .faq button {
      width: 100%;
      border: none;
      background: #fff;
      font: inherit;
      font-size: 0.95rem;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
      padding: 0.9rem 1rem;
      display: flex;
      justify-content: space-between;
      gap: 0.7rem;
      color: #111827;
    }

    .faq .icon {
      color: var(--flag-red);
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1;
      transition: transform 0.2s ease;
    }

    .faq .answer {
      display: none;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
      padding: 0 1rem 0.9rem;
    }

    .faq.active .answer {
      display: block;
    }

    .faq.active .icon {
      transform: rotate(45deg);
    }

    .final-cta .wrap {
      background: linear-gradient(125deg, var(--cta-blue-dark) 0%, var(--cta-blue) 58%, #d91522 100%);
      color: #f8fbff;
      border-radius: var(--radius-xl);
      padding: 1.5rem;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1rem;
      box-shadow: var(--shadow);
    }

    .final-cta h2 {
      font-family: "DM Serif Display", serif;
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      margin-bottom: 0.55rem;
    }

    .final-cta p {
      color: rgba(248, 251, 255, 0.92);
      max-width: 54ch;
      margin-bottom: 0.9rem;
    }

    .final-cta .lead-form input,
    .final-cta .lead-form select {
      border: 1px solid rgba(255, 255, 255, 0.9);
      background: #ffffff;
      color: #0f172a;
    }

    .final-cta .label {
      color: #f8fbff;
      font-weight: 700;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
    }

    .final-cta .lead-form input::placeholder {
      color: #64748b;
    }

    .final-cta .lead-form select option {
      color: #0f172a;
      background: #ffffff;
    }

    .final-cta .lead-form input:focus,
    .final-cta .lead-form select:focus {
      outline: 2px solid rgba(255, 212, 59, 0.55);
      border-color: #ffd43b;
    }

    .final-cta .form-success {
      background: rgba(255, 255, 255, 0.96);
      color: #0b2d50;
      border-color: rgba(255, 255, 255, 0.98);
    }

    .footer {
      border-top: 1px solid var(--line);
      padding: 1.2rem 0 4.8rem;
      color: #334155;
      font-size: 0.84rem;
      background: #edf3fb;
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem 1.15rem;
      justify-content: space-between;
      align-items: center;
    }

    .footer-branches {
      margin-top: 0.95rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .footer-branch {
      background: #ffffff;
      border: 1px solid #d7e2ef;
      border-radius: 12px;
      padding: 0.75rem;
      box-shadow: 0 8px 16px rgba(11, 45, 80, 0.08);
    }

    .footer-branch h4 {
      font-size: 1rem;
      color: #0b2d50;
      margin-bottom: 0.35rem;
    }

    .footer-branch p {
      color: #334155;
      line-height: 1.45;
      margin-bottom: 0.3rem;
      font-size: 0.84rem;
    }

    .footer-branch p:last-child {
      margin-bottom: 0;
      font-weight: 700;
      color: #0f172a;
    }

    .sticky-mobile {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100vw;
      max-width: 100vw;
      z-index: 120;
      display: none;
      background: rgba(255, 255, 255, 0.98);
      border-top: 1px solid rgba(11, 45, 80, 0.2);
      padding: 0.55rem max(0.85rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-left));
      backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .sticky-mobile .pill {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      min-height: 46px;
      text-align: center;
      justify-content: center;
      padding-inline: 1rem;
      line-height: 1.1;
      white-space: nowrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 82px;
      z-index: 130;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      border-radius: 999px;
      padding: 0.62rem 0.78rem;
      text-decoration: none;
      font-size: 0.84rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(180deg, #2bc34d, #1e9d3b);
      box-shadow: 0 16px 30px rgba(19, 102, 39, 0.38);
      animation: pulse 1.8s ease infinite;
    }

    .whatsapp-float svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
    }

    @keyframes pulse {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-3px);
      }
      100% {
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .why-grid,
      .final-cta .wrap {
        grid-template-columns: 1fr;
      }

      #heroFormMobileSlot {
        display: block;
        margin: 0.95rem 0 1rem;
      }

      .adv-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

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

      .footer-branches {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .city-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .benefit-wrap,
      .testimonials,
      .point-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .section-head {
        flex-direction: column;
        align-items: start;
      }
    }

    @media (max-width: 760px) {
      .nav,
      .header-cta .pill-soft {
        display: none;
      }

      .hero {
        padding-top: 1.4rem;
      }

      .brand img {
        width: 62px;
      }

      .eyebrow {
        font-size: 0.84rem;
        padding: 0.42rem 0.8rem;
      }

      .hero-copy,
      .hero-form,
      .content-card,
      .final-cta .wrap {
        padding: 1rem;
      }

      #apply {
        display: flex;
        flex-direction: column;
      }

      #apply .lead-form {
        order: 1;
      }

      #apply .timer {
        order: 2;
        margin-top: 0.7rem;
      }

      #apply > .form-note {
        order: 3;
      }

      .adv-grid,
      .levels,
      .benefit-wrap,
      .testimonials,
      .point-grid,
      .city-grid,
      .timer {
        grid-template-columns: 1fr;
      }

      .phone-row {
        grid-template-columns: 104px 1fr;
      }

      .footer-branches {
        grid-template-columns: 1fr;
      }

      .city {
        justify-content: flex-start;
        padding-left: 0.95rem;
      }

      .quick-strip .container {
        font-size: 0.8rem;
      }

      .whatsapp-float {
        right: 14px;
        bottom: 88px;
      }

      .sticky-mobile {
        display: flex;
      }

      .final-cta .hero-actions {
        width: 100%;
      }

      .final-cta .hero-actions .pill {
        width: 100%;
      }
    }
