/* =============================================
   TIMEO MARKETING WEBSITE — STYLE.CSS
   Clean, modern, premium SaaS aesthetic
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0066FF;
  --blue-light: #3385FF;
  --blue-dark: #0050CC;
  --teal: #00B4D8;
  --navy: #0A0F1E;
  --navy-mid: #111827;
  --navy-light: #1E2A3B;
  --gray-900: #0F172A;
  --gray-800: #1E293B;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.16), 0 16px 40px rgba(0,0,0,0.08);
  --blue-shadow: 0 8px 32px rgba(0,102,255,0.24);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,102,255,0.35);
}

.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 6px 20px rgba(0,102,255,0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}

.btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: rgba(0,102,255,0.05);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-text { color: var(--navy); }
.logo-dot { color: var(--blue); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

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

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-100);
  background: rgba(255,255,255,0.98);
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
}

.mobile-menu.open {
  display: flex;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% -10%, rgba(0,102,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,180,216,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 5% 90%, rgba(0,102,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,102,255,0.06);
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

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

.hero-headline {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2.5px;
  color: var(--navy);
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* === DASHBOARD MOCKUP === */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: var(--white);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 8px 40px rgba(0,0,0,0.1),
    0 40px 80px rgba(0,0,0,0.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.dashboard-mockup:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.mockup-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
}

.mockup-actions {
  display: flex;
  gap: 6px;
}

.mock-icon {
  width: 24px;
  height: 24px;
  background: var(--gray-200);
  border-radius: 4px;
}

.mockup-body {
  display: flex;
  height: 420px;
}

