/* Kwest AI – Enterprise Professional Design */
:root {
  /* Primary Colors */
  --brand: #D88A6A;
  --brand-dark: #B8704A;
  --brand-light: #E8C4B8;
  --brand-subtle: #F9F3F0;
  
  /* Accent Colors */
  --accent: #059669;
  --accent-2: #5B4FE4;
  
  /* Neutral Colors */
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --bg-subtle: #F3F4F6;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-tertiary: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  
  /* Shadow System */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Layout */
  --container: 1280px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-feature-settings: 'kern' 1;
}
img { max-width: 100%; display: block; height: auto; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* Global transitions */
a, button { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

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

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0, 0, 0, 0.06); box-shadow: var(--shadow-sm); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.site-header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-md); }
.navbar .nav-content { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 2rem; max-width: var(--container); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; font-family: 'Playfair Display', serif; color: var(--text-primary); text-decoration: none; letter-spacing: -0.8px; font-size: 1.25rem; }
.logo-img { height: 28px; width: auto; display: block; }
.logo-text { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-menu { display: flex; gap: 3.5rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; position: relative; padding-bottom: 0.35rem; letter-spacing: -0.2px; transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--brand); transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-menu a:hover { color: var(--brand-dark); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { background: var(--brand); color: white; border: 0; border-radius: var(--border-radius); padding: 0.7rem 1.6rem; font-weight: 600; font-size: 0.9rem; cursor: pointer; box-shadow: var(--shadow-sm); letter-spacing: 0.3px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-cta:hover { background: var(--brand-dark); box-shadow: 0 10px 24px rgba(216, 138, 106, 0.25); transform: translateY(-2px); }
.mobile-menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); margin: 5px 0; border-radius: 1px; transition: all 0.3s ease; }

/* Hero Section - Side by Side Layout */
.hero-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #0F172A 0%, #1F2937 50%, #111827 100%);
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}
.hero-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px; background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%); pointer-events: none; }
/* Animated Particles */
.hero-section::before { content: ''; position: absolute; top: -30%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(216, 138, 106, 0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; animation: float 20s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(50px, -100px) rotate(120deg); } 66% { transform: translate(-30px, 80px) rotate(240deg); } }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* Animated Dashboard */
.hero-dashboard {
  position: relative;
  perspective: 1000px;
}

.dashboard-browser {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: dashboardFloat 3s ease-in-out infinite;
}

.dashboard-browser:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 50px 150px -20px rgba(91, 79, 228, 0.5);
}

@keyframes dashboardFloat {
  0%, 100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-5deg) translateY(-10px); }
}

