/* ============================================================
   TripGain — Premium Frontend CSS
   Consumer-grade travel platform design language
   ============================================================ */

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #60A5FA;
  --secondary: #14B8A6;
  --secondary-dark: #0D9488;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  --success-bg: #ECFDF5;
  --warning-bg: #FFFBEB;
  --danger-bg: #FEF2F2;
  --info-bg: #EFF6FF;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08),0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07),0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08),0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1),0 8px 10px -6px rgba(0,0,0,0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 20px rgba(37,99,235,0.15);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }
.container-wide { max-width: 1400px; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; color: var(--navy); }
.display-1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -1.5px; }
.display-2 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -1px; }
.display-3 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); letter-spacing: -0.5px; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); text-align: center; margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-500); text-align: center; max-width: 600px; margin: 0 auto 48px; line-height: 1.6; }

.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; font-size: 0.95rem; font-weight: 600; border-radius: var(--radius); transition: all var(--transition); position: relative; overflow: hidden; border: 2px solid transparent; }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-100%); transition: transform 0.4s; }
.btn:hover::after { transform: translateX(0); }
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 6px 20px rgba(37,99,235,0.4); transform: translateY(-2px); }

.btn-secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); box-shadow: 0 4px 14px rgba(20,184,166,0.3); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); box-shadow: 0 6px 20px rgba(20,184,166,0.4); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-xl { padding: 18px 44px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }
.btn-icon-only { width: 44px; height: 44px; padding: 0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; }