.mockup-sidebar {
  width: 160px;
  background: var(--navy);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.sidebar-logo {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.sidebar-logo span { color: var(--blue); }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-item:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
}

.sidebar-item.active {
  background: rgba(0,102,255,0.2);
  color: var(--white);
}

.mockup-main {
  flex: 1;
  padding: 20px;
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mock-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.mock-subtitle {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 2px;
}

.mock-badge-green {
  background: rgba(16,185,129,0.1);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

.mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px;
}

.mock-stat-label {
  font-size: 10px;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-weight: 500;
}

.mock-stat-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.mock-stat-trend {
  font-size: 10px;
  font-weight: 600;
  margin-top: 3px;
}

.mock-stat-trend.up { color: var(--success); }

.mock-bookings-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mock-booking-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.mock-booking-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 9px 12px;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-avatar-blue { background: linear-gradient(135deg, #3B82F6, #0066FF); }
.mock-avatar-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.mock-avatar-orange { background: linear-gradient(135deg, #F59E0B, #D97706); }

.mock-booking-info {
  flex: 1;
  overflow: hidden;
}

.mock-booking-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-booking-service {
  font-size: 10px;
  color: var(--gray-500);
}

.mock-status {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  flex-shrink: 0;
}

.mock-status.confirmed {
  background: rgba(16,185,129,0.1);
  color: #059669;
}

.mock-status.pending {
  background: rgba(245,158,11,0.1);
  color: #D97706;
}

.mockup-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-scroll-indicator {
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gray-300));
  animation: scroll-fade 2s ease-in-out infinite;
}

@keyframes scroll-fade {
  0%, 100% { opacity: 0; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === SOCIAL PROOF === */
.social-proof {
  padding: 32px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.proof-label {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.proof-item:hover {
  color: var(--gray-600);
  transform: translateY(-1px);
}

.proof-icon {
  font-size: 22px;
  filter: grayscale(0.3);
}

/* === SECTION SHARED STYLES === */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  background: rgba(0,102,255,0.07);
  color: var(--blue);
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === FEATURES === */
.features {
  padding: 120px 0;
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.feature-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* === INDUSTRIES === */
.industries {
  padding: 120px 0;
  background: var(--gray-50);
}

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

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  border-color: rgba(0,102,255,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.industry-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.industry-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.industry-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}

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

.steps-container {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 20px;
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: 50px;
  padding: 4px 14px;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(0,180,216,0.05) 100%);
  border: 1px solid rgba(0,102,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 260px;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 20px;
  flex-shrink: 0;
}

.connector-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gray-200), var(--blue), var(--gray-200));
}

.connector-arrow {
  color: var(--blue);
  font-size: 18px;
  margin-top: -2px;
}

/* === TESTIMONIAL === */
.testimonial-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F2352 100%);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  position: relative;
}

.testimonial-quote {
  font-size: 80px;
  line-height: 0.5;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.4;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: white;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
}

.testimonial-location {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.testimonial-stars {
  color: #FBB820;
  font-size: 16px;
  margin-left: 8px;
  letter-spacing: 2px;
}

/* === PRICING === */
.pricing {
  padding: 120px 0;
  background: var(--gray-50);
}

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.pricing-featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 20px 60px rgba(10,15,30,0.25);
}

.pricing-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(10,15,30,0.3);
}

.pricing-popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

.pricing-featured .pricing-tier {
  color: rgba(255,255,255,0.5);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-600);
}

.pricing-featured .price-currency {
  color: rgba(255,255,255,0.6);
}

.price-amount {
  font-size: 44px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-featured .price-amount {
  color: var(--white);
}

.price-period {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 500;
}

.pricing-featured .price-period {
  color: rgba(255,255,255,0.45);
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

.pricing-featured .pricing-desc {
  color: rgba(255,255,255,0.5);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.pricing-featured .pricing-features li {
  color: rgba(255,255,255,0.7);
}

.pricing-features .muted {
  color: var(--gray-400);
}

.pricing-featured .pricing-features .muted {
  color: rgba(255,255,255,0.25);
}

.check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-featured .check {
  color: #34D399;
}

.cross {
  color: var(--gray-300);
  flex-shrink: 0;
}

.pricing-featured .btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 4px 20px rgba(0,102,255,0.4);
}

.pricing-featured .btn-outline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}

/* === CTA SECTION === */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2352 60%, #0A1830 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--blue); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-copy a {
  color: rgba(255,255,255,0.45);
}

.footer-copy a:hover {
  color: rgba(255,255,255,0.7);
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grids */
.features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.industries-grid .reveal:nth-child(1) { transition-delay: 0s; }
.industries-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.industries-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.industries-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.industries-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.industries-grid .reveal:nth-child(6) { transition-delay: 0.30s; }
.industries-grid .reveal:nth-child(7) { transition-delay: 0.36s; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* === APP DOWNLOAD BADGES === */
.app-badges {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.app-badges-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: #000;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  min-width: 148px;
}

.app-badge:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.apple-badge svg { color: #fff; flex-shrink: 0; }
.google-badge svg { color: #fff; flex-shrink: 0; }

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.65);
  line-height: 1;
  font-weight: 400;
}

.badge-main {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.2px;
}

/* Hero app badges wrapper */
.hero-app-badges {
  margin-top: -8px;
}

/* === APP DOWNLOAD SECTION === */
.app-download-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.app-download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,102,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(0,180,216,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.app-download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.app-download-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-download-text h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.app-download-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 420px;
}

.app-download-text .app-badges-label {
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
}

/* === PHONE MOCKUP === */
.app-phone-mockup {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-frame {
  width: 220px;
  background: #0d0d0d;
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 72px;
  height: 20px;
  background: #0d0d0d;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.06);
  border-top: none;
}

.phone-screen {
  padding: 8px 14px 20px;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 420px;
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.phone-app-logo {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.phone-app-logo span { color: var(--blue); }

.phone-app-greeting {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}

.phone-qr-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: 14px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.phone-qr-label {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.phone-qr-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.phone-qr-code {
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
  padding: 8px;
  margin: 4px 0;
}

.phone-qr-member-id {
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.phone-qr-status {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 2px 10px;
}

.phone-upcoming-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 0 2px;
}

.phone-booking-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 8px 10px;
}

.phone-booking-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phone-booking-dot.blue { background: var(--blue); }
.phone-booking-dot.purple { background: #8B5CF6; }

.phone-booking-info {
  flex: 1;
}

.phone-booking-title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}

.phone-booking-time {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}

.phone-booking-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}

.phone-booking-badge.confirmed {
  background: rgba(16,185,129,0.15);
  color: #10B981;
}

.phone-booking-badge.pending {
  background: rgba(245,158,11,0.15);
  color: #F59E0B;
  font-size: 16px;
  line-height: 0;
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(0,102,255,0.3) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
  }

  .hero-content {
    max-width: 640px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .hero-subheadline {
    max-width: 560px;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-app-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .app-download-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .app-download-text {
    align-items: center;
  }

  .app-download-text p {
    text-align: center;
    max-width: 500px;
  }
}

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

  .hero-headline {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

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

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

  .steps-container {
    flex-direction: column;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
    height: 40px;
    justify-content: center;
  }

  .connector-arrow {
    transform: rotate(90deg);
  }

  .testimonial-card {
    padding: 40px 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-card {
    padding: 48px 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .proof-logos {
    gap: 28px;
  }

  .mockup-sidebar {
    width: 120px;
  }

  .mockup-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-stats-row .mock-stat-card:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
  }

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

  .section-title {
    font-size: 28px;
    letter-spacing: -1px;
  }
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1424 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  margin-top: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  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='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: #1a2235;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(99,102,241,0.6);
  background: rgba(255,255,255,0.08);
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: 16px;
  padding: 16px 24px;
}

.contact-direct {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.contact-direct a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-direct a:hover {
  color: #fff;
}

/* Hero onboarding note */
.hero-onboarding-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* Responsive contact */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }
}