/* Browser Window Chrome */
.browser-header {
  background: linear-gradient(180deg, #F7F7F7 0%, #E8E8E8 100%);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #D1D1D1;
}

.browser-dots {
  display: flex;
  gap: 0.4rem;
}

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

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.browser-address {
  flex: 1;
  background: #FFFFFF;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #D1D1D1;
}

.lock-icon {
  font-size: 0.85rem;
}

.url {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

/* Dashboard Content */
.dashboard-content {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 1.2rem;
  min-height: 420px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #E8E8E8;
}

.dashboard-title h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 0.2rem 0;
  font-family: 'Playfair Display', serif;
}

.dashboard-subtitle {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin: 0;
}

.dashboard-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
  50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.dashboard-widget {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: widgetFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.dashboard-widget:hover {
  box-shadow: 0 8px 24px rgba(91, 79, 228, 0.15);
  transform: translateY(-4px);
}

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

.widget-large { 
  grid-column: 1; 
  grid-row: 1 / 3;
  animation-delay: 0.1s;
}

.widget-medium { 
  animation-delay: 0.2s;
}

.widget-small { 
  animation-delay: 0.3s;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.widget-icon {
  font-size: 1.2rem;
}

.widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Chart Container with GIF */
.chart-container {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, rgba(91, 79, 228, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.chart-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.metric-display {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--accent-2), var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 0.75rem;
  background: rgba(91, 79, 228, 0.04);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  background: rgba(91, 79, 228, 0.08);
  transform: scale(1.05);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.stat-trend {
  font-size: 0.75rem;
  font-weight: 600;
}

.stat-trend.positive {
  color: var(--accent);
}

/* Live Orders Feed */
.orders-feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem;
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.08) 0%, rgba(91, 79, 228, 0.08) 100%);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  opacity: 0;
  animation: orderSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.order-1 { animation-delay: 0.5s; }
.order-2 { animation-delay: 1s; }
.order-3 { animation-delay: 1.5s; }

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

.order-location {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.order-amount {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-2);
}

/* Performance Bars */
.performance-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bar-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bar-track {
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 4px;
  animation: barGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Old hero-image and hero-background styles removed */
.hero-badge { display: inline-flex; align-items: center; gap: 0.85rem; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(216, 138, 106, 0.2); color: var(--brand-dark); padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem; margin-bottom: 2.5rem; box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); letter-spacing: 0.3px; animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1); text-transform: uppercase; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(216, 138, 106, 0.7); } 50% { box-shadow: 0 0 0 8px rgba(216, 138, 106, 0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.05;
  margin: 0 0 2rem;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 900;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(91, 79, 228, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
  text-rendering: optimizeLegibility;
  position: relative;
}
.hero-title::before { content: attr(data-text); position: absolute; inset: 0; background: linear-gradient(135deg, rgba(91, 79, 228, 0.3), rgba(216, 138, 106, 0.3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: blur(20px); opacity: 0.5; z-index: -1; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto 3rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.2px;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.hero-ctas { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both; }

/* Hero Stats Section */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  min-width: 140px;
}

.stat-value {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, #D88A6A, #E8C4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}
.cta-button { border: 0; border-radius: var(--border-radius); padding: 1.2rem 2.5rem; font-weight: 600; font-size: 1rem; cursor: pointer; letter-spacing: 0.4px; position: relative; overflow: hidden; font-family: inherit; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.cta-button::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transform: translateX(-100%); transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.cta-button:hover::before { transform: translateX(100%); }
/* Ripple Effect */
.cta-button::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: rgba(255, 255, 255, 0.3); transform: scale(0); opacity: 0; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.cta-button:active::after { transform: scale(1); opacity: 1; transition: transform 0s, opacity 0.3s; }
.cta-primary { background: var(--accent-2); color: white; box-shadow: 0 4px 30px rgba(91, 79, 228, 0.3); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.cta-primary:hover { background: #4338CA; box-shadow: 0 12px 40px rgba(91, 79, 228, 0.4), 0 0 40px rgba(91, 79, 228, 0.2); transform: translateY(-4px); }
.cta-secondary { background: white; color: var(--brand-dark); border: 2px solid var(--brand-light); box-shadow: var(--shadow-sm); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.cta-secondary:hover { background: var(--brand-subtle); border-color: var(--brand-dark); box-shadow: var(--shadow-md), 0 0 30px rgba(216, 138, 106, 0.15); transform: translateY(-3px); }
.cta-large { padding: 1.2rem 2.5rem; font-size: 1rem; }
.hero-subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 2.5rem 0 0;
  letter-spacing: -0.1px;
  font-weight: 500;
}

/* Trusted By Section */
.trusted-by-section { padding: 5.5rem 0; background: var(--bg-alt); text-align: center; }
.trusted-by-title { font-size: 1.2rem; font-weight: 600; color: var(--text-tertiary); margin-bottom: 2.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.logos-grid { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; }
.logos-grid img { max-height: 40px; opacity: 0.6; filter: grayscale(100%); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.logos-grid img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.15); }

/* Logo Card */
.card-logo { display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--white); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--border-radius-lg); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); min-height: 120px; box-shadow: var(--shadow-xs); }
.card-logo:hover { box-shadow: var(--shadow-md); border-color: var(--brand); transform: translateY(-2px); }
.card-logo img { max-width: 100%; height: auto; max-height: 60px; object-fit: contain; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0.75; filter: grayscale(100%); }
.card-logo:hover img { opacity: 1; filter: grayscale(0%); }

/* Feature Card - Premium Design */
.card-feature { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(0, 0, 0, 0.05); position: relative; }
.card-feature::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(91, 79, 228, 0.05) 0%, rgba(216, 138, 106, 0.05) 100%); opacity: 0; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 0; }
.card-feature:hover { transform: translateY(-16px) scale(1.02); box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(91, 79, 228, 0.15); border-color: var(--accent-2); }
.card-feature:hover::before { opacity: 1; }
.card-feature__image { position: relative; overflow: hidden; height: 220px; background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); }
.card-feature__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%); opacity: 0; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.card-feature:hover .card-feature__image::after { opacity: 1; }
.card-feature__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1); filter: brightness(1) saturate(0.9); }
.card-feature:hover .card-feature__image img { transform: scale(1.15) rotate(2deg); filter: brightness(1.1) saturate(1.1); }
.card-feature__content { padding: 2.5rem 2rem; position: relative; z-index: 1; }
.card-feature__icon { font-size: 2.8rem; margin-bottom: 1.5rem; color: var(--accent-2); display: inline-block; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); filter: drop-shadow(0 4px 12px rgba(91, 79, 228, 0.2)); }
.card-feature:hover .card-feature__icon { transform: scale(1.2) rotate(-8deg) translateY(-8px); filter: drop-shadow(0 8px 24px rgba(91, 79, 228, 0.4)); }
.card-feature__title { font-size: 1.4rem; font-family: 'Playfair Display', 'Georgia', serif; font-weight: 800; margin: 0 0 1.25rem; color: var(--text-primary); letter-spacing: -0.5px; line-height: 1.3; transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-feature:hover .card-feature__title { color: var(--accent-2); }
.card-feature__description { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; margin: 0 0 1.5rem; transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-feature:hover .card-feature__description { color: var(--text-primary); }
.card-feature__link { font-weight: 700; color: var(--brand); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); font-size: 0.95rem; position: relative; padding-bottom: 0.25rem; }
.card-feature__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--brand); transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-feature:hover .card-feature__link { color: var(--brand-dark); transform: translateX(8px); }
.card-feature:hover .card-feature__link::after { width: 100%; }