/* ===================== HEADER / NAVIGATION ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229,231,235,0.5);
  transition: all var(--transition);
  height: var(--header-h);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.header-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.header-logo .logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: var(--gray-600); border-radius: var(--radius); transition: all 0.2s; position: relative; }
.header-nav a:hover { color: var(--primary); background: rgba(37,99,235,0.06); }
.header-nav a.active { color: var(--primary); font-weight: 600; }

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

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.5); backdrop-filter: blur(4px);
  z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-inner {
  width: 100%; max-width: 400px; margin-left: auto;
  background: var(--white); height: 100%; padding: 24px;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-inner { transform: translateX(0); }
.mobile-nav a { display: block; padding: 14px 16px; font-size: 1rem; font-weight: 500; color: var(--gray-700); border-radius: var(--radius); transition: all 0.2s; }
.mobile-nav a:hover { background: var(--gray-50); color: var(--primary); }
.mobile-nav .mobile-divider { height: 1px; background: var(--gray-200); margin: 16px 0; }
.mobile-nav .mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* ===================== HERO SECTIONS ===================== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 680px; }
.hero-content.centered { text-align: center; margin: 0 auto; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; background: rgba(37,99,235,0.1); border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 24px; backdrop-filter: blur(4px); }
.hero-title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--navy); }
.hero-title.light { color: var(--white); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--gray-500); line-height: 1.7; margin-bottom: 36px; max-width: 540px; }
.hero-subtitle.light { color: rgba(255,255,255,0.8); }
.hero-subtitle.centered { margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions.centered { justify-content: center; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.hero-stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy); }
.hero-stat-value.light { color: var(--white); }
.hero-stat-label { font-size: 0.9rem; color: var(--gray-500); margin-top: 4px; }
.hero-stat-label.light { color: rgba(255,255,255,0.7); }
.hero-visual { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); width: 50%; max-width: 600px; z-index: 2; }

/* Hero variants */
.hero-gradient { background: linear-gradient(160deg, #0B1120 0%, #162032 40%, #0F1B3D 70%, #0B1120 100%); }
.hero-gradient .hero-title { color: var(--white); }
.hero-gradient .hero-subtitle { color: rgba(255,255,255,0.7); }
.hero-gradient .hero-tag { background: rgba(37,99,235,0.2); color: var(--primary-light); }

.hero-subtle { background: linear-gradient(180deg, #EFF6FF 0%, var(--white) 100%); }

.hero-page {
  padding: 120px 0 60px; min-height: auto;
  background: linear-gradient(180deg, #EFF6FF 0%, var(--white) 100%);
}
.hero-page .hero-title { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.hero-page .hero-subtitle { font-size: 1rem; }

/* ===================== SECTION COMMON ===================== */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===================== FEATURE CARDS ===================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.feature-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px 28px;
  border: 1px solid var(--gray-200); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .fc-icon { width: 56px; height: 56px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.feature-card .fc-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.feature-card .fc-icon.teal { background: rgba(20,184,166,0.1); color: var(--secondary); }
.feature-card .fc-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.feature-card .fc-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.feature-card .fc-icon.rose { background: rgba(244,63,94,0.1); color: #F43F5E; }
.feature-card .fc-icon.indigo { background: rgba(99,102,241,0.1); color: #6366F1; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.6; }

.feature-card.simple { text-align: center; padding: 32px 24px; }
.feature-card.simple .fc-icon { margin: 0 auto 20px; }

/* Alt feature layout (image + text alternating) */
.feature-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 40px 0; }
.feature-alt.reverse { direction: rtl; }
.feature-alt.reverse > * { direction: ltr; }
.feature-alt-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.feature-alt-image img { width: 100%; height: auto; }
.feature-alt-content h3 { font-size: 1.5rem; margin-bottom: 16px; }
.feature-alt-content p { color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.feature-alt-content .feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-alt-content .feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--gray-700); }
.feature-alt-content .feature-list li::before { content: '✓'; color: var(--secondary); font-weight: 700; font-size: 1.1rem; }

/* ===================== PRICING CARDS ===================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }

.pricing-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px 32px;
  border: 1px solid var(--gray-200); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-xl); transform: scale(1.04); }
.pricing-card.featured:hover { transform: scale(1.06); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card.featured:hover { transform: scale(1.06); }
.pricing-popular { position: absolute; top: 20px; right: -30px; background: var(--primary); color: var(--white); padding: 6px 40px; font-size: 0.8rem; font-weight: 700; transform: rotate(45deg); }
.pricing-card .plan-name { font-size: 1.1rem; font-weight: 600; color: var(--gray-500); margin-bottom: 8px; }
.pricing-card .plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--navy); }
.pricing-card .plan-price span { font-size: 1rem; color: var(--gray-400); font-weight: 500; }
.pricing-card .plan-desc { color: var(--gray-500); font-size: 0.9rem; margin: 12px 0 24px; }
.pricing-card .plan-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-card .plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-600); }
.pricing-card .plan-features li .pf-icon { color: var(--secondary); font-weight: 700; font-size: 1rem; width: 20px; text-align: center; }
.pricing-card .plan-features li .pf-icon.muted { color: var(--gray-300); }

/* Pricing toggle */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.pricing-toggle span { font-size: 0.95rem; font-weight: 500; color: var(--gray-600); }
.pricing-toggle span.active { color: var(--navy); font-weight: 600; }
.pricing-toggle .toggle-track { width: 48px; height: 26px; border-radius: 13px; background: var(--gray-300); position: relative; cursor: pointer; transition: background 0.3s; }
.pricing-toggle .toggle-track.active { background: var(--primary); }
.pricing-toggle .toggle-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); transition: transform 0.3s; box-shadow: var(--shadow-sm); }
.pricing-toggle .toggle-track.active::after { transform: translateX(22px); }
.pricing-toggle .save-badge { padding: 2px 10px; background: rgba(20,184,166,0.1); color: var(--secondary); font-size: 0.75rem; font-weight: 700; border-radius: 100px; }

/* ===================== TESTIMONIAL CARDS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 32px;
  border: 1px solid var(--gray-200); transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card .tc-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-card .tc-stars span { color: var(--accent); font-size: 1.1rem; }
.testimonial-card .tc-quote { font-size: 1rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card .tc-author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .tc-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card .tc-avatar-placeholder { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.testimonial-card .tc-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial-card .tc-role { font-size: 0.85rem; color: var(--gray-500); }

/* Testimonial carousel */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 12px; }
.testimonial-slide .testimonial-card { margin: 0; max-width: 700px; margin: 0 auto; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: all 0.3s; border: none; }
.carousel-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }
.carousel-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.carousel-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gray-600); transition: all 0.2s; background: var(--white); }
.carousel-arrow:hover { border-color: var(--primary); color: var(--primary); background: rgba(37,99,235,0.05); }

/* ===================== BLOG CARDS ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.blog-card .bc-image { width: 100%; height: 220px; object-fit: cover; }
.blog-card .bc-body { padding: 24px; }
.blog-card .bc-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 10px; }
.blog-card .bc-category { padding: 3px 12px; background: rgba(37,99,235,0.1); color: var(--primary); border-radius: 100px; font-weight: 600; font-size: 0.75rem; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--navy); transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .bc-excerpt { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.blog-card .bc-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-card .bc-link:hover { gap: 10px; }

/* ===================== TEAM CARDS ===================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.team-card { text-align: center; background: var(--white); border-radius: var(--radius-xl); padding: 32px 24px; border: 1px solid var(--gray-200); transition: all var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card .tc-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; object-fit: cover; }
.team-card .tc-avatar-placeholder { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 2rem; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .tc-role { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 8px; }
.team-card .tc-bio { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }
.team-card .tc-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-card .tc-social a { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--gray-400); transition: all 0.2s; background: var(--gray-100); }
.team-card .tc-social a:hover { background: var(--primary); color: var(--white); }

/* ===================== STATS COUNTER ===================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-item { text-align: center; }
.stat-item .stat-number { font-family: var(--font-display); font-size: 2.75rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item .stat-label { font-size: 0.95rem; color: var(--gray-500); margin-top: 6px; }

/* ===================== CONTACT FORM ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius); border: 2px solid var(--gray-200);
  font-size: 0.95rem; color: var(--gray-800); background: var(--white);
  transition: all 0.2s; font-family: inherit;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: var(--gray-300); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-select { appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: all 0.2s; }
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.contact-info-card .cic-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.contact-info-card .cic-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.contact-info-card .cic-icon.teal { background: rgba(20,184,166,0.1); color: var(--secondary); }
.contact-info-card .cic-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.contact-info-card .cic-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }

/* ===================== CTA SECTIONS ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(20,184,166,0.15) 0%, transparent 50%); }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-email-form { display: flex; gap: 0; max-width: 500px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.cta-email-form input { flex: 1; padding: 16px 20px; border: none; font-size: 1rem; outline: none; }
.cta-email-form button { padding: 16px 32px; background: var(--navy); color: var(--white); font-size: 1rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s; }
.cta-email-form button:hover { background: var(--navy-light); }

/* ===================== LOGO GRID (Trusted By) ===================== */
.logo-grid { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.5; }
.logo-grid-item { height: 32px; filter: grayscale(1); transition: all 0.3s; }
.logo-grid-item:hover { filter: grayscale(0); opacity: 1; }
.logo-grid-item img { height: 100%; width: auto; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-brand .footer-logo .logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s; font-size: 1rem; }
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-newsletter { margin-top: 24px; }
.footer-newsletter p { font-size: 0.85rem; margin-bottom: 12px; }
.footer-newsletter-form { display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.footer-newsletter-form input { flex: 1; padding: 10px 14px; border: none; font-size: 0.85rem; outline: none; background: rgba(255,255,255,0.08); color: var(--white); }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form button { padding: 10px 18px; background: var(--primary); color: var(--white); border: none; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.footer-newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom { margin-top: 48px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===================== HOW IT WORKS ===================== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary), transparent); }
.how-step { text-align: center; position: relative; }
.how-step .step-number { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin: 0 auto 24px; position: relative; z-index: 2; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.how-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.how-step p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; max-width: 260px; margin: 0 auto; }

/* ===================== FAQ ACCORDION ===================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; transition: all 0.2s; }
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--gray-800); cursor: pointer; transition: all 0.2s; width: 100%; text-align: left; background: none; border: none; gap: 16px; }
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-question .faq-icon { font-size: 1.2rem; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 24px; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }

/* ===================== COMPARISON TABLE ===================== */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--gray-200); }
.comparison-table thead th { padding: 18px 24px; font-size: 0.9rem; font-weight: 700; text-align: left; background: var(--gray-50); border-bottom: 2px solid var(--gray-200); color: var(--gray-700); }
.comparison-table thead th:first-child { background: var(--white); }
.comparison-table tbody td { padding: 14px 24px; font-size: 0.9rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--gray-50); }
.comparison-table .check { color: var(--secondary); font-weight: 700; }
.comparison-table .cross { color: var(--gray-300); }
.comparison-table .highlight { background: rgba(37,99,235,0.03); }

