/* ===========================================
   sailclub.app Landing Page — Styles
   Dark navy theme, RTL, premium animations
   =========================================== */

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

:root {
  --navy: #0a1628;
  --navy-mid: #0d1b2e;
  --navy-light: #112240;
  --navy-card: #152540;
  --teal: #00d4ff;
  --teal-dark: #0891b2;
  --teal-glow: rgba(0, 212, 255, 0.15);
  --blue-accent: #3b82f6;
  --text-primary: #f0f6ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(0, 212, 255, 0.12);
  --border-hover: rgba(0, 212, 255, 0.3);
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 { font-weight: 700; line-height: 1.25; }

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 0;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px var(--teal));
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-dot { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); background: var(--teal-glow); }

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); }

.mobile-cta {
  color: var(--teal) !important;
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0a1628 0%, #0d1b2e 50%, #091220 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.4;
  animation: float var(--dur, 8s) var(--delay, 0s) ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0) translateX(0); opacity: 0.2; }
  to { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--teal);
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #f0f6ff 0%, #94d8ff 60%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--teal-glow);
  border-color: var(--border-hover);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: var(--teal-glow);
  border-color: var(--teal);
}

.btn-large { padding: 16px 36px; font-size: 1.1rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Phone Mockup Hero ── */
.hero-phones {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: 560px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Shared phone frame */
.phone-frame {
  position: absolute;
  background: #1a1a2e;
  border-radius: 38px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 0 0 10px #0d0d1a,
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(0, 212, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex: 1;
  overflow: hidden;
  border-radius: 36px;
  display: flex;
  align-items: flex-start;
}

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

/* Main phone — front, upright */
.phone-main {
  top: 0;
  right: 0;
  width: 240px;
  height: 490px;
  animation: phone-float-main 6s ease-in-out infinite;
  z-index: 2;
}

/* Secondary phone — behind, tilted left */
.phone-secondary {
  top: 48px;
  left: 0;
  width: 180px;
  height: 380px;
  transform: rotate(-6deg);
  animation: phone-float-sec 6s ease-in-out infinite;
  opacity: 0.92;
  z-index: 1;
}

@keyframes phone-float-main {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes phone-float-sec {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-6px); }
}

/* Floating notification pill */
.hero-badge-float {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 30, 56, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 100px;
  padding: 10px 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.08);
  white-space: nowrap;
  animation: badge-pop 6s ease-in-out infinite;
}

@keyframes badge-pop {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.hbf-icon { font-size: 1.25rem; }

.hbf-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hbf-text strong {
  font-size: 0.78rem;
  color: var(--text-primary);
  font-weight: 700;
}

.hbf-text span {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tag-blue { color: var(--blue-accent); background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }
.tag-teal { color: var(--teal); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Features Grid ── */
.features-overview {
  background: var(--navy-mid);
}

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

.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-card.featured {
  border-color: rgba(0, 212, 255, 0.25);
  background: linear-gradient(135deg, #152540, #0f1e38);
}

.feat-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

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

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── For Members ── */
.for-members {
  background: var(--navy);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-content .section-tag { margin-bottom: 12px; }
.split-content .section-title { margin-bottom: 12px; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.split-content .section-sub { margin: 0 0 32px; max-width: 100%; font-size: 1rem; }

/* ── Screenshots Grid ── */
.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.screenshot-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.screenshot-wrap:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.screenshot-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border);
}

.screenshot-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  padding: 8px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}

.check-list strong { color: var(--text-primary); font-weight: 700; }
.check-list span { color: var(--text-secondary); font-size: 0.9rem; }

/* ── Mockup Cards ── */
.split-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #22c55e; }

.mockup-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-right: auto;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.weather-hour {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  background: var(--navy-card);
  transition: var(--transition);
}

.weather-hour.danger {
  background: rgba(239, 68, 68, 0.1);
}

.w-time { font-size: 0.72rem; color: var(--text-muted); }
.w-icon { font-size: 1.3rem; }
.w-wind { font-size: 0.78rem; font-weight: 700; color: var(--teal); }
.w-wave { font-size: 0.72rem; color: var(--text-secondary); }
.w-alert { font-size: 0.9rem; }

.booking-preview {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.booking-label { color: var(--text-muted); }
.booking-val { color: var(--text-primary); font-weight: 500; }

.booking-status {
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.booking-status.approved {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ── For Managers ── */
.for-managers {
  background: var(--navy-mid);
}

.managers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.mgr-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.mgr-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mgr-card.highlight {
  border-color: rgba(0, 212, 255, 0.2);
  background: linear-gradient(135deg, #152540, #0f1e38);
}

.mgr-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.mgr-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

.mgr-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Managers screenshots strip ── */
.managers-screenshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.mgr-screenshot-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.mgr-screenshot-wrap:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.12);
}

.mgr-screenshot-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border);
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 70%),
    linear-gradient(160deg, #091220, #0a1628, #091220);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 20px var(--teal));
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-note a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-note a:hover { text-decoration: underline; }

/* ── Footer ── */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--teal); }

.footer-copy {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-copy p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Animations on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.features-highlight-banner {
  margin-bottom: 48px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.highlight-icon {
  font-size: 2.2rem;
  background: var(--teal-glow);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.highlight-text strong {
  display: block;
  font-size: 1.15rem;
  color: var(--teal);
  margin-bottom: 6px;
}

.highlight-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .features-highlight-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }
}

/* ── Pricing Section ── */
.pricing {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: rgba(0, 212, 255, 0.35);
  background: linear-gradient(180deg, #182c4c 0%, #112240 100%);
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.08);
}

.pricing-card.featured:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 64px rgba(0, 212, 255, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.pricing-header {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  min-height: 40px;
}

.price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-block: 20px 8px;
}

.price-amount-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  background: linear-gradient(135deg, #f0f6ff 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-block: 8px;
}

.price-billing {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  position: relative;
  padding-right: 24px;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--teal);
  font-weight: 900;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  padding-block: 12px;
  text-align: center;
}

/* Custom banner below grid */
.pricing-custom-banner {
  background: rgba(0, 212, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.custom-icon {
  font-size: 1.8rem;
  background: var(--teal-glow);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.custom-content {
  flex-grow: 1;
}

.custom-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.custom-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ── CTA / Contact Split Section ── */
.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.cta-contact-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: right;
}

.cta-box-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cta-box-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.form-group {
  position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 12px var(--teal-glow);
  background: rgba(10, 22, 40, 0.8);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  position: relative;
}

.spinner {
  animation: rotate 1s linear infinite;
  margin-right: 8px;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.form-message {
  font-size: 0.95rem;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
}

.form-message.visible {
  opacity: 1;
  height: auto;
  padding: 12px;
  margin-top: 16px;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-block: 60px;
  }

  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-phones { max-width: 360px; height: 420px; margin: 0 auto; }
  .phone-main { width: 190px; height: 390px; }
  .phone-secondary { width: 144px; height: 300px; }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .managers-screenshots {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    margin: 0 auto 48px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .pricing-custom-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .cta-demo-box {
    order: -1;
    text-align: center;
  }
  
  .cta-contact-box {
    padding: 32px 20px;
  }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .managers-grid { grid-template-columns: 1fr; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
  .managers-screenshots { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .pricing-grid { gap: 24px; }
}