/* About Section Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content { text-align: left; }
.about-image { position: relative; }
.about-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; background: linear-gradient(135deg, var(--accent-2), var(--brand)); border-radius: 16px; z-index: -1; opacity: 0.15; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.about-image:hover::before { top: -30px; left: -30px; opacity: 0.25; }
.about-image img { width: 100%; height: auto; border-radius: 16px; box-shadow: var(--shadow-2xl); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.about-image:hover img { transform: scale(1.05) rotate(-2deg); box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3); }

/* Testimonial Card Base */
.card-testimonial { background: var(--white); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-lg); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }

/* Channel Card */
.card-channel { background: var(--white); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--border-radius-lg); padding: 2.5rem; text-align: center; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; box-shadow: var(--shadow-sm); min-height: 120px; }
.card-channel:hover { box-shadow: var(--shadow-lg); border-color: var(--brand); transform: translateY(-8px) scale(1.02); background: rgba(216, 138, 106, 0.03); }
.card-channel__logo { max-height: 60px; max-width: 140px; width: auto; height: auto; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); filter: grayscale(40%); }
.card-channel:hover .card-channel__logo { transform: scale(1.1); filter: grayscale(0%); }
.card-testimonial::before { content: '"'; font-size: 6rem; color: rgba(216, 138, 106, 0.08); position: absolute; top: -1.5rem; left: 1rem; font-family: 'Playfair Display', 'Georgia', serif; font-weight: 900; z-index: 0; }
.card-testimonial:hover { box-shadow: var(--shadow-xl); border-color: var(--brand); transform: translateY(-12px); }
.card-testimonial__quote { color: var(--text-secondary); font-size: 1.2rem; line-height: 1.8; margin: 0 0 2rem; font-family: 'Playfair Display', 'Georgia', serif; font-style: italic; font-weight: 700; position: relative; z-index: 1; letter-spacing: -0.3px; }
.card-testimonial__author { margin-bottom: 1.75rem; display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.08); }
.card-testimonial__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--brand-light); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-testimonial:hover .card-testimonial__avatar { transform: scale(1.1); border-color: var(--brand); }
.card-testimonial__author-info { text-align: left; }
.card-testimonial__name { font-weight: 800; color: var(--text-primary); display: block; margin-bottom: 0.4rem; font-family: 'Playfair Display', 'Georgia', serif; letter-spacing: -0.4px; font-size: 1rem; }
.card-testimonial__role { color: var(--text-tertiary); font-size: 0.85rem; display: block; font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase; }
.card-testimonial__metrics { display: flex; gap: 1rem; flex-wrap: wrap; }
.metric-chip { background: var(--white); border: 2px solid var(--brand-light); border-radius: 8px; padding: 0.75rem 1.25rem; font-size: 0.85rem; font-weight: 800; color: var(--brand-dark); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: 0.3px; text-transform: uppercase; box-shadow: var(--shadow-xs); }
.metric-chip:hover { background: var(--brand-subtle); border-color: var(--brand-dark); transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-md); }