/* ===================== TIMELINE ===================== */
.timeline { position: relative; padding: 0; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary), transparent); }
.timeline-item { position: relative; padding-left: 64px; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: 14px; top: 4px; width: 22px; height: 22px; border-radius: 50%; background: var(--white); border: 3px solid var(--primary); display: flex; align-items: center; justify-content: center; }
.timeline-dot.completed { background: var(--primary); }
.timeline-dot .dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.timeline-dot.completed .dot-inner { background: var(--white); }
.timeline-content { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px 24px; }
.timeline-content .tl-year { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.timeline-content h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-content p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }

/* ===================== COOKIE CONSENT ===================== */
.cookie-consent { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 420px; background: var(--navy); color: var(--white); border-radius: var(--radius-xl); padding: 24px; z-index: 9999; box-shadow: var(--shadow-2xl); transform: translateY(120%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.cookie-consent.show { transform: translateY(0); }
.cookie-consent h4 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.cookie-consent p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; margin-bottom: 16px; }
.cookie-consent .cookie-actions { display: flex; gap: 10px; }
.cookie-consent .cookie-actions .btn { border-radius: var(--radius); }

/* ===================== CHAT WIDGET ===================== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; }
.chat-toggle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 20px rgba(37,99,235,0.35); cursor: pointer; transition: all 0.3s; border: none; }
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,99,235,0.45); }
.chat-panel { position: absolute; bottom: 68px; right: 0; width: 360px; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-2xl); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.95); transition: all 0.3s; transform-origin: bottom right; }
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header { padding: 18px 20px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); }
.chat-header h4 { font-size: 1rem; color: var(--white); margin-bottom: 2px; }
.chat-header p { font-size: 0.8rem; opacity: 0.8; }
.chat-messages { padding: 16px; height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 80%; padding: 10px 14px; border-radius: var(--radius-lg); font-size: 0.85rem; line-height: 1.5; }
.chat-msg.support { background: var(--gray-100); color: var(--gray-800); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--primary); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input-wrap { display: flex; padding: 12px 16px; border-top: 1px solid var(--gray-200); gap: 8px; }
.chat-input-wrap input { flex: 1; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 0.85rem; outline: none; }
.chat-input-wrap input:focus { border-color: var(--primary); }
.chat-input-wrap button { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; border: none; cursor: pointer; flex-shrink: 0; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-500); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-500); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--gray-300); }
.breadcrumb .current { color: var(--gray-700); font-weight: 500; }

/* ===================== HELP CENTER SEARCH ===================== */
.help-search { max-width: 640px; margin: 0 auto 48px; }
.help-search-box { display: flex; align-items: center; background: var(--white); border-radius: var(--radius-xl); padding: 4px; box-shadow: var(--shadow-lg); border: 2px solid transparent; transition: all 0.2s; }
.help-search-box:focus-within { border-color: var(--primary); }
.help-search-box input { flex: 1; padding: 16px 20px; border: none; font-size: 1rem; outline: none; background: transparent; }
.help-search-box button { padding: 14px 32px; background: var(--primary); color: var(--white); border-radius: var(--radius-lg); font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.help-search-box button:hover { background: var(--primary-dark); }

/* ===================== SUPPORT CARDS ===================== */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.support-card { padding: 32px; border-radius: var(--radius-xl); border: 1px solid var(--gray-200); text-align: center; transition: all var(--transition); background: var(--white); }
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.support-card .sc-icon { width: 56px; height: 56px; border-radius: var(--radius-lg); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.support-card .sc-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.support-card .sc-icon.teal { background: rgba(20,184,166,0.1); color: var(--secondary); }
.support-card .sc-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.support-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.support-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.support-card .btn { margin-top: auto; }

/* ===================== SIDEBAR (User Dashboard) ===================== */
.dashboard-layout { display: flex; min-height: 100vh; padding-top: var(--header-h); }
.dashboard-sidebar {
  width: 280px; background: var(--navy); flex-shrink: 0;
  padding: 24px 16px; display: flex; flex-direction: column;
  position: fixed; top: var(--header-h); left: 0; bottom: 0; overflow-y: auto;
  z-index: 100; transition: transform 0.3s;
}
.dashboard-sidebar::-webkit-scrollbar { width: 4px; }
.dashboard-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.dash-nav-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.3); padding: 16px 12px 8px; }
.dash-nav-item { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius); color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; transition: all 0.15s; }
.dash-nav-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.dash-nav-item.active { background: rgba(37,99,235,0.2); color: var(--white); font-weight: 600; }
.dash-nav-item .nav-icon { width: 20px; text-align: center; font-size: 1.1rem; }
.dash-nav-item .nav-badge { margin-left: auto; padding: 2px 8px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; background: var(--danger); color: var(--white); }

