/* ============================================
   SYSTEM V2 — LANDING PAGE STYLES
   Palette: Azure Coast
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --ocean: #0077B6;
  --ocean-deep: #023E8A;
  --azure: #00B4D8;
  --sky: #90E0EF;
  --breeze: #CAF0F8;
  --white: #F8FDFF;
  --sand: #FFF8F0;
  --sun: #FFB703;
  --sun-warm: #FB8500;
  --coral: #FF6B6B;
  --text-dark: #0A1628;
  --text-body: #1B3A5C;
  --text-light: #5B7B9E;
  --glass: rgba(255,255,255,0.85);
  --glass-strong: rgba(255,255,255,0.95);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 60px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === UTILITY === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
[data-lang] { display: none; }
[data-lang="ru"] { display: inline; }

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: var(--glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,119,182,0.08);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,119,182,0.08); }
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 700;
  font-size: 20px;
  color: var(--ocean-deep);
  letter-spacing: -0.5px;
}
.logo b { color: var(--azure); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--ocean); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--ocean), var(--azure));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,119,182,0.3);
}
.nav-cabinet {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1.5px solid var(--ocean);
  color: var(--ocean);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cabinet:hover {
  background: var(--ocean);
  color: #fff;
}
.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--text-light);
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--ocean);
  background: rgba(0,119,182,0.08);
}
.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text-body);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--ocean), var(--azure));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,119,182,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,119,182,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--glass);
  color: var(--ocean);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(0,119,182,0.15);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--ocean);
  background: rgba(0,119,182,0.04);
}

/* === SECTION COMMON === */
.section { padding: 100px 0; }
.section-alt { background: var(--breeze); }
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--azure);
  margin-bottom: 14px;
  text-align: center;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ocean-deep);
  text-align: center;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* === SECTION BACKGROUNDS === */
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.82) 0%, rgba(2,62,138,0.78) 100%);
  z-index: -1;
}
.section-bg .section-label { color: var(--sky); }
.section-bg .section-title { color: #fff; }
.section-bg .section-desc { color: rgba(255,255,255,0.78); }
.section-bg .step-card h3 { color: #fff; }
.section-bg .step-card p { color: rgba(255,255,255,0.78); }
.section-bg .step-num { color: var(--sky); }
.section-bg .compare-table {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.bg-pool { background-image: url('../images/pool.png'); }
.bg-suite { background-image: url('../images/suite.png'); }
.bg-restaurant { background-image: url('../images/restaurant.png'); }
.bg-port { background-image: url('../images/port.png'); }

@media (min-width: 1024px) {
  .section-bg { background-attachment: fixed; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,253,255,0.55) 0%, rgba(202,240,248,0.70) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(144,224,239,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 20%, rgba(0,180,216,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 85%, rgba(202,240,248,0.5) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--breeze) 50%, var(--white) 100%);
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: 0;
  animation: orbFloat 10s ease-in-out infinite;
}
.orb-1 { width: 320px; height: 320px; background: var(--azure); top: 8%; right: 8%; }
.orb-2 { width: 220px; height: 220px; background: var(--sky); bottom: 18%; left: 4%; animation-delay: -4s; }
.orb-3 { width: 160px; height: 160px; background: var(--sun); top: 35%; right: 28%; opacity: 0.18; animation-delay: -7s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.04); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid rgba(0,180,216,0.2);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.7s ease-out;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--sun);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ocean-deep);
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease-out 0.1s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ocean), var(--azure));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease-out 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease-out 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: fadeUp 0.7s ease-out 0.4s both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === PROBLEMS === */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--glass-strong);
  border: 1px solid rgba(0,119,182,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,119,182,0.08);
}
.problem-icon {
  font-size: 40px;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--glass-strong);
  border: 1px solid rgba(0,180,216,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,119,182,0.1);
  border-color: rgba(0,180,216,0.25);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.fi-blue { background: rgba(0,119,182,0.1); }