/* Question Card */
.card-question { background: var(--white); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--border-radius-lg); padding: 2rem; text-align: left; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.card-question::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(91, 79, 228, 0.05) 0%, transparent 100%); opacity: 0; transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-question:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent-2); }
.card-question:hover::before { opacity: 1; }
.card-question__icon { font-size: 2.5rem; margin-bottom: 1.25rem; color: var(--accent-2); display: block; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-question:hover .card-question__icon { transform: scale(1.2) rotate(5deg); }
.card-question__text { color: var(--text-primary); font-size: 1.1rem; line-height: 1.6; margin: 0; font-weight: 700; font-family: 'Playfair Display', 'Georgia', serif; }
.questions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; margin-top: 3rem; }

/* Case Studies Section */
.case-studies-section { padding: 5.5rem 0; background: var(--bg-alt); position: relative; overflow: hidden; }
.case-studies-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(91, 79, 228, 0.04) 0%, transparent 70%); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; animation: pulse 15s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; } 50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; } }
.case-studies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.card-case-study { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(0, 0, 0, 0.05); position: relative; }
.card-case-study::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(91, 79, 228, 0.08) 0%, transparent 100%); opacity: 0; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
.card-case-study:hover { transform: translateY(-16px) rotate(-1deg); box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(91, 79, 228, 0.2); border-color: var(--brand-light); }
.card-case-study:hover::before { opacity: 1; }
.card-case-study__image { position: relative; overflow: hidden; }
.card-case-study__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%); opacity: 0; transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.card-case-study:hover .card-case-study__image::after { opacity: 1; }
.card-case-study__image img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.card-case-study:hover .card-case-study__image img { transform: scale(1.15) rotate(2deg); filter: brightness(1.1) saturate(1.2); }
.card-case-study__content { padding: 2rem; position: relative; z-index: 2; }
.card-case-study__client { font-size: 0.9rem; font-weight: 800; color: var(--brand); text-transform: uppercase; margin-bottom: 0.75rem; letter-spacing: 0.5px; transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-case-study:hover .card-case-study__client { color: var(--accent-2); }
.card-case-study__title { font-size: 1.5rem; font-family: 'Playfair Display', 'Georgia', serif; font-weight: 800; margin-bottom: 1rem; color: var(--text-primary); letter-spacing: -0.5px; transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-case-study:hover .card-case-study__title { color: var(--accent-2); }
.card-case-study__summary { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 1.5rem; }
.card-case-study__link { font-weight: 800; color: var(--brand); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }
.card-case-study__link::after { content: '→'; position: absolute; right: -20px; opacity: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-case-study:hover .card-case-study__link { color: var(--brand-dark); transform: translateX(6px); }
.card-case-study:hover .card-case-study__link::after { opacity: 1; right: -24px; }

/* Pricing Section */
.pricing-section { padding: 5.5rem 0; background: var(--white); }

/* Responsive Styles */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-dashboard {
    max-width: 100%;
  }
  
  .dashboard-browser {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .widget-large {
    grid-column: 1;
    grid-row: auto;
  }
  
  .chart-container {
    height: 250px;
  }
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.card-pricing { background: var(--bg-alt); border-radius: 16px; padding: 2.5rem; text-align: center; box-shadow: var(--shadow-md); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.card-pricing.featured { background: var(--brand-subtle); border: 2px solid var(--brand); transform: scale(1.05); }
.card-pricing__header { margin-bottom: 2rem; }
.card-pricing__name { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.card-pricing__price { font-size: 3rem; font-weight: 800; color: var(--text-primary); font-family: 'Playfair Display', serif; }
.card-pricing__period { font-size: 1rem; color: var(--text-tertiary); }
.card-pricing__features { margin-bottom: 2.5rem; }
.card-pricing__features ul { list-style: none; padding: 0; }
.card-pricing__features li { margin-bottom: 1rem; }
.card-pricing__cta .cta-button { width: 100%; }

/* Security Card */
.card-security { background: var(--white); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--border-radius-lg); padding: 2.5rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.card-security::before { content: ''; position: absolute; top: 0; right: 0; width: 150px; height: 150px; background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%); border-radius: 50%; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.card-security:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); transform: translateY(-10px); }
.card-security:hover::before { top: -30px; right: -30px; }
.card-security__icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: inline-block; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); color: var(--accent); }
.card-security:hover .card-security__icon { transform: scale(1.25) rotate(-15deg); }
.card-security__title { font-size: 1.15rem; margin: 0 0 0.9rem; color: var(--text-primary); font-weight: 800; font-family: 'Playfair Display', 'Georgia', serif; letter-spacing: -0.4px; position: relative; z-index: 1; }
.card-security__body { color: var(--text-tertiary); margin: 0; line-height: 1.8; font-size: 0.9rem; position: relative; z-index: 1; }

/* Step Card */
.card-step { background: var(--white); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--border-radius-lg); padding: 2.75rem 2rem; text-align: center; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; box-shadow: var(--shadow-sm); overflow: hidden; }
.card-step::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(216, 138, 106, 0.05) 0%, transparent 100%); opacity: 0; transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-step:hover { box-shadow: var(--shadow-lg); border-color: var(--brand-light); transform: translateY(-12px); }
.card-step:hover::after { opacity: 1; }
.card-step__icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--brand); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: block; }
.card-step:hover .card-step__icon { transform: scale(1.25) rotate(10deg); }
.card-step__number { font-size: 3rem; font-weight: 900; color: rgba(0,0,0,0.06); margin-bottom: 1.25rem; font-family: 'Playfair Display', 'Georgia', serif; transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.card-step:hover .card-step__number { color: rgba(216, 138, 106, 0.15); }
.card-step__title { font-size: 1.2rem; margin: 0 0 0.9rem; color: var(--text-primary); font-weight: 800; font-family: 'Playfair Display', 'Georgia', serif; letter-spacing: -0.4px; position: relative; z-index: 1; }
.card-step__body { color: var(--text-tertiary); margin: 0; line-height: 1.8; font-size: 0.9rem; position: relative; z-index: 1; }

/* Grid Layouts */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.questions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 3rem; }

