/* =============================================
   TRYPTO — Hotel Price Comparison
   Color palette: Blue #0088d9 | Orange #FF8B00 | Red #D83F1F | BG #f8f8f6
   ============================================= */

:root {
  --blue:        #0088d9;
  --blue-dark:   #006daf;
  --orange:      #FF8B00;
  --orange-dark: #e07800;
  --red:         #D83F1F;
  --red-dark:    #b83419;
  --bg:          #f8f8f6;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #6b6b6b;
  --border:      #e4e4e0;
  --shadow:      0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.13);
  --radius:      14px;
  --radius-sm:   8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── LOGO ── */
.logo {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}
.logo-sm { font-size: 1.5rem; }
.logo-t   { color: var(--red); }
.logo-ry  { color: var(--orange); }
.logo-pto { color: var(--blue); }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: 20px;
}

.nav-link {
  padding: 7px 15px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.nav-link:hover { color: var(--blue); background: rgba(0,136,217,0.07); }
.nav-link.active { color: var(--blue); background: rgba(0,136,217,0.1); font-weight: 600; }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost {
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.btn-ghost:hover { background: var(--bg); color: var(--blue); }

.btn-primary-sm {
  padding: 8px 20px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.btn-primary-sm:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(0,30,60,0.88) 0%, rgba(0,60,120,0.82) 40%, rgba(0,100,180,0.75) 70%, rgba(0,136,217,0.65) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&h=700&fit=crop&auto=format') center/cover no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(0,136,217,0.2) 0%, transparent 65%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 88px 28px 88px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-weight: 400;
}

/* ── SEARCH BOX ── */
.search-box {
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 980px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}

.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  flex: 1;
  min-width: 0;
}

.search-destination {
  flex: 2.2;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.search-field-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.search-icon { font-size: 1.1rem; flex-shrink: 0; }

.search-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}
.search-field input::placeholder { color: #bbb; font-weight: 400; }
.search-field select { appearance: none; -webkit-appearance: none; }

.search-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.search-btn {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0 36px;
  height: 56px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  margin: 0 2px 0 4px;
  flex-shrink: 0;
}
.search-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,139,0,0.4);
}

