:root {
      --primary: #007cb5;
      --primary-dark: #005a8a;
      --primary-light: #00a8f0;
      --text-dark: #0f172a;
      --text-medium: #475569;
      --text-light: #64748b;
      --bg-primary: #ffffff;
      --bg-secondary: #f8fafc;
      --border: #e2e8f0;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    }

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

    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text-dark);
      min-height: 100vh;
      line-height: 1.6;
      background: var(--bg-secondary);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── HEADER ── */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid #e2e8f0;
    }
    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo-img { height: 55px; transition: all 0.3s ease; }
    @media (max-width: 600px) {
      .logo-img { max-height: 40px; }
    }
    .nav-buttons { display: flex; align-items: center; gap: 32px; }
    .nav-button {
      font-family: 'Outfit', sans-serif;
      font-size: 15px; font-weight: 600;
      color: #475569; text-decoration: none;
      position: relative; padding: 8px 0;
      transition: color 0.3s ease;
    }
    .nav-button::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px;
      background: #007cb5;
      transition: width 0.3s ease;
    }
    .nav-button:hover { color: #007cb5; }
    .nav-button:hover::after { width: 100%; }
    .nav-button.active { color: #007cb5; }
    .nav-button.active::after { width: 100%; }
    .burger-menu {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      background: transparent;
      border: none;
      z-index: 101;
    }
    .burger-menu span {
      width: 28px; height: 3px;
      background: #007cb5;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 99;
      background: #fff;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.76,0,.24,1);
      overflow-y: auto;
      color: #007cb5;
    }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu-content {
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      gap: 4px; flex: 1; padding: 40px;
    }
    .mobile-menu .nav-button {
      font-size: 24px; font-weight: 700;
      padding: 14px 32px; border-radius: 12px;
      width: 100%; text-align: center;
    }
    .mobile-menu .nav-button.active,
    .mobile-menu .nav-button:hover { color: #007cb5; background: #f0f9ff; }
    @media (max-width: 768px) {
      .burger-menu { display: flex; }
      .nav-buttons { display: none; }
      .logo-img { height: 40px; }
      .header-container { padding: 12px 20px; }
    }

    /* ── MAIN CONTENT ── */
    .main-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 20px 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .page-title {
      font-family: 'Outfit', sans-serif;
      font-size: 56px;
      font-weight: 300;
      text-align: center;
      color: var(--primary);
      margin-bottom: 16px;
    }
    .page-subtitle {
      font-size: 22px;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 64px;
      max-width: 800px;
    }
    .choice-container {
      display: flex;
      justify-content: center;
      width: 100%;
    }
    .choice-container--tiers {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: stretch;
    }
    .choice-container--tiers .choice-card {
      max-width: none;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
    }
    .choice-container--tiers .choice-inner {
      max-width: 100%;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .choice-container--tiers .choice-features {
      grid-template-columns: 1fr;
      flex: 1;
    }
    .choice-card--premium {
      position: relative;
      border-color: #f59e0b;
    }
    .choice-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #f59e0b;
      color: white;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 999px;
      box-shadow: 0 4px 10px rgba(245,158,11,0.35);
      white-space: nowrap;
    }
    .choice-plus-line {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
      display: block;
    }
    .choice-note {
      font-size: 13px;
      color: var(--text-medium);
      margin-top: 14px;
    }
    .choice-card {
      background: white;
      border: 3px solid var(--primary);
      border-radius: 24px;
      padding: 64px 80px;
      width: 100%;
      max-width: 960px;
      box-shadow: var(--shadow-lg);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .choice-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 40px 80px rgba(0,124,181,0.2);
    }
    .choice-inner { max-width: 720px; margin: 0 auto; }
    .choice-title {
      font-family: 'Outfit', sans-serif;
      font-size: 32px; font-weight: 600;
      margin-bottom: 16px;
      color: var(--text-dark);
    }
    .choice-price {
      font-family: 'Outfit', sans-serif;
      font-size: 48px; font-weight: 700;
      color: var(--primary);
      margin-bottom: 4px;
    }
    .choice-price-label {
      font-size: 14px;
      color: var(--text-medium);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 32px;
    }
    .choice-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 32px;
      text-align: left;
      margin-bottom: 40px;
    }
    .choice-feature { display: flex; gap: 12px; font-size: 16px; color: var(--text-dark); }
    .choice-feature span:first-child { color: #10b981; font-weight: bold; flex-shrink: 0; }
    .choice-button {
      display: inline-block;
      background: var(--primary);
      color: white;
      text-decoration: none;
      padding: 20px 36px;
      border-radius: 14px;
      font-size: 20px; font-weight: 600;
      transition: all 0.2s ease;
    }
    .choice-button:hover { background: var(--primary-dark); transform: translateY(-2px); }
    .info-section {
      margin: 80px auto 0;
      max-width: 800px;
      background: white;
      padding: 40px 32px;
      border-radius: 16px;
      border: 1px solid var(--border);
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .info-section h3 {
      font-family: 'Outfit', sans-serif;
      margin-bottom: 12px;
      font-size: 24px;
      color: var(--text-dark);
    }
    .info-section p { font-size: 16px; color: var(--text-medium); line-height: 1.6; }

    /* ── FOOTER ── */
    .footer { padding: 52px 32px 36px; border-top: 1px solid #e2e8f0; background: #fff; }
    .footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
    .footer-links { display: flex; gap: 8px 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
    .footer-link { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; color: #66636d; text-decoration: none; transition: color .2s; }
    .footer-link:hover { color: #007cb5; }
    .footer p { font-size: 13px; color: #94a3b8; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .main-content { padding: 60px 20px 64px; }
      .page-title { font-size: 36px; }
      .page-subtitle { font-size: 18px; margin-bottom: 40px; }
      .choice-card { padding: 32px 20px; }
      .choice-container--tiers { grid-template-columns: 1fr; gap: 24px; }
      .choice-container--tiers .choice-card { padding: 40px 24px; }
      .choice-features { grid-template-columns: 1fr; }
      .footer { padding: 40px 20px 28px; }
    }
    @media (max-width: 480px) {
      .page-title { font-size: 28px; }
      .page-subtitle { font-size: 16px; }
      .choice-title { font-size: 20px; }
      .choice-price { font-size: 32px; }
      .choice-button { padding: 14px 24px; font-size: 16px; }
    }

/* Extracted from inline style attributes - CSP unsafe-inline removal */
.choice-price-local { font-size:14px;color:#007cb5;margin-top:2px;display:none; }