/* =============================================
   DIGIGOUP — Design System & Styles
   Ultra-minimalist, high-end, conversion-focused
   ============================================= */

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

/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
  /* Colors — 70/20/10 Rule */
  --primary: #0A192F;
  --primary-light: #112240;
  --primary-dark: #060F1F;
  --bg: #F1F5F9;
  --bg-white: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.85);
  --accent: #00D4FF;
  --accent-glow: rgba(0, 212, 255, 0.3);
  --accent-dark: #00B4D8;
  --text-primary: #0A192F;
  --text-secondary: #475569;
  --text-light: #94A3B8;
  --text-white: #F1F5F9;
  --border: rgba(10, 25, 47, 0.08);
  --shadow: 0 4px 24px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 25, 47, 0.12);
  --shadow-accent: 0 4px 24px rgba(0, 212, 255, 0.25);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

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

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* =============================================
   Utility Classes
   ============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-dark {
  background: var(--primary);
  color: var(--text-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-subtitle {
  color: var(--text-light);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  box-shadow: var(--shadow-accent);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo .logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all var(--transition-fast);
  letter-spacing: 0.5px;
}

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

.nav-cta {
  display: none;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

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

.mobile-menu a {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  animation: heroGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(30px, -20px) scale(1.1); opacity: 0.8; }
}

/* Animated grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s ease-out;
}

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

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

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #00E5FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.8s both;
  flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   Live Data Ticker
   ============================================= */
.ticker {
  background: var(--primary);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.ticker-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--accent);
}

.ticker-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   Services Section
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 212, 255, 0.2);
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: inline-block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* =============================================
   Lead Engine Section
   ============================================= */
.lead-engine {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.lead-engine::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.lead-engine .container {
  position: relative;
  z-index: 2;
}

.lead-engine .section-title {
  color: white;
}

.lead-engine .section-subtitle {
  color: var(--text-light);
}

.lead-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.lead-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: white;
  transition: all var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--primary);
  color: white;
}

.lead-result {
  display: none;
  margin-top: var(--space-xl);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  animation: fadeInUp 0.5s ease-out;
}

.lead-result.active {
  display: block;
}

.lead-result h3 {
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.lead-result ul {
  margin-bottom: var(--space-lg);
}

.lead-result li {
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.9375rem;
}

.lead-result li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto var(--space-3xl);
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-accent);
}

.pricing-card.popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg);
}