.hero-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.hero-note strong { color: rgba(255,255,255,0.9); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 22px 28px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── CONTAINER ── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.see-all {
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.75; }

/* ── DESTINATIONS ── */
.destinations { padding: 80px 0; }

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

.dest-card {
  border-radius: var(--radius);
  height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.dest-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.dest-paris     { background: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=600&h=400&fit=crop&auto=format') center/cover no-repeat; }
.dest-tokyo     { background: url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=600&h=400&fit=crop&auto=format') center/cover no-repeat; }
.dest-nyc       { background: url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=600&h=400&fit=crop&auto=format') center/cover no-repeat; }
.dest-dubai     { background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=600&h=400&fit=crop&auto=format') center/cover no-repeat; }
.dest-london    { background: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=600&h=400&fit=crop&auto=format') center/cover no-repeat; }
.dest-barcelona { background: url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?w=600&h=400&fit=crop&auto=format') center/cover no-repeat; }

.dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}
.dest-flag { font-size: 1.4rem; margin-bottom: 3px; }
.dest-overlay h3 { color: white; font-size: 1.15rem; font-weight: 700; line-height: 1.2; }
.dest-overlay p { color: rgba(255,255,255,0.82); font-size: 0.82rem; margin-top: 3px; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 40px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 36px 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.step-icon {
  font-size: 2.2rem;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-icon-1 { background: rgba(0,136,217,0.1); }
.step-icon-2 { background: rgba(255,139,0,0.1); }
.step-icon-3 { background: rgba(216,63,31,0.1); }

.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
  padding-bottom: 20px;
}

/* ── DEALS ── */
.deals { padding: 80px 0; }

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

.deal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.deal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.deal-img {
  height: 170px;
  position: relative;
}
.deal-img-1 { background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=500&h=350&fit=crop&auto=format') center/cover no-repeat; }
.deal-img-2 { background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=500&h=350&fit=crop&auto=format') center/cover no-repeat; }
.deal-img-3 { background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=500&h=350&fit=crop&auto=format') center/cover no-repeat; }

.deal-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: 12px;
}
.deal-save-badge {
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.deal-info { padding: 16px 20px 20px; }

.deal-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  margin-bottom: 9px;
  background: rgba(255,139,0,0.12);
  color: var(--orange);
}
.deal-badge-new   { background: rgba(0,136,217,0.1); color: var(--blue); }
.deal-badge-value { background: rgba(216,63,31,0.1);  color: var(--red); }

.deal-info h4    { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.deal-location   { font-size: 0.79rem; color: var(--text-muted); margin-bottom: 6px; }

.deal-rating {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.deal-rating span { color: var(--text); font-weight: 600; }

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.price-was {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.price-now {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.per-night { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); }

.deal-btn {
  width: 100%;
  padding: 10px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  font-family: inherit;
}
.deal-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ── TRUST SECTION ── */
.trust-section {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
}
.trust-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.trust-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.trust-item p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
}

.cta-content { text-align: center; }
.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; }

.btn-cta-primary {
  padding: 15px 34px;
  background: white;
  color: var(--red);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.22); }

.btn-cta-ghost {
  padding: 15px 34px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-cta-ghost:hover { border-color: white; background: rgba(255,255,255,0.12); }

/* ── FOOTER ── */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: 0.84rem;
  color: #6b7280;
  line-height: 1.65;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.18s;
}
.social-btn:hover { background: var(--blue); color: white; }

.footer-col h4 {
  color: #e5e7eb;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.86rem;
  margin-bottom: 11px;
  transition: color 0.18s;
}
.footer-col a:hover { color: #e5e7eb; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.78rem;
  color: #4b5563;
}

/* ── PLATFORM FEATURES ── */
.platform-features {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.platform-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: box-shadow 0.22s, transform 0.22s;
}
.platform-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.platform-icon { font-size: 1.8rem; margin-bottom: 14px; }
.platform-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.platform-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── POWER STATEMENT ── */
.power-statement {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0,136,217,0.05) 0%, rgba(0,136,217,0.02) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.power-statement p {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
}
.power-statement em { color: var(--blue); font-style: normal; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(140deg, #002b4d 0%, #0066a6 50%, #0088d9 100%);
  padding: 56px 0;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ── KPI SECTION ── */
.kpi-section {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kpi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.kpi-card-accent { background: var(--blue); border-color: var(--blue); }
.kpi-card-accent .kpi-label { color: rgba(255,255,255,0.72); }
.kpi-card-accent .kpi-value { color: white; }
.kpi-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.kpi-value {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1;
}

/* ── DEAL SNAPSHOT ── */
.deal-snapshot-section { padding: 48px 0; }
.deal-snapshot-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.deal-snapshot-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.deal-snapshot-card > p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.92rem; }
.deal-snapshot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.snapshot-stat span:not(.status-badge) {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.snapshot-stat label { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; }

/* ── POSITIONING ── */
.positioning-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  text-align: center;
}
.positioning-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.positioning-content p { color: rgba(255,255,255,0.82); margin-bottom: 28px; font-size: 1rem; }
.btn-orange-solid {
  display: inline-block;
  padding: 13px 30px;
  background: white;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-size: 0.95rem;
}
.btn-orange-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── REVENUE STREAMS ── */
.revenue-section { padding: 72px 0; background: var(--white); border-top: 1px solid var(--border); }
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.revenue-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  text-align: center;
  transition: border-color 0.18s, color 0.18s;
}
.revenue-item:hover { border-color: var(--blue); color: var(--blue); }

/* ── INTAKE FORM ── */
.intake-section { padding: 80px 0; }
.intake-wrapper { max-width: 760px; margin: 0 auto; }
.intake-header { margin-bottom: 36px; }
.intake-header h2 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.intake-header p { color: var(--text-muted); font-size: 0.92rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,136,217,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--blue-dark); }

/* ── DASHBOARD ── */
.dash-section { padding: 48px 0 80px; }
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.btn-new-deal {
  padding: 10px 22px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s;
}
.btn-new-deal:hover { background: var(--orange-dark); }

.deal-table-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.deal-table { width: 100%; border-collapse: collapse; text-align: left; }
.deal-table thead { background: var(--bg); }
.deal-table th {
  padding: 13px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.deal-table td {
  padding: 15px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.deal-table tr:last-child td { border-bottom: none; }
.deal-table tbody tr:hover { background: rgba(0,136,217,0.03); }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}
.status-secured     { background: rgba(0,136,217,0.12); color: var(--blue); }
.status-negotiation { background: rgba(255,139,0,0.12);  color: var(--orange); }
.status-prospect    { background: rgba(0,0,0,0.06);      color: var(--text-muted); }

.inventory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.inventory-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.inventory-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.inventory-list { list-style: none; }
.inventory-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text-muted);
}
.inventory-list li:last-child { border-bottom: none; }
.inventory-list li strong { color: var(--text); font-weight: 600; }

.dash-cta { text-align: center; padding: 32px 0 16px; }
.dash-cta h2 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .search-box { flex-wrap: wrap; }
  .search-destination { flex: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .search-divider { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-snapshot-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.1rem; }
  .nav-links { display: none; }
  .platform-grid { grid-template-columns: 1fr; }
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .inventory-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.9rem; }
  .destinations-grid,
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); text-align: center; padding: 0; }
  .cta-content h2 { font-size: 1.7rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .destinations-grid,
  .deals-grid { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr; }
  .stats-bar   { gap: 24px; }
  .stat-divider { display: none; }
  .search-btn  { width: calc(100% - 12px); margin: 0 6px 6px; }
}
