/* ============================================================
   TravelRoom — Global Stylesheet
   Color system & typography per brand guide
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --primary: #5A4CE5;
  --primary-dark: #4a3dd0;
  --secondary: #8B7BFF;

  /* Neutral */
  --background: #FAFAFC;
  --surface: #FFFFFF;
  --text-primary: #1C1E2A;
  --text-secondary: #6B7280;
  --border: #ECECF3;

  /* Status */
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Effects */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(28, 30, 42, 0.05);
  --shadow-md: 0 12px 32px rgba(90, 76, 229, 0.12);
  --shadow-lg: 0 24px 60px rgba(90, 76, 229, 0.18);
  --gradient: linear-gradient(135deg, #5A4CE5 0%, #8B7BFF 100%);

  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--text-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* ---------- Typography ---------- */
.display {
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.625rem, 4vw, 2rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-weight: 600;
}

.caption {
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  color: var(--text-secondary);
}

p {
  color: var(--text-secondary);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(56px, 9vw, 110px) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 60px);
}

.section-head h2 {
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-head p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(90, 76, 229, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--secondary);
}

/* App Store badge */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1C1E2A;
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.appstore-badge:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28, 30, 42, 0.25);
}

.appstore-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.appstore-badge .ab-text {
  text-align: left;
  line-height: 1.1;
}

.appstore-badge .ab-small {
  font-size: 0.62rem;
  opacity: 0.85;
  display: block;
}

.appstore-badge .ab-big {
  font-size: 1.18rem;
  font-weight: 600;
}

