/* ---------- Design tokens ---------- */
    :root {
      --bg: #ffffff;
      --surface: #fff5ec;
      --surface-2: #faf7f2;
      --ink: #0e1430;
      --ink-soft: #4b5575;
      --muted: #5d667e;
      --line: #ece6db;
      --line-cool: #e6e9f2;
      --brand: #1d4ed8;
      --brand-dark: #1e40af;
      --accent: #c44100;
      --cta: #c44100;
      --cta-dark: #a33300;
      --success: #1f9d6e;
      --success-bg: #e6f6ec;
      --success-border: #b2ebd4;
      --shadow-sm: 0 1px 2px rgba(14, 20, 48, .04), 0 1px 3px rgba(14, 20, 48, .05);
      --shadow-md: 0 8px 24px rgba(14, 20, 48, .06), 0 2px 6px rgba(14, 20, 48, .04);
      --shadow-lg: 0 20px 50px rgba(14, 20, 48, .12);
      --radius: 14px;
      --radius-lg: 22px;
      --container: 900px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    body {
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* ---------- Header ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: saturate(140%) blur(10px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      max-width: 1180px;
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 44px;
      width: auto
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      border: 0;
      cursor: pointer;
      text-decoration: none;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn-secondary {
      background: #fff;
      color: var(--brand);
      border: 1.5px solid var(--brand)
    }

    .btn-secondary:hover {
      background: var(--brand);
      color: #fff
    }

    .btn-whatsapp {
      background: var(--success);
      color: #fff;
      box-shadow: 0 8px 20px rgba(31, 157, 110, 0.25);
    }

    .btn-whatsapp:hover {
      background: #198059;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(25, 128, 89, 0.35);
    }

    /* ---------- Main / Thank You Block ---------- */
    main {
      flex: 1;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(900px 500px at 90% -10%, rgba(255, 138, 61, 0.15), transparent 60%),
        radial-gradient(800px 500px at 0% 100%, rgba(29, 78, 216, 0.08), transparent 60%),
        linear-gradient(180deg, #fff5ec 0%, #ffffff 100%);
      display: flex;
      align-items: center;
      padding: 60px 20px;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      width: 100%;
      text-align: center;
    }

    .card {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 50px 40px;
      border: 1px solid var(--line);
      animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      opacity: 0;
      transform: translateY(20px);
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Green checkmark pulse animation */
    .success-icon-wrap {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      background: var(--success-bg);
      border: 2px solid var(--success-border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      position: relative;
    }

    .success-icon-wrap::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid var(--success);
      opacity: 0;
      animation: pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(0.95);
        opacity: 0.5;
      }
      100% {
        transform: scale(1.15);
        opacity: 0;
      }
    }

    .success-icon {
      font-size: 38px;
      color: var(--success);
      font-weight: 800;
    }

    h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -.5px;
      margin-bottom: 12px;
    }

    h1 span.username {
      color: var(--accent);
    }

    .lede {
      font-size: clamp(15px, 2.5vw, 17px);
      color: var(--ink-soft);
      max-width: 600px;
      margin: 0 auto 35px;
      line-height: 1.6;
    }

    .lede b {
      color: var(--ink);
    }

    /* What's next grid */
    .next-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 40px;
      text-align: left;
    }

    .step-card {
      background: var(--surface-2);
      border: 1px solid var(--line-cool);
      padding: 24px;
      border-radius: var(--radius);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .step-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--brand);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .step-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 6px;
      font-family: 'Poppins', sans-serif;
    }

    .step-card p {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ---------- Footer ---------- */
    footer {
      background: var(--surface-2);
      border-top: 1px solid var(--line);
      padding: 20px;
      text-align: center;
      font-size: 13px;
      color: var(--muted);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .card {
        padding: 40px 20px;
      }
      .next-steps {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .step-card {
        padding: 18px;
      }
    }

#cookieConsentBanner {
      position: fixed;
      bottom: 24px;
      right: 24px;
      max-width: 400px;
      background: rgba(14, 20, 48, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1.5px solid rgba(236, 230, 219, 0.15);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      z-index: 10000;
      color: #ffffff;
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes slideUpCookie {
      from { transform: translateY(100px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes slideDownCookie {
      from { transform: translateY(0); opacity: 1; }
      to { transform: translateY(100px); opacity: 0; }
    }
    @media (max-width: 480px) {
      #cookieConsentBanner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
        padding: 20px;
      }
    }
    .cookie-container h3 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 8px;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
    }
    .cookie-container p {
      font-size: 13px;
      color: #b4bccc;
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .cookie-container p a {
      color: #ff6a1a;
      text-decoration: underline;
      font-weight: 600;
    }
    .cookie-container p a:hover {
      color: #ff8a3d;
    }
    .cookie-buttons {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
      flex-wrap: wrap;
    }
    .cookie-btn {
      padding: 10px 16px;
      border-radius: 99px;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      border: 0;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .cookie-customize {
      background: transparent;
      color: #b4bccc;
      border: 1px solid rgba(180, 188, 204, 0.3);
    }
    .cookie-customize:hover {
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
    }
    .cookie-reject {
      background: transparent;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .cookie-reject:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    .cookie-accept {
      background: #ff6a1a;
      color: #ffffff;
    }
    .cookie-accept:hover {
      background: #e55a10;
    }
    .cookie-options {
      margin-bottom: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 12px;
    }
    .cookie-option-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 8px;
      text-align: left;
    }
    .cookie-option-item input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: #ff6a1a;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .cookie-option-text h4 {
      font-size: 12.5px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 2px;
    }
    .cookie-option-text p {
      font-size: 11px;
      color: #b4bccc;
      margin-bottom: 0;
      line-height: 1.3;
    }

/* ============ MERGED DROPDOWN & FOOTER LAYOUT STYLES ============ */
.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  padding: 24px;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  display: block;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 24px;
}

.dropdown-col {
  text-align: left;
}

.dropdown-col h4 {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 6px;
}

.dropdown-col a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft) !important;
  padding: 6px 0;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.dropdown-col a:hover {
  color: var(--brand) !important;
  transform: translateX(3px);
}

/* Responsive adjustments for dropdown on mobile */
@media (max-width: 960px) {
  .dropdown-container {
    display: block;
    width: 100%;
    text-align: center;
  }
  .dropdown-trigger {
    justify-content: center;
    width: 100%;
    padding: 10px 0;
  }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 10px 0 0 10px !important;
    min-width: 100% !important;
    background: transparent !important;
  }
  .dropdown-menu-inner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .dropdown-col h4 {
    border-bottom: 1px solid rgba(14,20,48,0.08) !important;
    color: var(--brand) !important;
    text-align: center;
  }
  .dropdown-col a {
    text-align: center;
    padding: 8px 0 !important;
    font-size: 14.5px !important;
  }
  .dropdown-col a:hover {
    transform: none !important;
  }
}





/* ============ Footer Dark SEO Megagrid ============ */
.footer-seo-megagrid {
  background: #0f172a;
  color: #f8fafc;
  padding: 60px 0;
  border-top: 1px solid #1e293b;
  text-align: left;
}
.seo-grid-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}
.seo-grid-col {
  text-align: left;
}
.seo-grid-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #334155;
  padding-bottom: 6px;
}
.seo-grid-col a {
  display: block !important;
  font-size: 11.5px !important;
  color: #94a3b8 !important;
  padding: 4px 0 !important;
  font-weight: 500;
  transition: color 0.15s;
  white-space: normal;
  line-height: 1.4;
}
.seo-grid-col a:hover {
  color: #f97316 !important;
}

/* ============ Main Footer 5-Column Grid ============ */
footer {
  background: #fffcf8;
  color: var(--ink-soft);
  padding: 50px 0 24px;
  border-top: 1px solid var(--line);
}
footer .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
}
footer h4 {
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer a {
  display: block !important;
  padding: 5px 0 !important;
  font-size: 14px !important;
  color: var(--ink-soft) !important;
}
footer a:hover {
  color: var(--brand) !important;
}

@media (max-width: 1024px) {
  .seo-grid-container {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  footer .foot-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .seo-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  footer .foot-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .seo-grid-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .seo-grid-col {
    text-align: center !important;
  }
  .seo-grid-col a {
    text-align: center !important;
  }
  footer .foot-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  footer .foot-grid div {
    text-align: center !important;
  }
  footer .foot-grid a {
    text-align: center !important;
  }
}