.dashboard-main { flex: 1; margin-left: 280px; min-height: 100vh; background: var(--off-white); }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: var(--header-h); z-index: 99; }
.dash-topbar h2 { font-size: 1.3rem; }
.dash-topbar-right { display: flex; align-items: center; gap: 16px; }
.dash-topbar-right .dash-notif { position: relative; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gray-500); background: var(--gray-100); cursor: pointer; transition: all 0.2s; }
.dash-topbar-right .dash-notif:hover { background: var(--gray-200); color: var(--gray-700); }
.dash-topbar-right .dash-notif .notif-dot { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--danger); border: 2px solid var(--white); }
.dash-user { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 12px 6px 6px; border-radius: var(--radius); transition: background 0.2s; }
.dash-user:hover { background: var(--gray-100); }
.dash-user-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.dash-user-avatar-placeholder { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.9rem; }
.dash-user-info .dash-user-name { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); }
.dash-user-info .dash-user-role { font-size: 0.75rem; color: var(--gray-500); }

.dash-content { padding: 32px; }

/* Dashboard widgets */
.dash-widget-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.dash-widget { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-200); transition: all 0.2s; }
.dash-widget:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dash-widget .dw-row { display: flex; align-items: flex-start; justify-content: space-between; }
.dash-widget .dw-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.dash-widget .dw-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.dash-widget .dw-icon.teal { background: rgba(20,184,166,0.1); color: var(--secondary); }
.dash-widget .dw-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.dash-widget .dw-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.dash-widget .dw-label { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 4px; }
.dash-widget .dw-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.dash-widget .dw-change { font-size: 0.8rem; display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 100px; margin-top: 8px; }
.dash-widget .dw-change.up { background: var(--success-bg); color: var(--success); }
.dash-widget .dw-change.down { background: var(--danger-bg); color: var(--danger); }