.appstore-badge.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.badge-soon {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ============================================================
   Header / Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 252, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.brand:hover {
  color: var(--text-primary);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active.btn-primary {
  color: #fff;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Right cluster: language switch + mobile toggle */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  background: var(--surface);
}

.lang-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 13px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

/* English is default — hide Turkish blocks until JS runs */
.l-tr {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-toggle span + span {
  margin-top: 5px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 80px);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(139, 123, 255, 0.22) 0%, rgba(139, 123, 255, 0) 70%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-content h1 {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-content .display {
  margin-bottom: 20px;
}

.hero-content .grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust .stat .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-trust .stat .lbl {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Hero visual / phone */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------- Phone mockup ---------- */
.phone {
  position: relative;
  width: clamp(230px, 26vw, 290px);
  aspect-ratio: 9 / 19.5;
  background: #1C1E2A;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.phone::after {
  /* notch */
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 22px;
  background: #1C1E2A;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--gradient);
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder content inside phone when no screenshot */
.phone-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  text-align: center;
  padding: 30px;
  background: var(--gradient);
}

.phone-placeholder img {
  width: 84px;
  height: 84px;
  opacity: 0.95;
}

.phone-placeholder .ph-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.phone-placeholder .ph-sub {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* ============================================================
   Features
   ============================================================ */
.features {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 123, 255, 0.4);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(90, 76, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.feature-card p {
  font-size: 0.92rem;
}

/* ============================================================
   Screenshots showcase
   ============================================================ */
.shots-row {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.shots-row .phone:nth-child(even) {
  transform: translateY(-24px);
}

.shots-note {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   Interactive Trip Map
   ============================================================ */
.trip-map-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 520px;
  background: linear-gradient(145deg, #f4f2ff 0%, #eef0ff 40%, #f8f6ff 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(139, 123, 255, 0.15);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

.world-map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Animate route lines drawing in */
.map-routes path {
  stroke-dashoffset: 200;
  animation: drawRoute 3s ease forwards;
}

.map-routes path:nth-child(2) { animation-delay: 0.4s; }
.map-routes path:nth-child(3) { animation-delay: 0.8s; }
.map-routes path:nth-child(4) { animation-delay: 0.3s; }
.map-routes path:nth-child(5) { animation-delay: 0.7s; }
.map-routes path:nth-child(6) { animation-delay: 1.1s; }

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

/* ---------- Map pins ---------- */
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 2;
}

.pin-marker {
  width: 28px;
  height: 42px;
  filter: drop-shadow(0 3px 6px rgba(90, 76, 229, 0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
  animation: pinDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.map-pin:nth-child(3) .pin-marker { animation-delay: 0.15s; }
.map-pin:nth-child(4) .pin-marker { animation-delay: 0.3s; }
.map-pin:nth-child(5) .pin-marker { animation-delay: 0.45s; }
.map-pin:nth-child(6) .pin-marker { animation-delay: 0.6s; }
.map-pin:nth-child(7) .pin-marker { animation-delay: 0.75s; }
.map-pin:nth-child(8) .pin-marker { animation-delay: 0.9s; }
.map-pin:nth-child(9) .pin-marker { animation-delay: 1.05s; }
.map-pin:nth-child(10) .pin-marker { animation-delay: 1.2s; }

@keyframes pinDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.3);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.map-pin:hover .pin-marker {
  transform: scale(1.25) translateY(-3px);
  filter: drop-shadow(0 6px 14px rgba(90, 76, 229, 0.5));
}

/* Pulse effect behind pin */
.pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(90, 76, 229, 0.25);
  animation: pinPulse 2.5s ease-out infinite;
}

.map-pin:nth-child(3) .pin-pulse { animation-delay: 0.2s; }
.map-pin:nth-child(4) .pin-pulse { animation-delay: 0.5s; }
.map-pin:nth-child(5) .pin-pulse { animation-delay: 0.8s; }
.map-pin:nth-child(6) .pin-pulse { animation-delay: 1.1s; }
.map-pin:nth-child(7) .pin-pulse { animation-delay: 1.4s; }
.map-pin:nth-child(8) .pin-pulse { animation-delay: 0.3s; }
.map-pin:nth-child(9) .pin-pulse { animation-delay: 0.7s; }
.map-pin:nth-child(10) .pin-pulse { animation-delay: 1.0s; }

@keyframes pinPulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-50%) scale(4);
    opacity: 0;
  }
}

/* Tooltip */
.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  background: rgba(28, 30, 42, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(28, 30, 42, 0.92);
}

.map-pin:hover .pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Map legend ---------- */
.map-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.legend-pin {
  width: 12px;
  height: 18px;
  background: var(--primary);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}

.legend-pin::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.legend-line {
  width: 28px;
  height: 2px;
  background: none;
  border-top: 2px dashed rgba(139, 123, 255, 0.5);
}

/* Map responsive */
@media (max-width: 640px) {
  .map-container {
    aspect-ratio: 3 / 2;
  }

  .pin-marker {
    width: 20px;
    height: 30px;
  }

  .pin-tooltip {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--gradient);
  border-radius: clamp(20px, 4vw, 36px);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 56px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 30px;
}

.cta-band .appstore-badge {
  background: #fff;
  color: #1C1E2A;
}

.cta-band .badge-soon {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #14151f;
  color: #d5d6e0;
  padding: clamp(48px, 6vw, 72px) 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer .brand:hover {
  color: #fff;
}

.footer-about p {
  color: #9b9db0;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #9b9db0;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.82rem;
  color: #82849a;
}

.footer-bottom a {
  color: #82849a;
}

.footer-bottom a:hover {
  color: var(--secondary);
}

/* ============================================================
   Legal / Content pages
   ============================================================ */
.page-hero {
  background: var(--gradient);
  color: #fff;
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 24px;
}

.content h2 {
  color: var(--text-primary);
  margin: 40px 0 14px;
  scroll-margin-top: 90px;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  color: var(--text-primary);
  margin: 26px 0 10px;
}

.content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.content ul {
  margin: 0 0 18px 22px;
  color: var(--text-secondary);
}

.content li {
  margin-bottom: 8px;
}

.content a {
  font-weight: 500;
}

.content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.callout {
  display: flex;
  gap: 14px;
  background: rgba(90, 76, 229, 0.06);
  border: 1px solid rgba(90, 76, 229, 0.18);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 24px 0;
}

.callout.warn {
  background: rgba(245, 158, 11, 0.07);
  border-color: rgba(245, 158, 11, 0.25);
  border-left-color: var(--warning);
}

.callout.danger {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.22);
  border-left-color: var(--error);
}

.callout p {
  margin: 0;
  font-size: 0.92rem;
}

.callout .ico {
  font-size: 1.2rem;
  line-height: 1.4;
}

.update-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 18px 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 460px;
}

th,
td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--background);
  color: var(--text-primary);
  font-weight: 600;
}

td {
  color: var(--text-secondary);
}

tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   Support / Forms
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.support-card .feature-icon {
  margin: 0 auto 18px;
}

.support-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.support-card a {
  font-weight: 600;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}

.form-card.danger-zone {
  border-color: rgba(239, 68, 68, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 76, 229, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 14px;
}

.btn-danger {
  background: var(--error);
  color: #fff;
}

.btn-danger:hover {
  color: #fff;
  background: #dc2626;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .features-grid,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 18px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 0;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .features-grid,
  .support-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shots-row .phone:nth-child(even) {
    transform: none;
  }
}

/* ---------- Form Status Alerts ---------- */
.alert-container {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: formAlertFadeIn 0.3s ease;
  line-height: 1.5;
}
.alert-success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
@keyframes formAlertFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