/* Section Styles */
.integrations-section { padding: 5.5rem 0; background: var(--bg-subtle); }
.testimonials-section { padding: 5.5rem 0; background: var(--white); }
.questions-section { padding: 5.5rem 0; background: var(--bg-subtle); }
.security-section { padding: 5.5rem 0; background: var(--white); }
.steps-section { padding: 5.5rem 0; background: var(--bg-subtle); }
.trusted-section { padding: 3.5rem 1rem; background: var(--white); text-align: center; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.features-section { padding: 5.5rem 0; background: var(--white); }

/* Detailed Features Section */
.detailed-features-section { padding: 5.5rem 0; background: var(--bg-alt); position: relative; }
.detailed-features-wrapper { display: flex; overflow-x: auto; scroll-behavior: smooth; gap: 2.5rem; padding-bottom: 2rem; }
.card-detailed-feature { flex: 0 0 350px; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(0, 0, 0, 0.05); }
.card-detailed-feature:hover { transform: translateY(-16px); box-shadow: var(--shadow-2xl); border-color: var(--brand-light); }
.card-detailed-feature__image img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.card-detailed-feature:hover .card-detailed-feature__image img { transform: scale(1.12); }
.card-detailed-feature__content { padding: 2rem; }
.card-detailed-feature__title { font-size: 1.5rem; font-family: 'Playfair Display', 'Georgia', serif; font-weight: 800; margin-bottom: 1rem; color: var(--text-primary); letter-spacing: -0.5px; }
.card-detailed-feature__description { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
.scroll-buttons { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; left: 0; right: 0; padding: 0 1rem; }
.scroll-button { background: var(--white); border: 2px solid var(--brand); color: var(--brand); border-radius: 50%; width: 50px; height: 50px; font-size: 1.5rem; cursor: pointer; box-shadow: var(--shadow-lg); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; justify-content: center; font-weight: bold; }
.scroll-button:hover { background: var(--brand); color: var(--white); transform: scale(1.15) rotate(5deg); box-shadow: var(--shadow-xl); }

.section-title { font-size: clamp(2rem, 3.5vw, 2.5rem); line-height: 1.1; margin: 0 0 1rem; font-family: 'Playfair Display', 'Georgia', serif; font-weight: 900; color: var(--text-primary); text-align: center; letter-spacing: -0.8px; text-rendering: optimizeLegibility; position: relative; display: inline-block; width: 100%; }
.section-title::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: linear-gradient(90deg, var(--accent-2), var(--brand)); border-radius: 2px; opacity: 0; animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }
@keyframes fadeInScale { from { opacity: 0; transform: translateX(-50%) scaleX(0); } to { opacity: 1; transform: translateX(-50%) scaleX(1); } }
.section-subtitle { color: var(--text-tertiary); margin: 0 0 3.5rem; font-weight: 400; text-align: center; max-width: 650px; margin-left: auto; margin-right: auto; font-size: clamp(0.95rem, 1.1vw, 1.05rem); line-height: 1.7; letter-spacing: -0.1px; padding-top: 1.5rem; }

/* Advanced Section Header */
.section-header { position: relative; text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(216, 138, 106, 0.08); border: 1px solid rgba(216, 138, 106, 0.25); color: var(--brand-dark); padding: 0.7rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: 0.8rem; margin-bottom: 1.5rem; letter-spacing: 0.4px; text-transform: uppercase; animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.section-badge:hover { background: rgba(216, 138, 106, 0.12); border-color: var(--brand); }
.badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); animation: bounce 2s infinite, glow 2s infinite; box-shadow: 0 0 0 0 rgba(216, 138, 106, 0.7); }
.section-accent-line { width: 80px; height: 4px; background: linear-gradient(90deg, transparent, var(--brand), var(--brand), var(--brand), transparent); border-radius: 2px; margin: 2rem auto 0; opacity: 0; animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; }