.dash-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; margin-bottom: 24px; }
.dash-card-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--gray-100); }
.dash-card-header h3 { font-size: 1rem; }
.dash-card-body { padding: 24px; }

/* Quick action cards */
.quick-actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-action { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 16px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); background: var(--white); transition: all 0.2s; cursor: pointer; text-align: center; }
.quick-action:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.quick-action .qa-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.quick-action .qa-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.quick-action .qa-icon.teal { background: rgba(20,184,166,0.1); color: var(--secondary); }
.quick-action .qa-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.quick-action .qa-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.quick-action span { font-size: 0.9rem; font-weight: 600; color: var(--gray-700); }

/* Booking cards */
.booking-card { display: flex; align-items: center; gap: 20px; padding: 20px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); margin-bottom: 16px; transition: all 0.2s; }
.booking-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-2px); }
.booking-card .bc-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.booking-card .bc-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.booking-card .bc-info { flex: 1; min-width: 0; }
.booking-card .bc-info h4 { font-size: 1rem; margin-bottom: 4px; }
.booking-card .bc-info p { font-size: 0.85rem; color: var(--gray-500); }
.booking-card .bc-status { padding: 4px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }
.booking-card .bc-status.confirmed { background: var(--success-bg); color: var(--success); }
.booking-card .bc-status.pending { background: var(--warning-bg); color: var(--accent); }
.booking-card .bc-status.cancelled { background: var(--danger-bg); color: var(--danger); }
.booking-card .bc-status.completed { background: var(--info-bg); color: var(--info); }
.booking-card .bc-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Notification list */
.notif-list { display: flex; flex-direction: column; }
.notif-item { display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--gray-100); transition: background 0.15s; cursor: pointer; }
.notif-item:hover { background: var(--gray-50); }
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { background: rgba(37,99,235,0.03); }
.notif-item .ni-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.notif-item .ni-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.notif-item .ni-icon.teal { background: rgba(20,184,166,0.1); color: var(--secondary); }
.notif-item .ni-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.notif-item .ni-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.notif-item .ni-body { flex: 1; }
.notif-item .ni-body .ni-text { font-size: 0.9rem; color: var(--gray-700); }
.notif-item .ni-body .ni-time { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }
.notif-item .ni-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 6px; }

