@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@200;300;400;500;600&display=swap');

/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #222228;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(30, 30, 35, 0.97);
  border-bottom: 1px solid rgba(168, 168, 184, 0.08);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo {
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 14px;
  text-transform: uppercase;
}

.logo a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-mark { flex-shrink: 0; }
.logo .v { color: #5cb8e6; }
.logo .estex { color: #e0e0e8; }

nav {
  display: flex;
  gap: 48px;
}

nav a {
  color: #a8a8b8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

nav a:hover, nav a.active { color: #5cb8e6; }

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-login {
  color: #a8a8b8;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s;
}

.btn-login:hover { color: #5cb8e6; }

.btn-header {
  background: linear-gradient(135deg, #5cb8e6, #4a9cd4);
  color: #222228;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: opacity 0.3s;
}

.btn-header:hover { opacity: 0.9; }

/* ========== BUTTONS ========== */
.btn-primary {
  background: linear-gradient(135deg, #5cb8e6, #4a9cd4);
  color: #222228;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(92, 184, 230, 0.2);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(92, 184, 230, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(168, 168, 184, 0.08);
  color: #a8a8b8;
  border: 1px solid rgba(168, 168, 184, 0.15);
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  border-color: #5cb8e6;
  color: #5cb8e6;
}

.cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cta-group.centered {
  justify-content: center;
}

/* Mobile nav actions button */
.mobile-nav-actions .btn-primary {
  padding: 14px 36px;
}

/* ========== HERO (HOME) ========== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 200px 80px 140px;
  background: linear-gradient(160deg, #2a2a30 0%, #303038 30%, #262630 70%, #222228 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(92, 184, 230, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 168, 184, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-text {
  max-width: 540px;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(92, 184, 230, 0.1);
  border: 1px solid rgba(92, 184, 230, 0.2);
  color: #5cb8e6;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-text h1 .accent { color: #5cb8e6; }
.hero-text h1 .muted { color: #a8a8b8; }

.hero-text p {
  font-size: 17px;
  color: rgba(168, 168, 184, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

/* Hero with image */
.hero.hero-with-image {
  display: block;
  padding: 0;
  min-height: 100vh;
}

.hero.hero-with-image::before,
.hero.hero-with-image::after { display: none; }

.hero-image-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(26, 26, 30, 0.92) 0%, rgba(26, 26, 30, 0.7) 35%, rgba(26, 26, 30, 0.15) 65%, transparent 100%);
}

.hero-content-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 200px 80px 140px;
}

.hero-content-overlay .hero-text {
  max-width: 520px;
}

/* Card visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.card-mockup {
  width: 440px;
  height: 270px;
  background: linear-gradient(145deg, #3e3e46, #323238, #3e3e46);
  border-radius: 18px;
  padding: 34px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 60px rgba(92, 184, 230, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.12);
  overflow: hidden;
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s;
}

.card-mockup:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.card-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(92, 184, 230, 0.04) 0%, transparent 40%, rgba(168, 168, 184, 0.03) 100%);
}

.card-logo-mark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #5cb8e6;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.card-chip {
  width: 46px;
  height: 34px;
  background: linear-gradient(135deg, #a8a8b8, #c0c0d0);
  border-radius: 6px;
  margin-bottom: 28px;
  position: relative;
}

.card-chip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(50, 50, 56, 0.4);
}

.card-number {
  font-size: 19px;
  letter-spacing: 4px;
  color: rgba(168, 168, 184, 0.5);
  margin-bottom: 28px;
  font-weight: 300;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-name {
  font-size: 12px;
  letter-spacing: 2px;
  color: #a8a8b8;
  font-weight: 500;
}

.card-brand {
  font-size: 20px;
  font-weight: 700;
  color: rgba(168, 168, 184, 0.6);
  letter-spacing: 1px;
}

/* Floating elements */
.float-badge {
  position: absolute;
  background: rgba(30, 30, 35, 0.95);
  border: 1px solid rgba(168, 168, 184, 0.12);
  border-radius: 12px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.float-badge.top-right {
  top: -30px;
  right: -40px;
}

.float-badge.bottom-left {
  bottom: -20px;
  left: -50px;
}

.float-badge .label {
  font-size: 10px;
  color: #a8a8b8;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.float-badge .value {
  font-size: 18px;
  font-weight: 700;
  color: #5cb8e6;
}

.float-badge .value.green { color: #4cd964; }

/* ========== PAGE HERO (SUB PAGES) ========== */
.page-hero {
  padding: 160px 60px 80px;
  text-align: center;
  background: linear-gradient(160deg, #2a2a30 0%, #303038 30%, #262630 70%, #222228 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(92, 184, 230, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
}

.page-hero h1 .accent { color: #5cb8e6; }

.page-hero p {
  font-size: 18px;
  color: #a8a8b8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

/* ========== STATS ========== */
.stats {
  display: flex;
  padding: 50px 60px;
  background: rgba(168, 168, 184, 0.03);
  border-top: 1px solid rgba(168, 168, 184, 0.06);
  border-bottom: 1px solid rgba(168, 168, 184, 0.06);
}

.stat {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(168, 168, 184, 0.1);
}

.stat-value {
  font-size: 34px;
  font-weight: 700;
  color: #5cb8e6;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: #a8a8b8;
  letter-spacing: 0.5px;
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .tag {
  display: inline-block;
  background: rgba(92, 184, 230, 0.08);
  border: 1px solid rgba(92, 184, 230, 0.15);
  color: #5cb8e6;
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-header h2 .accent { color: #5cb8e6; }

.section-header p {
  font-size: 16px;
  color: #a8a8b8;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========== FEATURES GRID ========== */
.features {
  padding: 140px 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(168, 168, 184, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 16px;
  padding: 48px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5cb8e6, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(92, 184, 230, 0.2);
  background: rgba(92, 184, 230, 0.03);
  transform: translateY(-2px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  display: none;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e0e0e8;
}

.feature-card p {
  font-size: 14px;
  color: rgba(168, 168, 184, 0.7);
  line-height: 1.65;
}

/* ========== HOW IT WORKS / STEPS ========== */
.how-it-works {
  padding: 100px 60px;
  background: linear-gradient(180deg, rgba(168, 168, 184, 0.03) 0%, #222228 100%);
}

.steps-section {
  padding: 80px 60px;
}

.steps {
  display: flex;
  gap: 32px;
  margin-top: 60px;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(92, 184, 230, 0.1);
  border: 1px solid rgba(92, 184, 230, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 700;
  color: #5cb8e6;
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e0e0e8;
}

.step p {
  font-size: 14px;
  color: #a8a8b8;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: rgba(92, 184, 230, 0.2);
}

/* ========== CONTENT SECTIONS (alternating layout) ========== */
.content-section {
  padding: 80px 60px;
  border-bottom: 1px solid rgba(168, 168, 184, 0.06);
}

.content-section:nth-child(even) {
  background: rgba(168, 168, 184, 0.02);
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 32px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 16px;
  color: #e0e0e8;
  letter-spacing: -0.3px;
}

.content-block h2 .accent { color: #5cb8e6; }

.content-block > p {
  font-size: 16px;
  color: rgba(168, 168, 184, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.point-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.point-list li {
  font-size: 14px;
  color: rgba(168, 168, 184, 0.85);
  padding: 12px 16px;
  background: rgba(168, 168, 184, 0.04);
  border: 1px solid rgba(168, 168, 184, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.point-list li .check {
  color: #5cb8e6;
  font-size: 14px;
  flex-shrink: 0;
}

/* ========== HIGHLIGHTS (Corporate) ========== */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px;
}

.highlight-card {
  background: rgba(168, 168, 184, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.highlight-card .hl-value {
  font-size: 28px;
  font-weight: 700;
  color: #5cb8e6;
  margin-bottom: 4px;
}

.highlight-card .hl-label {
  font-size: 13px;
  color: #e0e0e8;
  font-weight: 600;
  margin-bottom: 4px;
}

.highlight-card .hl-note {
  font-size: 11px;
  color: #a8a8b8;
}

/* ========== PRICING ========== */
.pricing {
  padding: 100px 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(168, 168, 184, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(92, 184, 230, 0.3);
  background: rgba(92, 184, 230, 0.04);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #5cb8e6, #4a9cd4);
  color: #222228;
  padding: 4px 16px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 184, 230, 0.2);
}

.pricing-card .plan-name {
  font-size: 14px;
  font-weight: 600;
  color: #a8a8b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #e0e0e8;
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 16px;
  color: #a8a8b8;
  font-weight: 400;
}

.pricing-card .price-note {
  font-size: 12px;
  color: #a8a8b8;
  margin-bottom: 28px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card ul li {
  font-size: 13px;
  color: rgba(168, 168, 184, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(168, 168, 184, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card ul li .check {
  color: #5cb8e6;
  font-size: 14px;
}

.pricing-card .btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.pricing-card .btn-plan.primary {
  background: linear-gradient(135deg, #5cb8e6, #4a9cd4);
  color: #222228;
  border: none;
}

.pricing-card .btn-plan.outline {
  background: transparent;
  color: #a8a8b8;
  border: 1px solid rgba(168, 168, 184, 0.15);
}

.pricing-card .btn-plan.outline:hover {
  border-color: #5cb8e6;
  color: #5cb8e6;
}

/* ========== FEE TABLE ========== */
.fee-tables {
  padding: 80px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.fee-table-group {
  margin-bottom: 48px;
}

.fee-table-group h3 {
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(168, 168, 184, 0.1);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th,
.fee-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
}

.fee-table th {
  color: #5cb8e6;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(92, 184, 230, 0.2);
}

.fee-table td {
  color: rgba(168, 168, 184, 0.85);
  border-bottom: 1px solid rgba(168, 168, 184, 0.06);
}

.fee-table tr:hover td {
  background: rgba(92, 184, 230, 0.02);
}

/* ========== COMPARISON TABLE ========== */
.comparison-section {
  padding: 80px 60px;
  background: rgba(168, 168, 184, 0.02);
}

.comparison-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #a8a8b8;
}

/* Desktop table */
.comparison-desktop {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-table thead th {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(92, 184, 230, 0.2);
  color: #a8a8b8;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  color: #e0e0e8;
  text-align: left;
}

.comparison-table thead th.highlight {
  color: #5cb8e6;
  background: rgba(92, 184, 230, 0.05);
}

.comparison-table tbody td {
  padding: 12px 16px;
  color: rgba(168, 168, 184, 0.8);
  border-bottom: 1px solid rgba(168, 168, 184, 0.06);
  text-align: center;
  white-space: nowrap;
}

.comparison-table tbody td:first-child {
  text-align: left;
  color: #e0e0e8;
  font-weight: 500;
}

.comparison-table tbody td.highlight {
  color: #5cb8e6;
  font-weight: 600;
  background: rgba(92, 184, 230, 0.03);
}

.comparison-table tbody tr:hover td {
  background: rgba(92, 184, 230, 0.02);
}

.comparison-table tbody tr:hover td.highlight {
  background: rgba(92, 184, 230, 0.05);
}

/* Mobile accordion - hidden on desktop */
.comparison-mobile { display: none; }

/* Mobile accordion card styles */
.comp-card {
  background: rgba(168, 168, 184, 0.04);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.comp-card.open { border-color: rgba(92, 184, 230, 0.2); }

.comp-card-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  gap: 12px;
}

.comp-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.comp-card-cat {
  font-size: 13px;
  font-weight: 500;
  color: #e0e0e8;
}

.comp-card-val {
  font-size: 13px;
  font-weight: 600;
  color: #5cb8e6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.comp-card-arrow {
  flex-shrink: 0;
  font-size: 10px;
  color: #5cb8e6;
  transition: transform 0.2s;
}

.comp-card.open .comp-card-arrow { transform: rotate(180deg); }

.comp-card-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.comp-card.open .comp-card-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.comp-card-inner {
  overflow: hidden;
  border-top: 1px solid rgba(168, 168, 184, 0.08);
  padding: 0 16px;
}

.comp-card.open .comp-card-inner {
  padding: 12px 16px;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.comp-row-name {
  font-size: 12px;
  color: rgba(168, 168, 184, 0.5);
}

.comp-row-val {
  font-size: 12px;
  color: rgba(168, 168, 184, 0.8);
}

@media (max-width: 1024px) {
  .comparison-desktop { display: none; }
  .comparison-mobile { display: block; }
  .comparison-section { padding: 60px 24px; }
}

/* ========== PARTNER CARDS ========== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 60px 80px;
}

.partner-card {
  background: rgba(168, 168, 184, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s;
}

.partner-card:hover {
  border-color: rgba(92, 184, 230, 0.2);
  transform: translateY(-2px);
}

.partner-category {
  display: inline-block;
  background: rgba(92, 184, 230, 0.08);
  border: 1px solid rgba(92, 184, 230, 0.15);
  color: #5cb8e6;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.partner-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 14px;
  color: rgba(168, 168, 184, 0.7);
  line-height: 1.65;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 80px 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(168, 168, 184, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #e0e0e8;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover { color: #5cb8e6; }

.faq-question .arrow {
  font-size: 18px;
  color: #5cb8e6;
  transition: transform 0.3s;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 14px;
  color: rgba(168, 168, 184, 0.8);
  line-height: 1.7;
  padding-bottom: 24px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 60px;
  text-align: center;
  background: rgba(168, 168, 184, 0.03);
  border-top: 1px solid rgba(168, 168, 184, 0.06);
}

.contact-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 12px;
}

.contact-section p {
  font-size: 14px;
  color: #a8a8b8;
  margin-bottom: 8px;
}

.contact-section a {
  color: #5cb8e6;
  font-weight: 600;
}

/* ========== VALUES GRID ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 60px 80px;
}

.value-card {
  background: rgba(168, 168, 184, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(92, 184, 230, 0.2);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #5cb8e6;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: rgba(168, 168, 184, 0.7);
  line-height: 1.65;
}

/* ========== INTRO TEXT ========== */
.intro-section {
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-section p {
  font-size: 17px;
  color: rgba(168, 168, 184, 0.85);
  line-height: 1.8;
}

/* ========== BENEFIT LIST ========== */
.benefit-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 60px 60px;
}

.benefit-list li {
  font-size: 15px;
  color: rgba(168, 168, 184, 0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(168, 168, 184, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-list li .check {
  color: #5cb8e6;
  font-size: 16px;
  flex-shrink: 0;
}

/* ========== COMPANY INFO ========== */
.company-info {
  padding: 40px 60px 60px;
  text-align: center;
}

.company-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 8px;
}

.company-info p {
  font-size: 13px;
  color: #a8a8b8;
}

/* ========== SECURITY FEATURES ========== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 60px 80px;
}

.security-card {
  background: rgba(168, 168, 184, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  transition: all 0.3s;
}

.security-card:hover {
  border-color: rgba(92, 184, 230, 0.2);
}

.security-card .sec-icon {
  width: 56px;
  height: 56px;
  background: rgba(92, 184, 230, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.security-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 10px;
}

.security-card p {
  font-size: 14px;
  color: rgba(168, 168, 184, 0.7);
  line-height: 1.65;
}

/* ========== OPERATOR INFO ========== */
.operator-section {
  padding: 40px 60px 60px;
  border-top: 1px solid rgba(168, 168, 184, 0.06);
}

.operator-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #a8a8b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.operator-section p {
  font-size: 13px;
  color: rgba(168, 168, 184, 0.6);
  margin-bottom: 6px;
}

/* ========== WHITE LABEL SERVICES GRID ========== */
.wl-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.wl-service-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.wl-service-item:hover {
  border-color: rgba(92, 184, 230, 0.2);
}

.wl-service-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 184, 230, 0.06);
  border-radius: 10px;
}

.wl-service-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 8px;
}

.wl-service-item p {
  font-size: 13px;
  color: #a8a8b8;
  line-height: 1.6;
}

/* ========== WHITE LABEL DETAIL GRID ========== */
.wl-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.wl-detail-item {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.wl-detail-item:hover {
  border-color: rgba(92, 184, 230, 0.2);
}

.wl-detail-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #5cb8e6;
  margin-bottom: 12px;
}

.wl-detail-item p {
  font-size: 14px;
  color: #a8a8b8;
  line-height: 1.7;
}

/* ========== WHITE LABEL CONTACT SECTION ========== */
.wl-contact-section {
  padding: 80px 60px;
  background: rgba(168, 168, 184, 0.02);
}

.wl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 40px auto 0;
  align-items: start;
}

.wl-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wl-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wl-contact-label {
  font-size: 11px;
  font-weight: 600;
  color: #5cb8e6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wl-contact-item span:last-child {
  font-size: 15px;
  color: #e0e0e8;
}

.wl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wl-contact-form input,
.wl-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 168, 184, 0.12);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.wl-contact-form input::placeholder,
.wl-contact-form textarea::placeholder {
  color: rgba(168, 168, 184, 0.4);
}

.wl-contact-form input:focus,
.wl-contact-form textarea:focus {
  border-color: rgba(92, 184, 230, 0.4);
}

.wl-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.wl-contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .wl-services-grid {
    grid-template-columns: 1fr;
  }

  .wl-detail-grid {
    grid-template-columns: 1fr;
  }

  .wl-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wl-contact-section {
    padding: 60px 20px;
  }
}

/* ========== REVENUE TABLE ========== */
.revenue-section {
  padding: 80px 60px;
}

.revenue-table {
  width: 100%;
  max-width: 700px;
  margin: 40px auto 0;
  border-collapse: collapse;
}

.revenue-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  color: #5cb8e6;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(92, 184, 230, 0.2);
}

.revenue-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(168, 168, 184, 0.85);
  border-bottom: 1px solid rgba(168, 168, 184, 0.06);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 160px 80px;
  text-align: center;
  background: linear-gradient(180deg, #222228 0%, #2a2a32 50%, #222228 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(92, 184, 230, 0.06) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 16px;
  position: relative;
}

.cta-section h2 .accent { color: #5cb8e6; }

.cta-section p {
  font-size: 17px;
  color: #a8a8b8;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
}

.cta-section .btn-primary {
  position: relative;
  font-size: 16px;
  padding: 18px 48px;
}

/* ========== FOOTER ========== */
footer {
  padding: 80px;
  border-top: 1px solid rgba(168, 168, 184, 0.06);
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: #a8a8b8;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: #e0e0e8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #a8a8b8;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: #5cb8e6; }

.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid rgba(168, 168, 184, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(168, 168, 184, 0.5);
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== MOBILE NAV ========== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 102;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e0e0e8;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 26, 30, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
  color: #e0e0e8;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.mobile-nav-overlay a:hover { color: #5cb8e6; }

.mobile-nav-overlay .mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

/* ========== CARD COST GRID (responsive replacement for inline styles) ========== */
.cost-grid {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.cost-card {
  flex: 1;
  background: rgba(168, 168, 184, 0.05);
  border: 1px solid rgba(168, 168, 184, 0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.cost-card.highlighted {
  background: rgba(92, 184, 230, 0.04);
  border-color: rgba(92, 184, 230, 0.2);
}

.cost-card .cost-label {
  font-size: 12px;
  color: #a8a8b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cost-card .cost-value {
  font-size: 36px;
  font-weight: 700;
  color: #5cb8e6;
}

.cost-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #a8a8b8;
}

/* ========== FORM SUCCESS TOAST ========== */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.visible { display: block; }

.form-success .success-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e8;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: #a8a8b8;
  line-height: 1.6;
}

/* ========== SCREEN READER ONLY ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== LEGAL COMING SOON ========== */
.coming-soon-link {
  opacity: 0.5;
  cursor: default;
  position: relative;
}

.coming-soon-link::after {
  content: ' (Coming Soon)';
  font-size: 10px;
  opacity: 0.6;
}

/* ========== AUTH PAGES ========== */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #2a2a30 0%, #262630 50%, #222228 100%);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(92, 184, 230, 0.08);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.auth-card-wide {
  max-width: 540px;
}

.auth-logo {
  margin-bottom: 28px;
}

.auth-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #e0e0e8;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: #a8a8b8;
  margin-bottom: 36px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #a8a8b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.auth-field input,
.auth-field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 168, 184, 0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.auth-field input::placeholder {
  color: rgba(168, 168, 184, 0.3);
}

.auth-field input:focus,
.auth-field select:focus {
  border-color: rgba(92, 184, 230, 0.4);
}

.auth-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235cb8e6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.auth-field select option {
  background: #222228;
}

.field-hint {
  font-size: 11px;
  color: rgba(168, 168, 184, 0.4);
  margin-top: 6px;
}

.auth-field-row {
  display: flex;
  gap: 16px;
}

.auth-field-row .auth-field {
  flex: 1;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8a8b8;
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #5cb8e6;
  cursor: pointer;
}

.auth-checkbox-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #a8a8b8;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.auth-checkbox-block input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #5cb8e6;
  margin-top: 2px;
  cursor: pointer;
}

.auth-checkbox-block a {
  color: #5cb8e6;
  text-decoration: none;
}

.auth-checkbox-block a:hover {
  text-decoration: underline;
}

.auth-link {
  color: #5cb8e6;
  text-decoration: none;
  font-size: 13px;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.auth-button-row {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.auth-button-row .auth-back {
  flex: 0 0 auto;
  padding: 14px 28px;
  font-size: 14px;
}

.auth-button-row .auth-submit {
  flex: 1;
  margin-top: 0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: rgba(168, 168, 184, 0.3);
  font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(168, 168, 184, 0.1);
}

.auth-social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 168, 184, 0.12);
  border-radius: 8px;
  color: #e0e0e8;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.auth-social:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(168, 168, 184, 0.2);
}

.auth-footer {
  margin-top: 28px;
  font-size: 13px;
  color: #a8a8b8;
}

.auth-footer a {
  color: #5cb8e6;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Interest checkboxes (signup step 2) */
.interest-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.auth-checkbox-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8a8b8;
  font-size: 13px;
  cursor: pointer;
}

.auth-checkbox-inline input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #5cb8e6;
  cursor: pointer;
}

/* Private notice (signup step 3) */
.private-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(92, 184, 230, 0.05);
  border: 1px solid rgba(92, 184, 230, 0.15);
  border-radius: 10px;
  margin-top: 4px;
}

.private-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.private-notice p {
  font-size: 13px;
  color: #a8a8b8;
  line-height: 1.6;
}

.private-notice strong {
  color: #5cb8e6;
}

/* Signup progress indicator */
.signup-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(168, 168, 184, 0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.progress-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(168, 168, 184, 0.15);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.progress-step.active {
  color: #5cb8e6;
}

.progress-step.active span {
  border-color: #5cb8e6;
  background: rgba(92, 184, 230, 0.1);
  color: #5cb8e6;
}

.progress-step.completed {
  color: rgba(92, 184, 230, 0.5);
}

.progress-step.completed span {
  border-color: rgba(92, 184, 230, 0.3);
  background: rgba(92, 184, 230, 0.15);
  color: rgba(92, 184, 230, 0.6);
}

.progress-line {
  width: 40px;
  height: 1px;
  background: rgba(168, 168, 184, 0.12);
  margin: 0 12px;
  transition: background 0.3s;
}

.progress-line.completed {
  background: rgba(92, 184, 230, 0.3);
}

.verification-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(92, 184, 230, 0.05);
  border: 1px solid rgba(92, 184, 230, 0.12);
  border-radius: 10px;
  margin-bottom: 8px;
}

.verification-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.verification-notice p {
  font-size: 13px;
  color: #a8a8b8;
  line-height: 1.6;
}

/* Auth error & success messages */
.auth-error {
  padding: 14px 18px;
  background: rgba(230, 92, 92, 0.08);
  border: 1px solid rgba(230, 92, 92, 0.25);
  border-radius: 8px;
  color: #e65c5c;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.signup-success {
  text-align: center;
  padding: 40px 20px;
}

.signup-success svg {
  margin-bottom: 20px;
}

.signup-success h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #e0e0e8;
  margin-bottom: 12px;
}

.signup-success p {
  font-size: 14px;
  color: #a8a8b8;
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 140px 30px 60px; }
  .hero.hero-with-image { padding: 0; }
  .hero-content-overlay { padding: 140px 30px 60px; justify-content: center; }
  .hero-content-overlay .hero-text { text-align: center; max-width: 100%; }
  .hero-content-overlay .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-content-overlay .cta-group { justify-content: center; }
  .hero-image-overlay { background: linear-gradient(to top, rgba(26, 26, 30, 0.95) 0%, rgba(26, 26, 30, 0.75) 40%, rgba(26, 26, 30, 0.4) 100%); }
  .hero-text { max-width: 100%; margin-bottom: 40px; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .cta-group { justify-content: center; }
  .features-grid, .features-grid.two-col { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .steps { flex-direction: column; }
  .step::after { display: none; }
  header { padding: 16px 24px; }
  nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { display: none; }
  footer { flex-direction: column; gap: 40px; padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { padding: 16px 24px; flex-wrap: wrap; gap: 8px; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .values-grid, .security-grid { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .point-list { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 24px 48px; }
  .page-hero h1 { font-size: 32px; }
  .content-section { padding: 48px 24px; }
  .features { padding: 60px 24px; }
  .stats { flex-wrap: wrap; padding: 32px 24px; }
  .stat { flex: 0 0 50%; }
  .stat:not(:last-child)::after { display: none; }
  .fee-tables { padding: 48px 24px; }
  .cost-grid { flex-direction: column; }
  .cta-section { padding: 60px 24px; }
  .cta-section h2 { font-size: 28px; }
  .intro-section { padding: 40px 24px; }
  .benefit-list { padding: 0 24px 40px; }
  .revenue-section { padding: 48px 24px; }
  .comparison-table { font-size: 11px; }
  .comparison-table thead th, .comparison-table tbody td { padding: 10px 8px; }
  .operator-section { padding: 32px 24px 40px; }
  .auth-card { padding: 36px 24px; }
  .auth-field-row { flex-direction: column; gap: 20px; }
  .auth-button-row { flex-direction: column; }
  .signup-progress { gap: 0; font-size: 10px; }
  .progress-step { font-size: 10px; }
  .progress-line { width: 24px; margin: 0 6px; }
}