.fi-azure { background: rgba(0,180,216,0.1); }
.fi-sun { background: rgba(255,183,3,0.12); }
.fi-green { background: rgba(6,214,160,0.1); }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--breeze);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* === COMPARISON TABLE === */
.compare-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,119,182,0.08);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
}
.compare-table thead th {
  background: var(--ocean-deep);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody td {
  border-bottom: 1px solid rgba(0,119,182,0.06);
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-body);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-yes { color: var(--ocean); font-weight: 700; font-size: 18px; }
.compare-no { color: var(--coral); font-size: 18px; }

/* === ACCESS GATE === */
.access-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--breeze) 0%, var(--white) 100%);
}
.access-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--glass-strong);
  border: 1px solid rgba(0,119,182,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,119,182,0.06);
}
.access-card .lock-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.access-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--ocean-deep);
  margin-bottom: 10px;
}
.access-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.ref-input-group {
  display: flex;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto 12px;
}
.ref-input-group input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(0,119,182,0.15);
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  text-transform: uppercase;
}
.ref-input-group input:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.ref-input-group button {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--ocean), var(--azure));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all 0.2s;
}
.ref-input-group button:hover {
  box-shadow: 0 4px 16px rgba(0,119,182,0.3);
}
.ref-error {
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  display: none;
}
.ref-error.show { display: block; }

/* === FORM === */
.form-section {
  padding: 80px 0;
  display: none;
}
.form-section.visible { display: block; }
.form-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--glass-strong);
  border: 1px solid rgba(0,180,216,0.1);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: 0 8px 40px rgba(0,119,182,0.06);
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--ocean-deep);
  text-align: center;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,119,182,0.15);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.form-group input::placeholder { color: var(--text-light); opacity: 0.5; }
.form-group input[readonly] {
  background: var(--breeze);
  color: var(--text-light);
}
.form-ref-switch {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ocean);
  text-decoration: underline;
  cursor: pointer;
}
.form-ref-switch:hover { color: var(--ocean-deep); }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 10px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--ocean);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.form-consent label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.form-consent a { color: var(--ocean); text-decoration: underline; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--ocean), var(--azure));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  margin-top: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,119,182,0.3);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,119,182,0.4);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,25,41,0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: fadeUp 0.3s ease-out;
}
.modal-box .modal-icon { font-size: 56px; margin-bottom: 16px; }
.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ocean-deep);
  margin-bottom: 10px;
}
.modal-box p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.modal-close {
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--ocean), var(--azure));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
}

/* === FOOTER === */
.footer {
  padding: 48px 0 28px;
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer-logo {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo b { color: var(--azure); }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--azure); }
.footer-legal {
  font-size: 12px;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}
.footer-legal a { color: var(--azure); }

/* === REVIEWS PAGE === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--glass-strong);
  border: 1px solid rgba(0,119,182,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean), var(--azure));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.review-name { font-size: 16px; font-weight: 700; color: var(--ocean-deep); }
.review-city { font-size: 12px; color: var(--text-light); }
.review-stars { color: var(--sun); font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* === LEGAL PAGE === */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}
.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--ocean-deep);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,119,182,0.08);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 10px 0 18px 24px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin: 22px 0 10px;
}
.legal-content a {
  color: var(--ocean);
  text-decoration: underline;
}
.legal-content a:hover { color: var(--ocean-deep); }
.legal-intro {
  font-size: 15px;
  color: var(--text-body);
  padding: 16px 18px;
  background: rgba(0,119,182,0.05);
  border-left: 3px solid var(--ocean);
  border-radius: 6px;
  margin-bottom: 10px;
}
.legal-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 14px;
}
.legal-table td {
  padding: 12px 14px;
  border: 1px solid rgba(0,119,182,0.12);
  vertical-align: top;
  line-height: 1.6;
}
.legal-table tr td:first-child {
  width: 36%;
  background: rgba(0,119,182,0.04);
  color: var(--ocean-deep);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .problems-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
}
@media (max-width: 640px) {
  .hero { padding: 90px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .ref-input-group { flex-direction: column; }
  .ref-input-group button { width: 100%; }
  .header-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .access-card, .form-card { padding: 32px 20px; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 13px; }
}