/* ===================== TABS ===================== */
.dash-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 24px; }
.dash-tab { padding: 12px 24px; font-size: 0.9rem; font-weight: 500; color: var(--gray-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; background: none; border-left: none; border-right: none; border-top: none; font-family: inherit; }
.dash-tab:hover { color: var(--gray-700); }
.dash-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.dash-tab .tab-count { padding: 2px 8px; border-radius: 100px; background: var(--gray-100); color: var(--gray-600); font-size: 0.75rem; font-weight: 600; margin-left: 6px; }
.dash-tab.active .tab-count { background: rgba(37,99,235,0.1); color: var(--primary); }

/* ===================== PROFILE CARD ===================== */
.profile-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--gray-200); margin-bottom: 24px; }
.profile-cover { height: 180px; background: linear-gradient(135deg, var(--primary), var(--secondary)); position: relative; }
.profile-avatar-wrap { position: absolute; bottom: -48px; left: 32px; }
.profile-avatar { width: 96px; height: 96px; border-radius: 50%; border: 4px solid var(--white); object-fit: cover; box-shadow: var(--shadow-lg); }
.profile-avatar-placeholder { width: 96px; height: 96px; border-radius: 50%; border: 4px solid var(--white); background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 2rem; box-shadow: var(--shadow-lg); }
.profile-avatar-upload { position: absolute; bottom: -12px; right: -8px; width: 32px; height: 32px; border-radius: 50%; background: var(--white); border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.8rem; color: var(--gray-500); transition: all 0.2s; box-shadow: var(--shadow-sm); }
.profile-avatar-upload:hover { border-color: var(--primary); color: var(--primary); }
.profile-body { padding: 68px 32px 32px; }
.profile-body .profile-name { font-size: 1.3rem; margin-bottom: 2px; }
.profile-body .profile-role { font-size: 0.9rem; color: var(--gray-500); }
.profile-body .profile-meta { display: flex; gap: 24px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-100); flex-wrap: wrap; }
.profile-body .profile-meta-item { font-size: 0.85rem; color: var(--gray-500); }
.profile-body .profile-meta-item strong { color: var(--gray-800); font-weight: 600; }