.pricing-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Card Header */
.pricing-card-header {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.pricing-tier-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.pricing-card.popular .pricing-tier-label {
  color: var(--accent);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  padding-right: 80px;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Pricing Blocks */
.pricing-block {
  padding: var(--space-lg) var(--space-xl);
}

.pricing-block-setup {
  border-bottom: 1px solid var(--border);
}

.pricing-block-monthly {
  background: rgba(0, 212, 255, 0.03);
  flex: 1;
}

.pricing-card.popular .pricing-block-monthly {
  background: rgba(0, 212, 255, 0.06);
}

.pricing-block-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.pricing-block-label svg {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-block-label > span:nth-child(2) {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.pricing-block-note {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  color: var(--text-light);
  white-space: nowrap;
}

.pricing-block-note--recurring {
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
}

/* Feature Lists */
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-features li {
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  font-size: 0.6875rem;
  margin-top: 1px;
}

.pricing-features--monthly li::before {
  background: rgba(0, 212, 255, 0.18);
}

/* CTA Button */
.pricing-cta {
  width: calc(100% - var(--space-xl) * 2);
  margin: 0 var(--space-xl) var(--space-xl);
  text-align: center;
}

/* Custom Solution Section */
.pricing-custom {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-custom-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  transition: box-shadow var(--transition-base);
}

.pricing-custom-content:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-custom-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.pricing-custom-text p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* =============================================
   References Section
   ============================================= */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.reference-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.reference-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: var(--space-2xl);
  text-align: center;
}

.reference-metric {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.reference-metric-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.reference-body {
  padding: var(--space-xl);
}

.reference-company {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.reference-industry {
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.reference-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.reference-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.comparison-item {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
}

.comparison-before {
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
}

.comparison-after {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
}

.comparison-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  opacity: 0.7;
}

/* =============================================
   About Section
   ============================================= */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.about-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.about-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.about-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.value-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.about-positioning {
  max-width: 600px;
  margin: 0 auto;
}

.positioning-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.positioning-item:last-child {
  border-bottom: none;
}

.positioning-arrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
}

/* =============================================
   Contact Section
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.contact-form .form-group label {
  color: var(--text-primary);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

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

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* File Upload */
.file-upload-area {
  background: var(--bg-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.03);
}

.file-upload-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.file-upload-area h4 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
}

.file-upload-area p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.file-list {
  margin-top: var(--space-md);
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: rgba(0, 212, 255, 0.05);
  border-radius: var(--radius-sm);
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.file-item button {
  color: #DC2626;
  font-size: 0.875rem;
  padding: 2px 8px;
}

/* Success Message */
.success-message {
  display: none;
  padding: var(--space-lg);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: #059669;
  font-weight: 500;
  text-align: center;
  animation: fadeInUp 0.5s ease-out;
}

.success-message.active {
  display: block;
}

/* =============================================
   Booking Section
   ============================================= */
.booking-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.booking-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.booking-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.booking-section .section-title {
  color: white;
}

.booking-section .section-subtitle {
  color: var(--text-light);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--space-xl);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar-header h4 {
  color: white;
  font-family: var(--font-heading);
}

.calendar-header button {
  color: var(--accent);
  font-size: 1.25rem;
  padding: 4px 8px;
}

.calendar-day-name {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: var(--space-sm) 0;
}

.calendar-day {
  text-align: center;
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calendar-day:hover {
  background: rgba(0, 212, 255, 0.15);
  color: white;
}

.calendar-day.selected {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}

.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.time-slot {
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.time-slot:hover {
  border-color: var(--accent);
  color: white;
}

.time-slot.selected {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 600;
}

/* =============================================
   Chatbot
   ============================================= */
.chatbot-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.4);
  z-index: 998;
  transition: all var(--transition-base);
  cursor: pointer;
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(0, 212, 255, 0.5);
}

.chatbot-trigger .notification-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #EF4444;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse 2s infinite;
}

.chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 380px;
  max-height: 520px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 48px rgba(10, 25, 47, 0.2);
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

.chatbot-window.active {
  display: flex;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.chatbot-header-info h4 {
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
}

.chatbot-header-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.chatbot-close {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  max-height: 340px;
}

.chat-message {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.3s ease-out;
}

.chat-message.bot {
  display: flex;
  gap: var(--space-sm);
}

.chat-message.bot .msg-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.chat-message .msg-text {
  background: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 85%;
  white-space: pre-line;
}

.chat-message.user {
  display: flex;
  justify-content: flex-end;
}

.chat-message.user .msg-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0 var(--space-lg) var(--space-md);
}

.chat-option {
  padding: var(--space-sm) var(--space-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chat-option:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
}

.chatbot-input {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border);
}

.chatbot-input input {
  flex: 1;
  padding: 10px;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

.chatbot-input button {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.chatbot-input button:hover {
  transform: scale(1.1);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--primary-dark);
  color: var(--text-white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
}

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

.footer-brand p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-light);
  padding: var(--space-xs) 0;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* =============================================
   Scroll Animations
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Responsive Design — Mobile First
   ============================================= */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .pricing-custom-content {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .ticker-wrap {
    gap: var(--space-xl);
  }

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

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pricing-title {
    padding-right: 70px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .chatbot-window {
    right: var(--space-md);
    left: var(--space-md);
    width: auto;
    bottom: 5.5rem;
  }

  .chatbot-trigger {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

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

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .ticker-wrap {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .reference-comparison {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    gap: 2px;
  }

  .time-slots {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   Scrollbar Styling
   ============================================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* =============================================
   Selection
   ============================================= */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: var(--primary);
}

/* =============================================
   Auth Modal
   ============================================= */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  animation: fadeIn 0.3s ease-out;
}

.auth-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.auth-modal {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  z-index: 10;
  background: var(--bg);
}

.auth-modal-close:hover {
  color: var(--text-primary);
  background: rgba(0, 212, 255, 0.1);
}

.auth-modal-header {
  padding: var(--space-2xl) var(--space-2xl) 0;
  text-align: center;
}

.auth-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
}

.auth-tabs {
  display: flex;
  margin: var(--space-xl) var(--space-2xl) 0;
  background: var(--bg);
  border-radius: var(--radius-full);
  padding: 4px;
}

.auth-tab {
  flex: 1;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.auth-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.2);
}

.auth-form {
  display: none;
  padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.auth-form.active {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

.auth-form .form-group label {
  color: var(--text-primary);
  font-size: 0.875rem;
}

.auth-form .form-group input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  width: 100%;
  transition: all var(--transition-fast);
}

.auth-form .form-group input::placeholder {
  color: var(--text-light);
}

.auth-form .form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: var(--bg-white);
}

/* Password field */
.password-field {
  position: relative;
}

.password-field input {
  padding-right: 3rem !important;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.password-toggle:hover {
  color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
}

/* Auth options */
.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Auth error */
.auth-error {
  display: none;
  padding: var(--space-md);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  color: #DC2626;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  animation: shake 0.4s ease-out;
}

.auth-error.active {
  display: block;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Auth switch */
.auth-switch {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.auth-switch-btn {
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.auth-switch-btn:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Auth success screen */
.auth-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) var(--space-2xl);
  text-align: center;
  animation: fadeInUp 0.5s ease-out;
}

.auth-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: var(--space-xl);
  animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.auth-success-screen h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.auth-success-screen p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* =============================================
   Navbar User & Dropdown
   ============================================= */
.nav-user {
  position: relative;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 4px 12px 4px 4px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-user-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}

.nav-user-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(10, 25, 47, 0.2);
  border: 1px solid var(--border);
  display: none;
  animation: dropdownSlide 0.2s ease-out;
  z-index: 100;
}

.nav-dropdown.active {
  display: block;
}

@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.nav-dropdown-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-dropdown-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nav-dropdown-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-dropdown-email {
  font-size: 0.8125rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-dropdown-item:hover {
  background: var(--bg);
  color: #DC2626;
}

/* Nav auth button for non-logged users */
.nav-auth-btn {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: white !important;
}

.nav-auth-btn:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(0, 212, 255, 0.08) !important;
}

/* Mobile user info */
.mobile-user-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: var(--space-lg);
}

/* =============================================
   Booking Overlay (Login Required)
   ============================================= */
.booking-card {
  position: relative;
}

.booking-card.booking-locked > *:not(.booking-overlay) {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 25, 47, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: var(--radius-xl);
}

.booking-overlay-content {
  text-align: center;
  padding: var(--space-2xl);
  max-width: 400px;
  animation: fadeInUp 0.6s ease-out;
}

.booking-lock-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: var(--accent);
  animation: lockBounce 2s ease-in-out infinite;
}

@keyframes lockBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.booking-overlay-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-md);
}

.booking-overlay-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* =============================================
   KVKK Consent Checkbox
   ============================================= */
.kvkk-consent-group {
  margin-bottom: var(--space-lg);
  margin-top: var(--space-sm);
}

.kvkk-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  user-select: none;
}

.kvkk-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.kvkk-checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.kvkk-checkbox-label input[type="checkbox"]:checked + .kvkk-checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.kvkk-checkbox-label input[type="checkbox"]:checked + .kvkk-checkmark::after {
  content: '✓';
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.kvkk-checkbox-label input[type="checkbox"]:focus + .kvkk-checkmark {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.kvkk-consent-text {
  flex: 1;
}

.kvkk-consent-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.kvkk-consent-text a:hover {
  color: white;
}

.kvkk-consent-error {
  color: #EF4444;
  font-size: 0.8125rem;
  margin-top: var(--space-xs);
  display: none;
  padding-left: 36px;
}

.kvkk-consent-error.active {
  display: block;
}

/* Light variant for contact form */
.kvkk-consent-light .kvkk-checkbox-label {
  color: var(--text-secondary);
}

.kvkk-consent-light .kvkk-checkmark {
  border-color: var(--border);
  background: var(--bg);
}

.kvkk-consent-light .kvkk-checkbox-label input[type="checkbox"]:checked + .kvkk-checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.kvkk-consent-light .kvkk-consent-text a {
  color: var(--accent-dark);
}

.kvkk-consent-light .kvkk-consent-text a:hover {
  color: var(--primary);
}

/* =============================================
   KVKK Page Styles
   ============================================= */
.kvkk-page {
  padding-top: 100px;
  background: var(--bg);
  min-height: 100vh;
}

.kvkk-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-3xl);
}

.kvkk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, var(--accent-glow) 0%, transparent 60%);
}