/* Final CTA Section */
.final-cta-section { 
  padding: 5.5rem 0; 
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%), url('https://images.unsplash.com/photo-1507525428034-b723a9ce6899?w=1200&h=400&fit=crop');
  background-size: cover;
  background-position: center;
  text-align: center; 
  position: relative; 
  overflow: hidden; 
}
.final-cta-section::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: rgba(0,0,0,0.35); 
  z-index: 1;
}
.final-cta-section h2 { font-size: clamp(2rem, 3.5vw, 2.5rem); line-height: 1.1; margin: 0 0 1.25rem; font-family: 'Playfair Display', 'Georgia', serif; font-weight: 900; color: var(--white); letter-spacing: -0.8px; position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
.final-cta-section p { color: rgba(255, 255, 255, 0.95); margin: 0 0 2.5rem; font-size: clamp(1rem, 1.1vw, 1.05rem); line-height: 1.7; position: relative; z-index: 2; max-width: 600px; margin-left: auto; margin-right: auto; letter-spacing: -0.1px; }
.final-cta-section .cta-large { margin: 0 auto; position: relative; z-index: 2; }

/* Footer */
.site-footer { background: linear-gradient(135deg, #0F172A 0%, #111827 50%, #1F2937 100%); color: white; padding: 3.5rem 1rem 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative; display: flex; flex-direction: column; min-height: auto; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 50%, rgba(216, 138, 106, 0.05) 0%, transparent 50%); pointer-events: none; }
.footer-top { text-align: center; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.15); position: relative; z-index: 1; }
.footer-middle { margin-bottom: 2.5rem; position: relative; z-index: 1; }
.footer-brand { text-align: center; max-height: 150px; overflow: hidden; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo .logo-img { height: auto; width: auto; max-height: 80px; max-width: 240px; object-fit: contain; }
.footer-logo .logo-text { font-weight: 900; font-size: 1.2rem; letter-spacing: -0.3px; background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-tagline { color: rgba(255, 255, 255, 0.75); margin: 0; line-height: 1.6; font-weight: 400; font-size: 0.9rem; letter-spacing: -0.1px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; max-width: 100%; margin-left: 0; margin-right: 0; position: relative; z-index: 1; justify-items: center; }
.footer-column { text-align: center; }
.footer-column h4 { font-size: 0.75rem; font-weight: 700; margin: 0 0 1.25rem; text-transform: uppercase; letter-spacing: 1px; color: white; font-family: 'Playfair Display', 'Georgia', serif; }\n.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 0.9rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-weight: 500; letter-spacing: -0.1px; }
.footer-column a:hover { color: var(--brand); transform: translateY(-2px); }
.footer-bottom { display: flex; align-items: center; justify-content: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.75rem; color: rgba(255, 255, 255, 0.65); flex-wrap: wrap; gap: 2rem; position: relative; z-index: 1; margin-top: auto; }
.footer-legal { display: flex; gap: 2.5rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-weight: 500; }
.footer-legal a:hover { color: white; }

/* Newsletter Form */
.newsletter-form { display: flex; margin-top: 1rem; gap: 0; }
.newsletter-form input { flex: 1; padding: 0.9rem 1.2rem; border: 2px solid rgba(255,255,255,0.3); border-radius: 8px 0 0 8px; background: rgba(255,255,255,0.1); color: white; font-size: 0.95rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter-form input:focus { outline: none; border-color: var(--brand); background: rgba(255,255,255,0.15); box-shadow: 0 0 0 3px rgba(216, 138, 106, 0.2); }
.newsletter-form button { padding: 0.9rem 1.75rem; border: 2px solid var(--brand); border-radius: 0 8px 8px 0; background: var(--brand); color: white; cursor: pointer; font-weight: 700; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.newsletter-form button:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateX(2px); }

/* Fade-in Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.section-divider {
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23F9FAFB' fill-opacity='1' d='M0,192L80,176C160,160,320,128,480,128C640,128,800,160,960,160C1120,160,1280,128,1360,112L1440,96L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero-section { padding: 4rem 1rem 3rem; }
  .hero-title { font-size: 1.85rem; }
  .hero-description { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 1rem; }
  .cta-button { width: 100%; max-width: 280px; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .channels-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .questions-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
  .security-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.95rem; }
  .final-cta-section { padding: 3.5rem 1rem; }
  .trusted-section { padding: 2.5rem 1rem; }
  section { padding: 3rem 1rem; }
  .card-feature { padding: 0; }
  .card-feature__content { padding: 1.5rem; }
  .card-testimonial { padding: 1.75rem; }
  .card-security { padding: 1.75rem; }
  .card-step { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; line-height: 1.2; }
  .hero-badge { font-size: 0.75rem; padding: 0.6rem 1.2rem; margin-bottom: 1.5rem; }
  .section-title { font-size: 1.4rem; }
  .cta-button { padding: 0.9rem 1.8rem; font-size: 0.9rem; }
  .footer-logo .logo-text { font-size: 1rem; }
  .card-feature__title { font-size: 1.1rem; }
  .card-testimonial__quote { font-size: 0.9rem; }
  .contact-modal-content { padding: 2rem; }
}

/* Contact Modal */
.contact-modal { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(12px); z-index: 100; align-items: center; justify-content: center; animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.contact-modal.active { display: flex; }
.contact-modal-content { background: linear-gradient(135deg, var(--white) 0%, var(--bg-subtle) 100%); border-radius: 16px; padding: 3.5rem; max-width: 520px; width: 90%; position: relative; box-shadow: var(--shadow-2xl), 0 0 100px rgba(91, 79, 228, 0.15); animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(0, 0, 0, 0.08); }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.contact-modal-close { position: absolute; top: 1.75rem; right: 1.75rem; background: none; border: 0; font-size: 1.75rem; cursor: pointer; color: var(--text-tertiary); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.contact-modal-close:hover { background: var(--bg-subtle); color: var(--text-primary); transform: rotate(90deg); }
.contact-modal h2 { margin-top: 0; color: var(--text-primary); font-size: 1.8rem; font-family: 'Playfair Display', 'Georgia', serif; font-weight: 900; letter-spacing: -0.6px; margin-bottom: 2rem; text-align: center; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

/* Form Group Styling */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); letter-spacing: 0.2px; }

.contact-form input, .contact-form textarea { padding: 1rem 1.2rem; border: 2px solid rgba(0, 0, 0, 0.1); border-radius: 8px; font-family: inherit; font-size: 0.95rem; color: var(--text-primary); background: white; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: -0.1px; font-weight: 500; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-tertiary); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(216, 138, 106, 0.1), 0 0 0 1px var(--brand); background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { align-self: stretch; margin-top: 1rem; padding: 1.2rem; font-size: 1.1rem; font-weight: 700; }

/* Success Message Styling */
.success-message {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-message.show {
  opacity: 1;
  transform: scale(1);
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  font-weight: 900;
  animation: successBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.success-message h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 1rem 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

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

/* Advanced Scroll Animations */
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }

/* Stagger Animation for Grids */
.features-grid .card-feature:nth-child(1) { animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both; }
.features-grid .card-feature:nth-child(2) { animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both; }
.features-grid .card-feature:nth-child(3) { animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both; }
.features-grid .card-feature:nth-child(4) { animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both; }

/* Parallax Section Backgrounds */
.integrations-section { position: relative; }
.integrations-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(91, 79, 228, 0.08) 0%, transparent 70%); border-radius: 50%; z-index: 0; animation: float 25s ease-in-out infinite; }
.testimonials-section { position: relative; }
.testimonials-section::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(216, 138, 106, 0.06) 0%, transparent 70%); border-radius: 50%; z-index: 0; animation: float 30s ease-in-out infinite reverse; }

/* Glow Effect on Hover */
.card-channel:hover, .card-security:hover, .card-step:hover { box-shadow: var(--shadow-lg), 0 0 40px rgba(91, 79, 228, 0.15); }

/* Smooth Section Transitions */
section { position: relative; z-index: 1; }

/* Enhanced Badge Animations */
.hero-badge, .section-badge { position: relative; }
.hero-badge:hover, .section-badge:hover { transform: scale(1.05); }