/* ===================== MESSAGE VIEW ===================== */
.message-list { display: flex; flex-direction: column; }
.message-item { display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--gray-100); transition: background 0.15s; cursor: pointer; }
.message-item:hover { background: var(--gray-50); }
.message-item.unread { background: rgba(37,99,235,0.03); }
.message-item .mi-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.message-item .mi-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.message-item .mi-body { flex: 1; min-width: 0; }
.message-item .mi-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.message-item .mi-name { font-weight: 600; font-size: 0.9rem; color: var(--gray-800); }
.message-item .mi-time { font-size: 0.8rem; color: var(--gray-400); }
.message-item .mi-preview { font-size: 0.85rem; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===================== DOCUMENT ICONS ===================== */
.doc-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 12px; transition: all 0.2s; }
.doc-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.doc-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.doc-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.doc-icon.teal { background: rgba(20,184,166,0.1); color: var(--secondary); }
.doc-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.doc-icon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.doc-info { flex: 1; }
.doc-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.doc-info p { font-size: 0.8rem; color: var(--gray-500); }
.doc-status { padding: 3px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.doc-status.valid { background: var(--success-bg); color: var(--success); }
.doc-status.expiring { background: var(--warning-bg); color: var(--accent); }
.doc-status.expired { background: var(--danger-bg); color: var(--danger); }

/* ===================== APPROVAL CARDS ===================== */
.approval-card { display: flex; align-items: center; gap: 20px; padding: 20px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); margin-bottom: 16px; transition: all 0.2s; }
.approval-card:hover { box-shadow: var(--shadow-md); }
.approval-card .ac-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.approval-card .ac-icon.blue { background: rgba(37,99,235,0.1); color: var(--primary); }
.approval-card .ac-info { flex: 1; }
.approval-card .ac-info h4 { font-size: 1rem; margin-bottom: 4px; }
.approval-card .ac-info p { font-size: 0.85rem; color: var(--gray-500); }
.approval-card .ac-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ===================== SETTINGS FORM ===================== */
.settings-section { margin-bottom: 32px; }
.settings-section h3 { font-size: 1.1rem; margin-bottom: 4px; }
.settings-section .settings-desc { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 20px; }
.settings-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 28px; }
.settings-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--gray-100); gap: 16px; }
.settings-row:last-child { border-bottom: none; }
.settings-row .sr-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.settings-row .sr-info p { font-size: 0.85rem; color: var(--gray-500); }
.settings-row .sr-actions { flex-shrink: 0; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-fade-left { animation: fadeLeft 0.6s ease forwards; }
.animate-fade-right { animation: fadeRight 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.4s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

/* Stagger animation helpers */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 1024px) {
  .features-grid, .testimonials-grid, .blog-grid, .support-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-content.centered { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .feature-alt { grid-template-columns: 1fr; gap: 32px; }
  .feature-alt.reverse { direction: ltr; }
  .dashboard-sidebar { transform: translateX(-100%); }
  .dashboard-sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-left: 0; }
  .dash-widget-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions .btn { display: none; }
  .header-actions .btn-sm { display: inline-flex; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .features-grid, .testimonials-grid, .blog-grid, .support-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .logo-grid { gap: 28px; }
  .logo-grid-item { height: 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .dash-content { padding: 20px; }
  .dash-widget-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dash-topbar { padding: 12px 20px; }
  .cta-email-form { flex-direction: column; border-radius: var(--radius-lg); }
  .cta-email-form input { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .cta-email-form button { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .help-search-box { flex-direction: column; border-radius: var(--radius-lg); }
  .help-search-box input { width: 100%; }
  .help-search-box button { width: 100%; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .profile-avatar-wrap { left: 50%; transform: translateX(-50%); }
  .profile-body { text-align: center; padding-top: 56px; }
  .profile-body .profile-meta { justify-content: center; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .booking-card { flex-wrap: wrap; }
  .approval-card { flex-wrap: wrap; }
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-table thead th, .comparison-table tbody td { padding: 12px 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .dash-widget-grid { grid-template-columns: 1fr; }
  .quick-actions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-panel { width: calc(100vw - 32px); right: 0; }
  .cookie-consent { left: 16px; right: 16px; }
  .dash-topbar h2 { font-size: 1.1rem; }
}

/* ===================== LEGAL PAGES ===================== */
.legal-page { background: var(--bg-primary); min-height: 60vh; }
.legal-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%); padding: 80px 0 60px; text-align: center; color: #fff; }
.legal-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.legal-subtitle { font-size: 1rem; opacity: 0.85; }
.legal-content { padding: 48px 0 80px; max-width: 860px; margin: 0 auto; }
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--royal); }
.legal-section h3 { font-size: 1.1rem; color: var(--royal); margin: 20px 0 8px; }
.legal-section p { line-height: 1.8; color: var(--gray-600); margin-bottom: 12px; font-size: 0.95rem; }
.legal-section ul { padding-left: 24px; margin-bottom: 12px; }
.legal-section ul li { line-height: 1.8; color: var(--gray-600); margin-bottom: 6px; font-size: 0.95rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.legal-table th { background: var(--navy); color: #fff; padding: 10px 16px; text-align: left; }
.legal-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); }
.legal-consent-banner { background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); border: 1px solid #c7d2fe; border-radius: 12px; padding: 20px 24px; margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.legal-consent-banner p { margin: 0; color: var(--navy); font-weight: 500; flex: 1; }
.legal-consent-confirmed { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border: 1px solid #bbf7d0; border-radius: 12px; padding: 14px 20px; margin-bottom: 32px; display: flex; align-items: center; gap: 10px; color: #16a34a; font-weight: 500; font-size: 0.9rem; }
.legal-consent-confirmed svg { flex-shrink: 0; }
.legal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.legal-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 28px; text-decoration: none; transition: all 0.3s ease; display: flex; flex-direction: column; }
.legal-card:hover { border-color: var(--royal); box-shadow: 0 8px 30px rgba(37,99,235,0.1); transform: translateY(-2px); }
.legal-card-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%); display: flex; align-items: center; justify-content: center; color: var(--royal); margin-bottom: 16px; }
.legal-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.legal-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.legal-card-cta { font-size: 0.85rem; font-weight: 600; color: var(--royal); }
@media (max-width: 768px) {
  .legal-hero { padding: 60px 0 40px; }
  .legal-hero h1 { font-size: 1.8rem; }
  .legal-content { padding: 28px 0 60px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-consent-banner { flex-direction: column; text-align: center; }
}

/* ===================== AUTH PAGES ===================== */
.auth-section { background: var(--bg-primary); min-height: calc(100vh - 140px); display: flex; align-items: center; padding: 60px 0; }
.auth-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 1px solid var(--gray-200); padding: 40px; max-width: 480px; margin: 0 auto; width: 100%; }
.auth-card-sm { max-width: 420px; }
.auth-logo { display: block; width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--royal)); border-radius: 12px; color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h1 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.auth-header p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 4px; }
.auth-field label { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); }
.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="tel"],
.auth-field input[type="password"],
.auth-field input[type="number"],
.auth-field select { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: 8px; font-size: 0.9rem; color: var(--gray-800); transition: border-color 0.2s; background: #fff; }
.auth-field input:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.auth-field .auth-forgot { font-size: 0.8rem; color: var(--royal); text-align: right; margin-top: 2px; }
.auth-checkbox { flex-direction: row; }
.auth-checkbox label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 0.82rem; color: var(--gray-600); cursor: pointer; }
.auth-checkbox input[type="checkbox"] { width: auto; }
.auth-alert { padding: 12px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; }
.auth-alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.auth-alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-block { width: 100%; justify-content: center; padding: 12px !important; font-size: 0.9rem; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 8px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.auth-divider span { font-size: 0.8rem; color: var(--gray-400); white-space: nowrap; }
.auth-social { display: flex; gap: 12px; }
.auth-social-btn { flex: 1; justify-content: center; gap: 8px; padding: 10px !important; font-size: 0.85rem; }
.auth-footer { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-100); font-size: 0.85rem; color: var(--gray-500); line-height: 1.8; }
.auth-footer a { color: var(--royal); font-weight: 600; }
.auth-hint { font-size: 0.78rem; color: var(--gray-400); margin-top: 4px; }
.auth-verify-icon { text-align: center; font-size: 48px; margin: 8px 0; }
.otp-inputs { display: flex; align-items: center; gap: 8px; justify-content: center; padding: 8px 0; }
.otp-inputs input { width: 44px; height: 52px; text-align: center; font-size: 1.3rem; font-weight: 700; border: 2px solid var(--gray-200); border-radius: 10px; color: var(--navy); }
.otp-inputs input:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.otp-sep { width: 12px; }
.sessions-list { display: flex; flex-direction: column; gap: 4px; }
.session-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--gray-100); transition: background 0.2s; }
.session-item:hover { background: var(--gray-50); }
.session-current { background: #EEF2FF; border-color: #C7D2FE; }
.session-icon { font-size: 24px; width: 40px; text-align: center; }
.session-info { flex: 1; }
.session-device { font-size: 0.9rem; font-weight: 600; color: var(--gray-800); }
.session-badge { display: inline-block; background: var(--royal); color: #fff; padding: 1px 8px; border-radius: 10px; font-size: 0.7rem; margin-left: 6px; }
.session-meta { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }
.session-time { font-size: 0.78rem; color: var(--gray-400); white-space: nowrap; }
@media (max-width: 640px) {
  .auth-card { padding: 24px 20px; }
  .auth-row { grid-template-columns: 1fr; }
  .auth-social { flex-direction: column; }
  .otp-inputs input { width: 38px; height: 46px; font-size: 1.1rem; }
}