.kvkk-hero .container {
  position: relative;
  z-index: 2;
}

.kvkk-back {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  transition: transform var(--transition-fast);
}

.kvkk-back:hover {
  transform: translateX(-5px);
}

.kvkk-hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: var(--accent);
}

.kvkk-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
}

.kvkk-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.kvkk-date {
  display: inline-block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.kvkk-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-4xl);
}

.kvkk-section {
  margin-bottom: var(--space-3xl);
}

.kvkk-section:last-child {
  margin-bottom: 0;
}

.kvkk-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.kvkk-section-body {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.0625rem;
}

.kvkk-section-body ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
  list-style: disc;
}

.kvkk-section-body li {
  margin-bottom: var(--space-xs);
}

.kvkk-section-body strong {
  color: var(--primary);
}

/* =============================================
   Responsive — Auth & Booking Overlay
   ============================================= */
@media (max-width: 768px) {
  .auth-modal {
    max-width: 100%;
    margin: var(--space-md);
    max-height: 95vh;
  }

  .auth-modal-header {
    padding: var(--space-xl) var(--space-lg) 0;
  }

  .auth-tabs {
    margin: var(--space-lg) var(--space-lg) 0;
  }

  .auth-form {
    padding: var(--space-lg);
  }

  .nav-user-name {
    display: none;
  }

  .nav-dropdown {
    right: -60px;
    width: 260px;
  }

  .booking-overlay-content h3 {
    font-size: 1.25rem;
  }

  .booking-overlay-content p {
    font-size: 0.875rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .kvkk-content {
    padding: var(--space-xl);
    border-radius: 0;
  }
}

/* =============================================
   Cookie Consent Banner
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3);
  animation: cookieSlideUp 0.5s ease-out;
}

.cookie-banner.closing {
  animation: cookieSlideDown 0.4s ease-in forwards;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes cookieSlideDown {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-xs);
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-text a:hover {
  color: white;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-settings-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.cookie-settings-toggle:hover {
  color: var(--accent);
}

/* Cookie Settings Panel */
.cookie-settings {
  max-width: 1200px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-2xl);
}

.cookie-settings.active {
  max-height: 400px;
  padding: 0 var(--space-2xl) var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-setting-row:last-of-type {
  border-bottom: none;
}

.cookie-setting-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-setting-info strong {
  color: white;
  font-size: 0.9375rem;
}

.cookie-setting-info span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

.cookie-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.cookie-always-on {
  color: rgba(0, 212, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: all var(--transition-fast);
}

.cookie-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-slider::before {
  transform: translateX(20px);
}

.cookie-settings-footer {
  padding-top: var(--space-md);
  display: flex;
  justify-content: flex-end;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }

  .cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-settings.active {
    padding: 0 var(--space-lg) var(--space-lg);
  }

  .cookie-setting-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .cookie-toggle-wrapper {
    align-self: flex-end;
  }
}
