/* ─── Fonts ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/jakarta-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/jakarta-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/jakarta-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/jakarta-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* ─── Reset + Variables ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #BF9020;
  --gold-hover: #A87C18;
  --gold-light: #FBF5E4;
  --bg: #ECEAE3;
  --card: #FFFFFF;
  --text: #0D0D0D;
  --muted: #6B7280;
  --border: #E0DDD5;
  --r: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

input, select, textarea, button { font-family: inherit; }
a { text-decoration: none; }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes slide {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: white;
  box-shadow: 0 6px 20px rgba(191,144,32,0.28);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(191,144,32,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236,234,227,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2C1F04, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-logo-text {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.navbar-logo-text span { color: var(--gold); }
.navbar-links {
  display: flex;
  gap: 0;
  margin-left: 20px;
  flex: 1;
}
.navbar-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.navbar-links a:hover { color: var(--text); }
.navbar-cta { margin-left: auto; }
.navbar-mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
}
.navbar-mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 16px 20px;
}
.navbar-mobile-menu.open { display: block; }
.navbar-mobile-menu a {
  display: block;
  padding: 13px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.navbar-mobile-cta { margin-top: 16px; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 68px 28px 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-end;
}
.hero-content { padding-bottom: 64px; }
.hero-title {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}
.hero-card-wrap {
  position: relative;
  padding-bottom: 32px;
}
.hero-switcher {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: white;
  padding: 5px 6px;
  border-radius: 30px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.hero-switcher button {
  padding: 5px 13px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  color: var(--muted);
  transition: all 0.18s;
}
.hero-switcher button.active {
  background: var(--gold);
  color: white;
}

/* ─── Virtual Card Component ─────────────────────────────── */
.vcard {
  width: 290px;
  height: 182px;
  border-radius: 16px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  color: white;
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.vcard-sm {
  width: 240px;
  height: 150px;
  padding: 16px 18px;
}
.vcard--travel { background: linear-gradient(140deg, #1C1408 0%, #3A2A06 50%, #6B520F 100%); }
.vcard--sub    { background: linear-gradient(140deg, #111 0%, #222 50%, #333 100%); }
.vcard--ads    { background: linear-gradient(140deg, #0C1520 0%, #162030 50%, #1E3040 100%); }

.vcard__glow {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(191,144,32,0.07);
}
.vcard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.vcard-sm .vcard__header { margin-bottom: 14px; }
.vcard__brand {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.85;
  line-height: 1.2;
}
.vcard-sm .vcard__brand { font-size: 10px; }
.vcard__label {
  font-size: 9px;
  font-weight: 600;
  background: rgba(191,144,32,0.25);
  border: 1px solid rgba(191,144,32,0.4);
  color: #DDB84A;
  padding: 2px 7px;
  border-radius: 10px;
}
.vcard__chip {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcard-sm .vcard__chip { width: 26px; height: 20px; margin-bottom: 10px; }
.vcard__chip-inner {
  width: 20px;
  height: 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  background: rgba(255,220,100,0.3);
}
.vcard-sm .vcard__chip-inner { width: 16px; height: 12px; }
.vcard__number {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
}
.vcard-sm .vcard__number { font-size: 11px; margin-bottom: 10px; }
.vcard__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.vcard__holder-label {
  font-size: 8px;
  opacity: 0.45;
  letter-spacing: 0.06em;
  margin-bottom: 1px;
}
.vcard__holder-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.vcard-sm .vcard__holder-name { font-size: 9px; }
.vcard__visa {
  font-weight: 800;
  font-size: 12px;
  font-style: italic;
  color: #DDB84A;
}
.vcard-sm .vcard__visa { font-size: 10px; }

/* Hero card switcher show/hide */
.vcard-slot { display: none; }
.vcard-slot.active { display: block; }

/* ─── Feature Strip ──────────────────────────────────────── */
.feature-strip {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-strip-inner {
  background: var(--card);
  border-radius: var(--r) var(--r) 0 0;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-left: 1px solid var(--border);
}
.feature-item:first-child { border-left: none; }
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-val {
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  line-height: 1.1;
}
.feature-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── Card Section (Tabs) ────────────────────────────────── */
.card-section {
  background: var(--bg);
  padding: 0 28px 48px;
}
.tabs-wrap { max-width: 1200px; margin: 0 auto; }
.tabs-bar {
  background: var(--card);
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}
.tab-btn {
  padding: 14px 24px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all 0.18s;
}
.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--gold);
}
.tabs-content {
  background: var(--card);
  border-radius: 0 0 var(--r) var(--r);
  padding: 36px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.card-type-switcher {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.card-type-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.15s;
}
.card-type-btn.active {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--gold);
}
.card-type-badge {
  font-size: 10px;
  background: var(--gold);
  color: white;
  padding: 1px 7px;
  border-radius: 10px;
}
.card-info { display: none; }
.card-info.active {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  animation: slide 0.2s ease;
}
.card-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.perk-list { display: flex; flex-direction: column; }
.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.perk-item:last-child { border-bottom: none; }
.perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.card-info-cta { margin-top: 24px; }

.tariff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.tariff-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.tariff-label { font-size: 15px; color: var(--muted); }
.tariff-val { font-size: 15px; font-weight: 800; color: var(--text); }

/* ─── How + Form ─────────────────────────────────────────── */
.how-section {
  background: var(--bg);
  padding: 48px 28px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.how-card, .form-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 36px;
}
.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 28px;
}
.step:last-child { padding-bottom: 0; }
.step-line {
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 0;
  width: 1px;
  background: #E5E5E0;
}
.step:last-child .step-line { display: none; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
  padding-top: 4px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  display: flex;
}
.form-input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-size: 15px;
  background: var(--bg);
  outline: none;
  color: var(--text);
  transition: border-color 0.18s;
}
.form-input:focus { border-color: var(--gold); }
.form-input.error { border-color: #EF4444; }
.field-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 5px;
  font-weight: 500;
  display: none;
}
.field-error.visible { display: block; }

.type-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.type-btn {
  flex: 1;
  padding: 10px 6px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.type-btn.active {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--gold);
}
.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  background: var(--gold);
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(191,144,32,0.25);
  transition: background 0.18s;
}
.submit-btn:hover { background: var(--gold-hover); }
.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: var(--gold); }
.form-state { }
.form-state.hidden { display: none; }
.form-success {
  text-align: center;
  padding: 24px 0;
  display: none;
}
.form-success.visible { display: block; }
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 24px;
}
.success-title {
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}
.success-msg { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.success-msg strong { color: var(--text); }
.new-request-btn {
  padding: 9px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* ─── Bento ──────────────────────────────────────────────── */
.bento-section {
  background: var(--bg);
  padding: 0 28px 48px;
}
.bento-inner { max-width: 1200px; margin: 0 auto; }
.bento-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 28px;
}
.bento-dark {
  background: linear-gradient(160deg, #1C1408 0%, #3A2A06 50%, #5A4010 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  grid-row: 1 / 3;
  grid-column: 1;
  padding: 32px;
}
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(191,144,32,0.2);
  border: 1px solid rgba(191,144,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DDB84A;
  margin-bottom: 24px;
}
.bento-icon-sm {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.bento-card-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.bento-card-desc {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.7;
}
.bento-card-title-sm {
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}
.bento-card-desc-sm {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.bento-stat { display: flex; align-items: center; gap: 20px; }
.bento-num {
  font-weight: 800;
  font-size: 44px;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bento-num-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ─── Reviews ────────────────────────────────────────────── */
.reviews-section {
  background: var(--bg);
  padding: 0 28px 48px;
}
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 26px;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--gold); }
.review-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2C1F04, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--text); }
.reviewer-role { font-size: 12px; color: var(--muted); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 0 28px 48px;
}
.faq-inner { max-width: 1200px; margin: 0 auto; }
.faq-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}
.faq-box {
  background: var(--card);
  border-radius: var(--r);
  padding: 36px;
}
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  line-height: 1.4;
}
.faq-chev {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-chev.open { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  display: none;
}
.faq-answer.open {
  display: block;
  animation: fadeUp 0.2s ease;
}

/* ─── Inline FAQ (inside tab 2) ──────────────────────────── */
.faq-inline .faq-cols {
  grid-template-columns: 1fr 1fr;
}

/* ─── Accordion Section ──────────────────────────────────── */
.accord-section {
  background: var(--bg);
  padding: 0 28px 48px;
}
.accord-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accord-card {
  background: var(--card);
  border-radius: 16px;
}
.accord-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accord-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.accord-chev {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.accord-chev.open { transform: rotate(180deg); }
.accord-body {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  display: none;
}
.accord-body.open {
  display: block;
  animation: fadeUp 0.2s ease;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: #111109;
  padding: 44px 28px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2C1F04, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-text {
  font-weight: 800;
  font-size: 15px;
  color: white;
}
.footer-logo-text span { color: var(--gold); }
.footer-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.7;
  max-width: 230px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  color: #9CA3AF;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #4B5563;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: #4B5563; }

/* ─── Media Queries ──────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar-links,
  .navbar-cta { display: none !important; }
  .navbar-mob-btn { display: flex !important; }

  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-visual { display: none !important; }
  .hero-content { padding-bottom: 32px; }

  .feature-strip-inner { grid-template-columns: 1fr 1fr !important; }
  .feature-item { padding: 12px 12px; }

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

  .bento-grid { grid-template-columns: 1fr !important; }
  .bento-dark {
    grid-row: auto !important;
    grid-column: auto !important;
    min-height: auto !important;
  }

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

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

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

  .card-info.active { grid-template-columns: 1fr !important; }
  .card-info.active .vcard { display: none; }

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

@media (max-width: 560px) {
  .feature-strip-inner { grid-template-columns: 1fr !important; }
  .feature-item { border-left: none !important; border-top: 1px solid var(--border); padding: 16px 0; }
  .feature-item:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .type-selector { flex-wrap: wrap; }
  .faq-inline .faq-cols { grid-template-columns: 1fr !important; }
}

/* ─── Footer Requisites ──────────────────────────────────── */
.footer-requisites {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  margin-bottom: 20px;
}
.footer-requisites p {
  font-size: 12px;
  color: #4B5563;
  line-height: 1.7;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-legal-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: #4B5563;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.footer-legal-links button:hover { color: white; }

/* ─── Modal ──────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 760px;
  padding: 40px 44px;
  position: relative;
  margin: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f3f3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  flex-shrink: 0;
}
.modal-close:hover { background: #e5e5e5; }
.modal h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-right: 40px;
  line-height: 1.3;
}
.modal-body {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.8;
}
.modal-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}
.modal-body p { margin-bottom: 10px; }

@media (max-width: 600px) {
  .modal { padding: 28px 20px; }
  .modal-backdrop { padding: 16px 8px; }
}
