/* Hebrew Font Import */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Base reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; height: 100%; }
body { font-family: 'Heebo', 'Rubik', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #0a0b0d; background: #ffffff; direction: rtl; text-align: right; }

/* Simple container for consistent horizontal padding */
.container { max-width: 1200px; margin: 0 auto; padding: 12px 24px; }

/* Header (Stripe-like) */
.site-header { 
  position: fixed; 
  top: 0; 
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100; 
  backdrop-filter: saturate(180%) blur(12px); 
  background: rgba(255,255,255,0.55); 
  border-bottom: 1px solid rgba(10,11,13,0.06);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10,11,13,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.site-header__logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.site-header__logo-img { height: 28px; width: auto; display: block; object-fit: contain; image-rendering: -webkit-optimize-contrast; }
@media (min-width: 900px) {
  .site-header__logo-img { height: 30px; }
}

.site-header__toggle { display: none; position: relative; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; border-radius: 8px; }
.site-header__toggle:focus-visible { outline: 2px solid #7c3aed; outline-offset: 2px; }
.site-header__toggle-bar { position: absolute; left: 8px; right: 8px; height: 2px; background: #2b2f36; transition: transform 200ms ease, opacity 200ms ease; }
.site-header__toggle-bar:nth-child(1) { top: 12px; }
.site-header__toggle-bar:nth-child(2) { top: 19px; }
.site-header__toggle-bar:nth-child(3) { top: 26px; }
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-header__nav { display: flex; align-items: center; gap: 24px; }
.nav__list { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav__list a { text-decoration: none; color: #2b2f36; font-weight: 600; }
.nav__list a:hover { color: #7c3aed; }
.nav__actions { display: flex; gap: 16px; align-items: center; }
.link--muted { color: #475467; text-decoration: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 24px; font-weight: 700; text-decoration: none; }
.btn--primary { background: #7c3aed; color: #fff; box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 6px 20px rgba(124,58,237,0.35); }
.btn--primary:hover { background: #6d28d9; }

/* Mobile behavior */
@media (max-width: 900px) {
  .site-header__toggle { display: inline-block; }
  .site-header__nav { position: fixed; inset: 64px 12px auto 12px; display: grid; gap: 16px; background: rgba(255,255,255,0.95); border: 1px solid rgba(10,11,13,0.06); border-radius: 16px; padding: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); transform-origin: top right; transform: scale(0.98); opacity: 0; pointer-events: none; transition: opacity 160ms ease, transform 160ms ease; text-align: right; z-index: 101; }
  .site-header__nav.is-open { opacity: 1; transform: scale(1); pointer-events: auto; }
  .nav__list { flex-direction: column; gap: 8px; }
  .nav__actions { justify-content: flex-end; }
  
  /* RTL Mobile Nav */
  [dir="rtl"] .site-header__nav { transform-origin: top left; text-align: right; }
  [dir="rtl"] .nav__actions { justify-content: flex-start; }
}

/* Hero layout */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; overflow: hidden; isolation: isolate; padding-top: 68px; }
.hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: 2fr 3fr; align-items: center; gap: 48px; width: 100%; }
.hero__content { max-width: 800px; padding: 80px 0; text-align: right; }
.hero__title { margin: 0 0 16px; font-size: clamp(32px, 6vw, 88px); line-height: 1.02; font-weight: 800; letter-spacing: -0.02em; color: #ffffff; }
.hero__subtitle { margin: 0 auto; max-width: 720px; font-size: clamp(16px, 2.2vw, 22px); line-height: 1.5; color:white; }
.hero__subtitle-highlight { 
  /* background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 25%, #f59e0b 50%, #fbbf24 75%, #ffffff 100%); */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: black;
  font-weight: 700;
  display: inline-block;
}
/* Hero media (AI Representative Animation) */
.hero__media { 
  display: flex; 
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
  position: relative;
  min-height: 500px;
}

/* AI Representative Animation Container */
.ai-representative-animation {
  position: relative;
  width: 100%;
  height: 500px;
  max-width: 600px;
  margin: 0 auto;
}

/* Main AI Orb (Center) */
.ai-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.ai-orb--main {
  animation: orbFloat 6s ease-in-out infinite;
}

.ai-orb__glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(16, 185, 129, 0.3) 50%, transparent 70%);
  animation: orbGlow 3s ease-in-out infinite alternate;
  filter: blur(30px);
}

.ai-orb__core {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(16, 185, 129, 0.9) 100%);
  box-shadow: 
    0 0 40px rgba(139, 92, 246, 0.5),
    0 0 80px rgba(16, 185, 129, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orb__icon {
  position: relative;
  width: 70%;
  height: 70%;
  z-index: 3;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.ai-orb__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.6);
  top: 0;
  left: 0;
  animation: orbPulse 2s ease-out infinite;
}

.ai-orb__pulse--1 {
  animation-delay: 0s;
}

.ai-orb__pulse--2 {
  animation-delay: 1s;
  border-color: rgba(16, 185, 129, 0.6);
}

/* Chat Windows (Bubbles emerging from orb) */
.chat-window {
  position: absolute;
  width: 200px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(139, 92, 246, 0.1);
  z-index: 5;
  opacity: 0;
  transform: scale(0) translate(0, 0);
  animation: chatWindowAppear 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.chat-window__header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
}

.chat-window__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.4);
}

.chat-window__dot:nth-child(1) { background: rgba(255, 95, 109, 0.8); }
.chat-window__dot:nth-child(2) { background: rgba(255, 193, 7, 0.8); }
.chat-window__dot:nth-child(3) { background: rgba(76, 175, 80, 0.8); }

.chat-window__content {
  padding: 12px 16px;
}

.chat-message {
  margin-bottom: 8px;
}

.chat-message:last-child {
  margin-bottom: 0;
}

.chat-message__bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #1f2937;
  max-width: 100%;
  word-wrap: break-word;
}

.chat-message--bot .chat-message__bubble {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: right;
}

.chat-message--user .chat-message__bubble {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  text-align: right;
}

/* Chat Window Positions & Animations */
.chat-window--1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.chat-window--2 {
  top: 25%;
  left: 0%;
  animation-delay: 2s;
}

.chat-window--3 {
  bottom: 25%;
  right: 8%;
  animation-delay: 4s;
}

.chat-window--4 {
  bottom: 10%;
  left: 5%;
  animation-delay: 6s;
}

/* Animations */
@keyframes orbFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
}

@keyframes orbGlow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.3);
  }
}

@keyframes orbPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes chatWindowAppear {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, 0) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  30% {
    opacity: 1;
    transform: scale(1) translate(var(--chat-offset-x, 30px), var(--chat-offset-y, -20px)) rotate(2deg);
  }
  60% {
    opacity: 1;
    transform: scale(1) translate(var(--chat-offset-x, 30px), var(--chat-offset-y, -20px)) rotate(2deg);
  }
  70% {
    opacity: 0.7;
    transform: scale(0.95) translate(var(--chat-offset-x, 35px), var(--chat-offset-y, -25px)) rotate(2deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translate(var(--chat-offset-x, 50px), var(--chat-offset-y, -40px)) rotate(5deg);
  }
}

/* Custom offsets for each chat window */
.chat-window--1 {
  --chat-offset-x: 40px;
  --chat-offset-y: -30px;
}

.chat-window--2 {
  --chat-offset-x: -40px;
  --chat-offset-y: -25px;
}

.chat-window--3 {
  --chat-offset-x: 35px;
  --chat-offset-y: 30px;
}

.chat-window--4 {
  --chat-offset-x: -35px;
  --chat-offset-y: 25px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .ai-representative-animation {
    height: 450px;
    max-width: 550px;
  }
  
  .ai-orb {
    width: 180px;
    height: 180px;
  }
  
  .chat-window {
    width: 180px;
  }
  
  .chat-window--1 {
    right: 0%;
  }
  
  .chat-window--2 {
    left: -5%;
  }
}

@media (max-width: 768px) {
  .hero__media {
    min-height: 400px;
    padding-right: 0;
    justify-content: center;
  }
  
  .ai-representative-animation {
    height: 400px;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .ai-orb {
    width: 150px;
    height: 150px;
  }
  
  .ai-orb__glow {
    filter: blur(20px);
  }
  
  .chat-window {
    width: 160px;
    font-size: 12px;
  }
  
  .chat-window__header {
    padding: 10px 12px;
  }
  
  .chat-window__content {
    padding: 10px 12px;
  }
  
  .chat-message__bubble {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .chat-window--1 {
    top: 5%;
    right: -5%;
  }
  
  .chat-window--2 {
    top: 20%;
    left: -10%;
  }
  
  .chat-window--3 {
    bottom: 20%;
    right: -5%;
  }
  
  .chat-window--4 {
    bottom: 5%;
    left: -10%;
  }
  
  .chat-window--1 {
    --chat-offset-x: 30px;
    --chat-offset-y: -20px;
  }
  
  .chat-window--2 {
    --chat-offset-x: -30px;
    --chat-offset-y: -20px;
  }
  
  .chat-window--3 {
    --chat-offset-x: 25px;
    --chat-offset-y: 20px;
  }
  
  .chat-window--4 {
    --chat-offset-x: -25px;
    --chat-offset-y: 20px;
  }
}

@media (max-width: 480px) {
  .ai-representative-animation {
    height: 350px;
  }
  
  .ai-orb {
    width: 120px;
    height: 120px;
  }
  
  .chat-window {
    width: 140px;
  }
  
  .chat-message__bubble {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* Google Ads Dashboard - Authentic Google Design */
.google-ads-dashboard {
  width: clamp(320px, 32vw, 540px);
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 
    0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 2px 6px 2px rgba(60, 64, 67, 0.15);
  transform: translateY(12px) translateX(-8%);
  margin: 0 0 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.google-ads-dashboard:hover {
  transform: translateY(8px) translateX(-8%);
  box-shadow: 
    0 2px 4px 0 rgba(60, 64, 67, 0.3),
    0 4px 8px 2px rgba(60, 64, 67, 0.15);
  border-color: #4285f4;
}

.google-ads-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    #4285f4 0%, 
    #34a853 33.33%,
    #fbbc05 66.66%,
    #ea4335 100%);
  z-index: 1;
}

.google-ads-dashboard::after {
  display: none;
}

.google-ads-dashboard > * {
  position: relative;
  z-index: 2;
}

/* Dashboard Header - Google Style */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8eaed;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #202124;
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.01em;
}

.google-ads-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.dashboard-date {
  font-size: 14px;
  color: #5f6368;
  background: #f8f9fa;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #e8eaed;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

/* Metrics Grid - Google Material Design */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--metric-color, #5f6368);
  border-radius: 8px 8px 0 0;
}

.metric-card--cost::before { --metric-color: #4285f4; }
.metric-card--conversions::before { --metric-color: #34a853; }
.metric-card--cpa::before { --metric-color: #fbbc05; }

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 2px 4px 0 rgba(60, 64, 67, 0.3),
    0 4px 8px 2px rgba(60, 64, 67, 0.15);
  border-color: var(--metric-color, #5f6368);
}

.metric-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--metric-bg, #f8f9fa);
  border-radius: 50%;
  color: var(--metric-color, #5f6368);
}

.metric-card--cost .metric-icon { 
  --metric-color: #4285f4;
  --metric-bg: #e8f0fe;
}
.metric-card--conversions .metric-icon { 
  --metric-color: #34a853;
  --metric-bg: #e6f4ea;
}
.metric-card--cpa .metric-icon { 
  --metric-color: #fbbc05;
  --metric-bg: #fef7e0;
}

.metric-icon svg {
  width: 20px;
  height: 20px;
}

.metric-value {
  font-size: 28px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 4px;
  font-family: 'Roboto', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.metric-label {
  font-size: 13px;
  color: #5f6368;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.metric-change {
  font-size: 12px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
}

.metric-change--positive {
  background: #e6f4ea;
  color: #137333;
}

.metric-change--negative {
  background: #fce8e6;
  color: #c5221f;
}

/* Chart Container - Google Style */
.chart-container {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.chart-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  font-family: 'Roboto', sans-serif;
}

.chart-legend {
  display: flex;
  gap: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #5f6368;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-color--cost { background: #4285f4; }
.legend-color--conversions { background: #34a853; }
.legend-color--cpa { background: #fbbc05; }

.chart-area {
  height: 150px;
  position: relative;
}

.performance-chart {
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.chart-line--cost { 
  animation-delay: 0.3s; 
  stroke-width: 2.5px;
}
.chart-line--conversions { 
  animation-delay: 0.6s; 
  stroke-width: 2.5px;
}
.chart-line--cpa { 
  animation-delay: 0.9s; 
  stroke-width: 2.5px;
}

.data-point {
  opacity: 0;
  animation: showPoint 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.data-point--cost:nth-child(1) { animation-delay: 0.8s; }
.data-point--cost:nth-child(2) { animation-delay: 1.2s; }
.data-point--cost:nth-child(3) { animation-delay: 1.6s; }
.data-point--cost:nth-child(4) { animation-delay: 2s; }
.data-point--cost:nth-child(5) { animation-delay: 2.4s; }

.data-point--conversions:nth-child(1) { animation-delay: 1.3s; }
.data-point--conversions:nth-child(2) { animation-delay: 1.7s; }
.data-point--conversions:nth-child(3) { animation-delay: 2.1s; }
.data-point--conversions:nth-child(4) { animation-delay: 2.5s; }
.data-point--conversions:nth-child(5) { animation-delay: 2.9s; }

.data-point--cpa:nth-child(1) { animation-delay: 1.8s; }
.data-point--cpa:nth-child(2) { animation-delay: 2.2s; }
.data-point--cpa:nth-child(3) { animation-delay: 2.6s; }
.data-point--cpa:nth-child(4) { animation-delay: 3s; }
.data-point--cpa:nth-child(5) { animation-delay: 3.4s; }

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes showPoint {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Campaign Status */
.campaign-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.status-item:hover {
  background: #f8f9fa;
  border-color: #dadce0;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-indicator--active {
  background: #34a853;
}

.status-indicator--paused {
  background: #fbbc05;
}

.status-item span:first-of-type {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: #202124;
  font-family: 'Roboto', sans-serif;
}

.status-count {
  font-size: 13px;
  color: #5f6368;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

/* Mobile performance optimizations */
@media (max-width: 900px) {
  /* Optimize animations for mobile */
  .module,
  .module--highlighted,
  .module--background,
  .dashboard-module,
  .connection-line {
    contain: layout style paint;
  }
  
  /* Reduce filter effects on mobile for better performance */
  .connection-line {
    filter: none !important;
  }
  
  .hero { min-height: unset; padding-top: 24px; }
  .hero__layout { grid-template-columns: 1fr; gap: 24px; }
  .hero__content { padding: 40px 0 16px; max-width: 100%; }
  .hero__title { text-align: center; font-size: 32px; line-height: 1.2;}
  .hero__media { 
    display: flex; 
    justify-content: center; 
    width: 100%; 
    padding: 0 16px;
    box-sizing: border-box;
  }
  
  .google-ads-dashboard {
    width: 100%;
    max-width: 100%;
    transform: none;
    margin: 0 auto;
    padding: 16px;
    border-radius: 20px;
  }
  
  .google-ads-dashboard:hover {
    transform: none;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .metric-card {
    padding: 12px;
  }
  
  .metric-value {
    font-size: 20px;
  }
  
  .metric-icon {
    width: 28px;
    height: 28px;
  }
  
  .metric-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .chart-container {
    padding: 12px;
  }
  
  .chart-area {
    height: 120px;
  }
  
  .chart-header h4 {
    font-size: 12px;
  }
  
  .chart-legend {
    gap: 8px;
  }
  
  .legend-item {
    font-size: 9px;
  }
  
  .legend-color {
    width: 8px;
    height: 8px;
  }
  
  .campaign-status {
    gap: 6px;
  }
  
  .status-item {
    padding: 8px 10px;
  }
  
  .status-item span:first-of-type {
    font-size: 11px;
  }
  
  .status-count {
    font-size: 9px;
  }
  
  .dashboard-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .dashboard-title {
    font-size: 14px;
  }
  
  .google-ads-icon {
    width: 22px;
    height: 22px;
  }
  
  .dashboard-date {
    font-size: 11px;
    padding: 3px 8px;
  }
}

/* Diagonal half-screen gradient background */
.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* create a bright, smooth multi-stop gradient - RTL version with rainbow neon colors */
  background: conic-gradient(from 160deg at 80% 40%, #ff0080, #ff8c00, #ffd700, #00ff88, #00d4ff, #8b5cf6, #ff0080);
  filter: blur(24px) saturate(120%);
  opacity: 0.9;
  background-size: 200% 200%;
  animation: gradientShift 16s ease-in-out infinite, hueRoll 24s linear infinite;

  /* diagonal half coverage using clip-path - RTL version */
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 56%);
}

/* Fallback for browsers without conic-gradient support */
@supports not (background: conic-gradient(red, blue)) {
  .hero__gradient {
    background: linear-gradient(225deg, #ff0080 0%, #ff8c00 20%, #ffd700 35%, #00ff88 55%, #00d4ff 75%, #8b5cf6 90%, #ff0080 100%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  /* Hero Section - Small Tablet Optimizations */
  .hero { 
    min-height: 85vh; 
    padding: 40px 0 24px;
  }
  
  .hero__gradient { 
    clip-path: polygon(0 0, 100% 0, 100% 91%, 0 63%); 
  }
  
  .hero__content { 
    padding: 0 16px 24px; 
    text-align: right;
  }
  
  .hero__title {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.3;
    text-align: right;
    margin-bottom: 20px;
  }
  
  .hero__subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    text-align: right;
  }
  
  .hero__media { 
    padding: 0 16px;
  }
  
  .google-ads-dashboard {
    padding: 16px;
    border-radius: 16px;
    max-width: 100%;
  }
  
  .dashboard-header {
    margin-bottom: 16px;
    padding: 14px;
  }
  
  .dashboard-title {
    font-size: 15px;
    font-weight: 600;
  }
  
  .google-ads-icon {
    width: 22px;
    height: 22px;
  }
  
  .dashboard-date {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .metrics-grid {
    gap: 12px;
  }
  
  .metric-card {
    padding: 14px;
    border-radius: 12px;
  }
  
  .metric-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
  
  .metric-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .metric-value {
    font-size: 20px;
    line-height: 1.2;
  }
  
  .metric-label {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .metric-change {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .chart-container {
    padding: 14px;
    border-radius: 12px;
  }
  
  .chart-header h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .chart-area {
    height: 110px;
    margin-top: 10px;
  }
  
  .chart-legend {
    gap: 8px;
    margin-top: 10px;
  }
  
  .legend-item {
    font-size: 11px;
  }
  
  .campaign-status {
    gap: 8px;
    margin-top: 12px;
  }
  
  .status-item {
    padding: 8px 12px;
    border-radius: 8px;
  }
  
  .status-item span:first-of-type {
    font-size: 11px;
  }
  
  .status-count {
    font-size: 10px;
  }
}

/* Mobile optimizations for very small screens (480px and below) - merged with 600px */

@media (prefers-reduced-motion: reduce) {
  .hero__gradient { filter: saturate(110%); animation: none; }
}

/* Animations */
/* Lead form */
.lead { padding: 12px 0 0; }
.lead--inline { max-width: 700px; }
.form-wrapper { 
  background: transparent; 
  backdrop-filter: none; 
  border: none; 
  border-radius: 0; 
  padding: 0; 
  box-shadow: none; 
  margin-top: 24px; 
}

/* Mobile responsive fixes for form-wrapper */
@media (max-width: 900px) {
  .form-wrapper {
    width: 100%;
    box-sizing: border-box;
  }
}

.form-wrapper.has-background { 
  background: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(12px) saturate(180%); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-radius: 24px; 
  padding: 32px; 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); 
}
.lead__container { max-width: 980px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1px,1px); white-space: nowrap; border: 0; }

.lead__form { display: grid; gap: 20px; }
.form-step { display: none; }
.form-step.is-active { display: block; }

/* Step 1 pill */
.pill { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px; background: rgba(246,249,252,0.7); border: 1px solid rgba(230,232,235,0.9); border-radius: 999px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); backdrop-filter: blur(10px) saturate(130%); }
.pill input { flex: 1; border: 0; background: transparent; padding: 16px 16px 16px 20px; font-size: 18px; outline: none; }
.btn--cta { background: #0b2540; color: white; border-radius: 999px; padding: 14px 18px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn--cta:hover { background: #0d2f52; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(11, 37, 64, 0.3); }
.btn--cta:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(11, 37, 64, 0.2); }

/* Chips and fields */
.step__group { margin: 16px 0; }
.step__title { margin: 0 0 8px; font-weight: 700; color: #0a0b0d; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 14px; border-radius: 999px; border: 1px solid #d0d5dd; background: #fff; cursor: pointer; }
.chip.is-selected { background: #eef2ff; border-color: #7c3aed; color: #4630eb; }
.field { display: grid; gap: 6px; }
.field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid #d0d5dd; border-radius: 12px; font-size: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.step__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }

@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
  .pill { padding: 8px; }
  .pill input { padding: 12px 12px 12px 16px; font-size: 16px; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes hueRoll {
  0% { filter: blur(24px) saturate(120%) hue-rotate(0deg); }
  50% { filter: blur(24px) saturate(120%) hue-rotate(180deg); }
  100% { filter: blur(24px) saturate(120%) hue-rotate(360deg); }
}

/* Logos section */
.logos { 
  padding: 80px 0; 
  background: white; 
  border-top: 1px solid rgba(10,11,13,0.06);
}

.logos__grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 48px 32px; 
  align-items: center; 
  justify-items: center; 
}

.logo-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 16px; 
  text-align: center; 
}

.logo-img { 
  width: 80px; 
  height: 80px; 
  object-fit: contain; 
  filter: grayscale(100%) opacity(0.7); 
  transition: filter 200ms ease; 
}

.logo-item:hover .logo-img { 
  filter: grayscale(0%) opacity(1); 
}

.logo-name { 
  font-size: 14px; 
  font-weight: 600; 
  color: #475467; 
  letter-spacing: 0.02em; 
  line-height: 1.4; 
}

@media (max-width: 900px) {
  .logos__grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 24px; 
  }
}

@media (max-width: 600px) {
  .logos__grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px 20px; 
  }
  
  .logo-img { 
    width: 64px; 
    height: 64px; 
  }
  
  .logo-name { 
    font-size: 13px; 
  }
}

/* Sticky Animation Section */
.sticky-animation {
  position: relative;
  background: white;
  border-top: 1px solid rgba(10,11,13,0.06);
  min-height: 100vh;
  padding: 60px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Dashboard sticky section overrides */
.dashboard-section { 
  position: relative; 
  z-index: 40; 
}
.dashboard-section .sticky-animation__content { z-index: 40; }
.dashboard-section .sticky-animation__container { height: 100vh; }
.dashboard-section .dashboard-device {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #f8f9fa;
  border: 1px solid #dadce0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transform: scale(calc(0.85 + var(--db-progress,0)*0.15));
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
  z-index: 20;
}
.dashboard-section .dashboard-wireframe { 
  position:absolute; 
  inset:0; 
  opacity: calc(1 - var(--db-fade,0)); 
  transition: opacity 600ms ease; 
  pointer-events:none; 
  z-index: 15;
}

/* Beautiful Dashboard with Sticky Animation */
.dashboard-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-screen {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid #e8eaed;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  min-height: 500px;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-screen.is-visible {
  transform: scale(1);
  opacity: 1;
}

/* Sticky Animation Effects */
.dashboard-screen {
  animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%, 100% {
    transform: scale(0.8) translateY(0px);
  }
  50% {
    transform: scale(0.8) translateY(-10px);
  }
}

.dashboard-screen.is-visible {
  animation: dashboardReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes dashboardReveal {
  0% {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  50% {
    transform: scale(0.9) translateY(-5px);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

.dashboard-header {
  color: white;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.dashboard-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.dashboard-date {
  font-size: 14px;
  opacity: 0.9;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
}

.metric-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e8eaed;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: metricCardReveal 0.8s ease-out forwards;
}

.metric-card:nth-child(1) { animation-delay: 0.2s; }
.metric-card:nth-child(2) { animation-delay: 0.4s; }
.metric-card:nth-child(3) { animation-delay: 0.6s; }

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

.metric-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.metric-card--cost {
  border-top: 4px solid #f59e0b;
}

.metric-card--conversions {
  border-top: 4px solid #10b981;
}

.metric-card--cpa {
  border-top: 4px solid #3b82f6;
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.metric-card--cost .metric-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.metric-card--conversions .metric-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.metric-card--cpa .metric-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.metric-icon svg {
  width: 20px;
  height: 20px;
}

.metric-content {
  text-align: right;
}

.metric-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 500;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  line-height: 1.2;
}

.metric-change {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

.metric-change--positive {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.metric-change--negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.dashboard-chart {
  padding: 24px;
  background: white;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.chart-legend {
  display: flex;
  gap: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.legend-color--clicks {
  background: #3b82f6;
}

.legend-color--conversions {
  background: #10b981;
}

.chart-area {
  height: 200px;
  position: relative;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 100%;
  padding: 0 20px;
}

.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
}

.bar-clicks, .bar-conversions {
  width: 100%;
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s ease-out;
  animation-fill-mode: forwards;
}

.bar-clicks {
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  margin-bottom: 2px;
  animation-delay: 0.8s;
}

.bar-conversions {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  animation-delay: 1s;
}

@keyframes barGrow {
  0% {
    height: 0;
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    height: var(--bar-height, 60%);
    opacity: 1;
  }
}

.chart-bar:nth-child(1) .bar-clicks { animation-delay: 0.8s; }
.chart-bar:nth-child(1) .bar-conversions { animation-delay: 1s; }
.chart-bar:nth-child(2) .bar-clicks { animation-delay: 1.2s; }
.chart-bar:nth-child(2) .bar-conversions { animation-delay: 1.4s; }
.chart-bar:nth-child(3) .bar-clicks { animation-delay: 1.6s; }
.chart-bar:nth-child(3) .bar-conversions { animation-delay: 1.8s; }
.chart-bar:nth-child(4) .bar-clicks { animation-delay: 2s; }
.chart-bar:nth-child(4) .bar-conversions { animation-delay: 2.2s; }

.bar-label {
  position: absolute;
  bottom: -25px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .dashboard-screen {
    max-width: 100%;
    margin: 0;
  }
  
  .dashboard-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .chart-bars {
    gap: 12px;
  }
  
  .chart-area {
    height: 120px;
  }
}

@media (max-width: 600px) {
  /* Dashboard Section Mobile Optimizations */
  .dashboard-header {
    padding: 16px;
  }
  
  .dashboard-title {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .dashboard-date {
    font-size: 12px;
  }
  
  .dashboard-metrics {
    padding: 16px;
    gap: 12px;
  }
  
  .metric-card {
    padding: 16px;
    min-height: auto;
  }
  
  .metric-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  
  .metric-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .metric-value {
    font-size: 22px;
    line-height: 1.2;
  }
  
  .metric-label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .metric-change {
    font-size: 12px;
    padding: 4px 8px;
  }
  
  .dashboard-chart {
    padding: 16px;
  }
  
  .chart-header h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .chart-legend {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .legend-item {
    font-size: 12px;
  }
  
  .chart-area {
    height: 120px;
    margin-top: 12px;
  }
}

/* Dashboard connection line */
.dashboard-section .connection-line {
  stroke: #10b981;
  z-index: 18;
}

@media (max-width:900px){
  .dashboard-section .dashboard-device{ border-radius:20px; }
}

@media (prefers-reduced-motion:reduce){
  .dashboard-section .dashboard-device{ transition:none !important; }
}

/* Dashboard section specific styles */
.dashboard-section {
  z-index: 40;
  margin-bottom: 40px;
}

.dashboard-section .sticky-animation__subtitle {
  color: #10b981;
}

.dashboard-section .sticky-animation__title {
  color: #0a0b0d;
}

.dashboard-section .sticky-animation__description {
  margin-bottom: 16px;
}

/* Dashboard section responsive styles */
@media (max-width: 900px) {
  .dashboard-section .sticky-animation__container {
    height: auto;
    padding: 40px 0;
  }
  
  .dashboard-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
    align-items: flex-start;
    position: relative;
    top: auto;
    height: auto;
  }
  
  .dashboard-section .sticky-animation__text {
    max-width: 100%;
    padding: 0;
    text-align: right;
    order: 1;
  }
  
  .dashboard-section .sticky-animation__diagram {
    order: 2;
  }
  
  .dashboard-section .sticky-animation__title {
    font-size: clamp(28px, 5vw, 42px);
    text-align: right;
    margin-bottom: 16px;
  }
  
  .dashboard-section .sticky-animation__subtitle {
    text-align: right;
  }
  
  .dashboard-section .sticky-animation__description {
    text-align: right;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .dashboard-module {
    width: 50px;
    height: 50px;
  }
  
  .dashboard-module--highlighted {
    width: 70px;
    height: 70px;
  }
  
  .dashboard-screen {
    max-width: 100%;
    margin: 0;
    min-height: auto;
  }
  
  .dashboard-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  
  .chart-bars {
    height: 100px;
  }
  
  /* Mobile: Hide floating modules */
  .dashboard-section .sticky-animation__diagram {
    height: auto;
    min-height: 400px;
  }
  
  /* Mobile: Reposition modules below dashboard */
  .dashboard-module--background:nth-child(4) { top: auto; left: 10%; bottom: 60%; }
  .dashboard-module--background:nth-child(5) { top: auto; right: 10%; bottom: 60%; }
  .dashboard-module--background:nth-child(6) { top: auto; left: 5%; bottom: 45%; }
  .dashboard-module--background:nth-child(7) { top: auto; right: 5%; bottom: 45%; }
  .dashboard-module--background:nth-child(8) { top: auto; left: 15%; bottom: 30%; }
  .dashboard-module--background:nth-child(9) { top: auto; right: 15%; bottom: 30%; }
  .dashboard-module--background:nth-child(10) { top: auto; left: 25%; bottom: 15%; }
  .dashboard-module--background:nth-child(11) { top: auto; right: 25%; bottom: 15%; }
  .dashboard-module--background:nth-child(12) { top: auto; left: 35%; bottom: 0%; }
  .dashboard-module--background:nth-child(13) { top: auto; right: 35%; bottom: 0%; }
  .dashboard-module--background:nth-child(14) { top: auto; left: 45%; bottom: -15%; }
  .dashboard-module--background:nth-child(15) { top: auto; right: 45%; bottom: -15%; }
  .dashboard-module--background:nth-child(16) { top: auto; left: 55%; bottom: -30%; }
  .dashboard-module--background:nth-child(17) { top: auto; right: 55%; bottom: -30%; }
  
  .dashboard-module--highlighted.dashboard-module--metrics {
    top: auto;
    left: 50%;
    bottom: 75%;
    transform: translateX(-50%);
  }
  
  .dashboard-module--highlighted.dashboard-module--leads {
    top: auto;
    left: 50%;
    bottom: -45%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  /* Dashboard Section - Mobile Layout */
  .dashboard-section .sticky-animation__container {
    height: auto;
    padding: 40px 0;
  }
  
  .dashboard-section .sticky-animation__content {
    padding: 0 16px;
    min-height: auto;
    gap: 30px;
  }
  
  .dashboard-section .sticky-animation__text {
    padding: 0;
    text-align: right;
  }
  
  .dashboard-section .sticky-animation__title {
    font-size: 28px;
    text-align: right;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .dashboard-section .sticky-animation__subtitle {
    font-size: 14px;
    text-align: right;
    margin-bottom: 12px;
  }
  
  .dashboard-section .sticky-animation__description {
    font-size: 15px;
    text-align: right;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}

@media (max-width: 420px) {
  /* Dashboard Section - 420px Optimizations */
  .dashboard-section {
    margin-bottom: 60px;
    padding-bottom: 30px;
  }
  
  .dashboard-section .sticky-animation__container {
    padding: 30px 0 40px;
  }
  
  .dashboard-section .sticky-animation__content {
    gap: 24px;
    padding: 0 12px;
  }
  
  .dashboard-section .sticky-animation__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .dashboard-section .sticky-animation__subtitle {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .dashboard-section .sticky-animation__description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .dashboard-section .sticky-animation__diagram {
    min-height: 350px;
    margin-bottom: 20px;
  }
  
  .google-ads-dashboard {
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 20px;
  }
  
  .dashboard-header {
    padding: 10px;
    margin-bottom: 12px;
  }
  
  .dashboard-title {
    font-size: 13px;
  }
  
  .google-ads-icon {
    width: 18px;
    height: 18px;
  }
  
  .dashboard-date {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .metrics-grid {
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .metric-card {
    padding: 10px;
    border-radius: 10px;
  }
  
  .metric-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
  }
  
  .metric-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .metric-value {
    font-size: 18px;
  }
  
  .metric-label {
    font-size: 10px;
    margin-bottom: 4px;
  }
  
  .metric-change {
    font-size: 10px;
    padding: 2px 6px;
  }
  
  .chart-container {
    padding: 10px;
    border-radius: 10px;
  }
  
  .chart-header h4 {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .chart-area {
    height: 90px;
    margin-top: 8px;
  }
  
  .chart-legend {
    gap: 6px;
    margin-top: 8px;
  }
  
  .legend-item {
    font-size: 9px;
  }
  
  .legend-color {
    width: 6px;
    height: 6px;
  }
  
  .campaign-status {
    gap: 4px;
    margin-top: 8px;
  }
  
  .status-item {
    padding: 6px 8px;
    border-radius: 6px;
  }
  
  .status-item span:first-of-type {
    font-size: 9px;
  }
  
  .status-count {
    font-size: 8px;
  }
  
  .dashboard-module {
    width: 40px;
    height: 40px;
  }
  
  .dashboard-module--highlighted {
    width: 55px;
    height: 55px;
  }
  
  .dashboard-module__icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 390px) {
  /* Dashboard Section - 390px Optimizations */
  .dashboard-section {
    margin-bottom: 80px;
    padding-bottom: 40px;
  }
  
  .dashboard-section .sticky-animation__container {
    padding: 25px 0 50px;
  }
  
  .dashboard-section .sticky-animation__content {
    gap: 20px;
    padding: 0 10px;
  }
  
  .dashboard-section .sticky-animation__title {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .dashboard-section .sticky-animation__subtitle {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .dashboard-section .sticky-animation__description {
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  
  .dashboard-section .sticky-animation__diagram {
    min-height: 320px;
    margin-bottom: 25px;
  }
  
  .google-ads-dashboard {
    padding: 10px;
    border-radius: 14px;
    margin-bottom: 25px;
  }
  
  .dashboard-header {
    padding: 8px;
    margin-bottom: 10px;
  }
  
  .dashboard-title {
    font-size: 12px;
  }
  
  .google-ads-icon {
    width: 16px;
    height: 16px;
  }
  
  .dashboard-date {
    font-size: 9px;
    padding: 2px 5px;
  }
  
  .metrics-grid {
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .metric-card {
    padding: 8px;
    border-radius: 8px;
  }
  
  .metric-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
  }
  
  .metric-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .metric-value {
    font-size: 16px;
  }
  
  .metric-label {
    font-size: 9px;
    margin-bottom: 3px;
  }
  
  .metric-change {
    font-size: 9px;
    padding: 2px 5px;
  }
  
  .chart-container {
    padding: 8px;
    border-radius: 8px;
  }
  
  .chart-header h4 {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .chart-area {
    height: 80px;
    margin-top: 6px;
  }
  
  .chart-legend {
    gap: 4px;
    margin-top: 6px;
  }
  
  .legend-item {
    font-size: 8px;
  }
  
  .legend-color {
    width: 5px;
    height: 5px;
  }
  
  .campaign-status {
    gap: 3px;
    margin-top: 6px;
  }
  
  .status-item {
    padding: 5px 6px;
    border-radius: 5px;
  }
  
  .status-item span:first-of-type {
    font-size: 8px;
  }
  
  .status-count {
    font-size: 7px;
  }
  
  .dashboard-module {
    width: 35px;
    height: 35px;
  }
  
  .dashboard-module--highlighted {
    width: 50px;
    height: 50px;
  }
  
  .dashboard-module__icon {
    width: 18px;
    height: 18px;
  }
  
  .dashboard-section .sticky-animation__diagram {
    min-height: 400px;
    padding: 0;
    order: 2;
  }
  
  .dashboard-screen {
    max-width: 100%;
    border-radius: 16px;
    min-height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .dashboard-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  
  .chart-bars {
    height: 100px;
    gap: 8px;
  }
  
  .chart-area {
    height: 80px;
  }
  
  /* Mobile: Further adjust module positioning */
  .dashboard-module {
    width: 40px;
    height: 40px;
  }
  
  .dashboard-module--highlighted {
    width: 56px;
    height: 56px;
  }
  
  .dashboard-module .module__icon {
    width: 18px;
    height: 18px;
  }
  
  .dashboard-module--highlighted .module__icon {
    width: 24px;
    height: 24px;
  }
}

.sticky-animation__container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.sticky-animation__content {
  position: sticky;
  top: calc(50% - 250px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 500px;
  z-index: 10;
}

.sticky-animation__text {
  max-width: 520px;
  padding: 40px 0;
}

.sticky-animation__subtitle {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sticky-animation__title {
  margin: 0 0 24px;
  font-size: clamp(60px, 3.5vw, 70px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0b0d;
}

.sticky-animation__description {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #475467;
}

.sticky-animation__diagram {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modules */
.module {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  border: 2px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 15;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.module--highlighted {
  width: 80px;
  height: 80px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 25;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.module--billing {
  background: white;
  border: 2px solid #fbbf24;
  bottom: 80px;
  left: 60px;
}

.module--invoicing {
  background: white;
  border: 2px solid #10b981;
  bottom: 80px;
  right: 60px;
}

.module--background {
  background: white;
  border: 2px solid #e5e7eb;
  color: #9ca3af;
  opacity: 0.8;
  z-index: 15;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* SVG Icons */
.module__icon {
  width: 32px;
  height: 32px;
  color: #6b7280;
  transition: all 0.3s ease;
}

.module--highlighted .module__icon {
  width: 40px;
  height: 40px;
}

.module--billing .module__icon {
  color: #fbbf24;
}

.module--invoicing .module__icon {
  color: #10b981;
}

/* Background modules positioning - more compact and organic */
.module--background:nth-child(4) { top: 40px; left: 40px; }
.module--background:nth-child(5) { top: 40px; right: 40px; }
.module--background:nth-child(6) { top: 50%; left: 40px; transform: translateY(-50%); }
.module--background:nth-child(7) { top: 50%; right: 40px; transform: translateY(-50%); }
.module--background:nth-child(8) { bottom: 120px; left: 40px; }
.module--background:nth-child(9) { bottom: 120px; right: 40px; }
.module--background:nth-child(10) { top: 30%; left: 50%; transform: translate(-50%, -50%); }
.module--background:nth-child(11) { top: 70%; left: 50%; transform: translate(-50%, -50%); }
.module--background:nth-child(12) { left: 30%; top: 50%; transform: translate(-50%, -50%); }
.module--background:nth-child(13) { right: 30%; top: 50%; transform: translate(-50%, -50%); }
.module--background:nth-child(14) { top: 20%; left: 30%; }
.module--background:nth-child(15) { top: 20%; right: 30%; }
.module--background:nth-child(16) { bottom: 40px; left: 50%; transform: translateX(-50%); }

/* Connection lines - Subtle and clean */
.connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.3;
}

/* Solutions section connections */
.solutions-section .connections {
  z-index: 18;
}

/* About section connections */
.about-section .connections {
  z-index: 28;
}

.connection-line {
  stroke: #fbbf24;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0;
  animation: fadeInLine 1.2s ease forwards;
  animation-delay: 0.8s;
  will-change: stroke-dashoffset, opacity, filter;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Module labels */
.module::after {
  content: attr(data-label);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.module--highlighted::after {
  opacity: 1;
  color: #374151;
  font-weight: 700;
}

/* Hover effects */
.module:hover {
  transform: scale(1.05);
  z-index: 15;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.module--background:hover {
  opacity: 1;
  border-color: #7c3aed;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}

.module--background:hover .module__icon {
  color: #7c3aed;
}

/* Solutions section floating animations */
.solutions-section .module--background {
  animation: float 6s ease-in-out infinite;
  z-index: 20;
}

.solutions-section .module--background:nth-child(4) { animation-delay: 0s; }
.solutions-section .module--background:nth-child(5) { animation-delay: 0.5s; }
.solutions-section .module--background:nth-child(6) { animation-delay: 1s; }
.solutions-section .module--background:nth-child(7) { animation-delay: 1.5s; }
.solutions-section .module--background:nth-child(8) { animation-delay: 2s; }
.solutions-section .module--background:nth-child(9) { animation-delay: 2.5s; }
.solutions-section .module--background:nth-child(10) { animation-delay: 3s; }
.solutions-section .module--background:nth-child(11) { animation-delay: 3.5s; }
.solutions-section .module--background:nth-child(12) { animation-delay: 4s; }
.solutions-section .module--background:nth-child(13) { animation-delay: 4.5s; }
.solutions-section .module--background:nth-child(14) { animation-delay: 5s; }
.solutions-section .module--background:nth-child(15) { animation-delay: 5.5s; }
.solutions-section .module--background:nth-child(16) { animation-delay: 6s; }

/* About section floating animations - different timing */
.about-section .module--background {
  animation: float 8s ease-in-out infinite;
  z-index: 30;
}

.about-section .module--background:nth-child(4) { animation-delay: 0s; }
.about-section .module--background:nth-child(5) { animation-delay: 0.8s; }
.about-section .module--background:nth-child(6) { animation-delay: 1.6s; }
.about-section .module--background:nth-child(7) { animation-delay: 2.4s; }
.about-section .module--background:nth-child(8) { animation-delay: 3.2s; }
.about-section .module--background:nth-child(9) { animation-delay: 4s; }
.about-section .module--background:nth-child(10) { animation-delay: 4.8s; }
.about-section .module--background:nth-child(11) { animation-delay: 5.6s; }
.about-section .module--background:nth-child(12) { animation-delay: 6.4s; }
.about-section .module--background:nth-child(13) { animation-delay: 7.2s; }
.about-section .module--background:nth-child(14) { animation-delay: 8s; }
.about-section .module--background:nth-child(15) { animation-delay: 8.8s; }
.about-section .module--background:nth-child(16) { animation-delay: 9.6s; }

/* Animations */
@keyframes fadeInLine {
  from {
    opacity: 0;
    stroke-dasharray: 0 100;
  }
  to {
    opacity: 1;
    stroke-dasharray: 100 0;
  }
}

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

/* Different float animation for About section */
@keyframes floatAbout {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-6px) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

/* Apply different animation to About section */
.about-section .module--background {
  animation: floatAbout 8s ease-in-out infinite;
}

/* Pulse animation for highlighted modules */
.module--highlighted {
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  }
  50% {
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
}

/* Different pulse animation for About section */
@keyframes pulseAbout {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    transform: scale(1.05);
  }
}

/* Apply different pulse to About section */
.about-section .module--highlighted {
  animation: pulseAbout 3s ease-in-out infinite;
}

/* Solutions section specific styles */
.solutions-section {
  z-index: 20;
  margin-bottom: 40px;
}

.solutions-section .sticky-animation__container {
  height: auto;
  min-height: 100vh;
}

.solutions-section .sticky-animation__content {
  height: auto;
  min-height: 600px;
  position: relative;
  top: auto;
  transform: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.solutions-section .sticky-animation__text {
  padding: 40px 0;
  max-width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.solutions-section .sticky-animation__subtitle {
  color: #7c3aed;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: right;
}

.solutions-section .sticky-animation__title {
  color: #0a0b0d;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: right;
}

.solutions-section .sticky-animation__description {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: #475467;
  text-align: right;
}

.solutions-section .sticky-animation__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solutions-section .sticky-animation__features li {
  margin: 0;
  padding: 16px 20px;
  background: rgba(139, 92, 246, 0.05);
  border-right: 4px solid #7c3aed;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  text-align: right;
  transition: all 0.3s ease;
}

.solutions-section .sticky-animation__features li:hover {
  background: rgba(139, 92, 246, 0.1);
  border-right-width: 5px;
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.solutions-section .sticky-animation__features li strong {
  color: #7c3aed;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* AI Bot Capabilities Animation (Solutions Section) */
.ai-bot-capabilities {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI Orb Sticky */
.ai-orb-sticky {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.ai-orb-sticky--main {
  animation: orbFloatSticky 6s ease-in-out infinite;
}

.ai-orb-sticky__glow {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(16, 185, 129, 0.3) 50%, transparent 70%);
  animation: orbGlowSticky 3s ease-in-out infinite alternate;
  filter: blur(35px);
}

.ai-orb-sticky__core {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
  box-shadow: 
    0 0 50px rgba(139, 92, 246, 0.6),
    0 0 100px rgba(16, 185, 129, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.25);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orb-sticky__icon {
  position: relative;
  width: 75%;
  height: 75%;
  z-index: 3;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.ai-orb-sticky__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.7);
  top: 0;
  left: 0;
  animation: orbPulseSticky 2s ease-out infinite;
}

.ai-orb-sticky__pulse--1 {
  animation-delay: 0s;
}

.ai-orb-sticky__pulse--2 {
  animation-delay: 1s;
  border-color: rgba(16, 185, 129, 0.7);
}

/* Capability Bubbles */
.capability-bubble {
  position: absolute;
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(139, 92, 246, 0.1);
  z-index: 5;
  opacity: 0;
  transform: scale(0) translate(0, 0);
  animation: capabilityBubbleAppear 10s ease-in-out infinite;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.capability-bubble:hover {
  transform: scale(1.05) translate(var(--hover-offset-x, 0), var(--hover-offset-y, 0));
  box-shadow: 
    0 12px 40px rgba(139, 92, 246, 0.2),
    0 0 0 2px rgba(139, 92, 246, 0.3);
}

.capability-bubble__header {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(16, 185, 129, 0.12));
}

.capability-bubble__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.5);
}

.capability-bubble__dot:nth-child(1) { background: rgba(255, 95, 109, 0.9); }
.capability-bubble__dot:nth-child(2) { background: rgba(255, 193, 7, 0.9); }
.capability-bubble__dot:nth-child(3) { background: rgba(76, 175, 80, 0.9); }

.capability-bubble__content {
  padding: 14px 18px;
}

.capability-bubble__message {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #1f2937;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.25);
  text-align: right;
  font-weight: 500;
}

/* Capability Bubble Positions */
.capability-bubble--1 {
  top: 8%;
  right: 3%;
  animation-delay: 0s;
  --hover-offset-x: 10px;
  --hover-offset-y: -5px;
}

.capability-bubble--2 {
  top: 20%;
  left: -5%;
  animation-delay: 2s;
  --hover-offset-x: -10px;
  --hover-offset-y: -5px;
}

.capability-bubble--3 {
  bottom: 30%;
  right: 5%;
  animation-delay: 4s;
  --hover-offset-x: 10px;
  --hover-offset-y: 5px;
}

.capability-bubble--4 {
  bottom: 15%;
  left: 0%;
  animation-delay: 6s;
  --hover-offset-x: -10px;
  --hover-offset-y: 5px;
}

.capability-bubble--5 {
  top: 40%;
  right: -8%;
  animation-delay: 8s;
  --hover-offset-x: 15px;
  --hover-offset-y: 0px;
}

/* Capability Connections */
.capability-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

.capability-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawCapabilityLine 10s ease-in-out infinite;
  opacity: 0.6;
}

.capability-line--1 {
  animation-delay: 0s;
}

.capability-line--2 {
  animation-delay: 2s;
}

.capability-line--3 {
  animation-delay: 4s;
}

.capability-line--4 {
  animation-delay: 6s;
}

.capability-line--5 {
  animation-delay: 8s;
}

/* Sticky Animation - Changes based on scroll progress */
.solutions-section .sticky-animation__diagram {
  position: sticky;
  top: 100px;
  height: 600px;
  z-index: 15;
}

.solutions-section .ai-orb-sticky {
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--scroll-progress, 0) * 0.1));
  transition: transform 0.3s ease;
}

.solutions-section .capability-bubble {
  opacity: calc(0 + var(--bubble-opacity, 0));
  transform: scale(calc(0.8 + var(--bubble-opacity, 0) * 0.2)) translate(var(--bubble-x, 0), var(--bubble-y, 0));
  transition: all 0.4s ease;
}

/* Animations for Capabilities Section */
@keyframes orbFloatSticky {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
}

@keyframes orbGlowSticky {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.4);
  }
}

@keyframes orbPulseSticky {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes capabilityBubbleAppear {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, 0) rotate(0deg);
  }
  8% {
    opacity: 1;
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  25% {
    opacity: 1;
    transform: scale(1) translate(var(--cap-offset-x, 40px), var(--cap-offset-y, -30px)) rotate(3deg);
  }
  55% {
    opacity: 1;
    transform: scale(1) translate(var(--cap-offset-x, 40px), var(--cap-offset-y, -30px)) rotate(3deg);
  }
  65% {
    opacity: 0.8;
    transform: scale(0.95) translate(var(--cap-offset-x, 45px), var(--cap-offset-y, -35px)) rotate(3deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translate(var(--cap-offset-x, 60px), var(--cap-offset-y, -50px)) rotate(5deg);
  }
}

@keyframes drawCapabilityLine {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  40% {
    opacity: 0.7;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
}

/* Custom offsets for each capability bubble */
.capability-bubble--1 {
  --cap-offset-x: 50px;
  --cap-offset-y: -35px;
}

.capability-bubble--2 {
  --cap-offset-x: -50px;
  --cap-offset-y: -30px;
}

.capability-bubble--3 {
  --cap-offset-x: 45px;
  --cap-offset-y: 35px;
}

.capability-bubble--4 {
  --cap-offset-x: -45px;
  --cap-offset-y: 30px;
}

.capability-bubble--5 {
  --cap-offset-x: 55px;
  --cap-offset-y: -10px;
}

/* About section specific styles */
.about-section {
  z-index: 30;
  min-height: auto; /* Remove fixed height constraint */
  padding: 80px 0; /* Increase padding for better spacing */
}

/* Process Steps List - עיצוב יפה לשלבי התהליך */
.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.process-step-item {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 2px solid rgba(230, 232, 235, 0.6);
  border-radius: 16px;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.process-step-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #8b5cf6 0%, #10b981 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step-item:hover {
  transform: translateX(-8px);
  box-shadow: 
    0 12px 32px rgba(139, 92, 246, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.process-step-item:hover::before {
  opacity: 1;
}

.process-step-item--final {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.process-step-item--final:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 
    0 12px 32px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.process-step-item--final::before {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

/* Process Step Number */
.process-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  font-size: 24px;
  font-weight: 800;
  border-radius: 14px;
  box-shadow: 
    0 8px 20px rgba(139, 92, 246, 0.3),
    0 4px 8px rgba(139, 92, 246, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-item:hover .process-step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 28px rgba(139, 92, 246, 0.4),
    0 6px 12px rgba(139, 92, 246, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.process-step-item--final .process-step-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 
    0 8px 20px rgba(16, 185, 129, 0.3),
    0 4px 8px rgba(16, 185, 129, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.process-step-item--final:hover .process-step-number {
  box-shadow: 
    0 12px 28px rgba(16, 185, 129, 0.4),
    0 6px 12px rgba(16, 185, 129, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Process Step Content */
.process-step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-step-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0a0b0d;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.process-step-item:hover .process-step-title {
  color: #8b5cf6;
}

.process-step-item--final .process-step-title {
  color: #10b981;
}

.process-step-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #475467;
}

.process-step-item:hover .process-step-description {
  color: #374151;
}

/* AI Process Flow Animation - How It Works Section */
.ai-process-flow {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI Brain Core - Central Hub */
.ai-brain-core {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.ai-brain-core--main {
  animation: brainCorePulse 4s ease-in-out infinite;
}

.ai-brain-core__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(16, 185, 129, 0.3) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  animation: brainGlow 3s ease-in-out infinite alternate;
}

.ai-brain-core__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 60px rgba(139, 92, 246, 0.6),
    0 0 120px rgba(16, 185, 129, 0.4),
    inset 0 0 50px rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ai-brain-core__icon {
  width: 80px;
  height: 80px;
  color: white;
  animation: brainIconRotate 20s linear infinite;
}

.ai-brain-core__ring {
  position: absolute;
  border: 2px solid rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: brainRingExpand 3s ease-out infinite;
}

.ai-brain-core__ring--1 {
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}

.ai-brain-core__ring--2 {
  width: 220px;
  height: 220px;
  animation-delay: 1s;
  border-color: rgba(16, 185, 129, 0.6);
}

.ai-brain-core__ring--3 {
  width: 260px;
  height: 260px;
  animation-delay: 2s;
  border-color: rgba(59, 130, 246, 0.5);
}

/* Process Step Cards */
.process-step-card {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(139, 92, 246, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 8;
  opacity: 0;
  transform: scale(0);
  animation: processStepAppear 12s ease-in-out infinite;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.process-step-card:hover {
  transform: scale(1.1);
  box-shadow: 
    0 15px 50px rgba(139, 92, 246, 0.3),
    0 0 0 3px rgba(139, 92, 246, 0.4);
}

.process-step-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-card__icon svg {
  width: 100%;
  height: 100%;
}

.process-step-card__label {
  font-size: 11px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-top: 4px;
}

.process-step-card__pulse {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  animation: stepPulse 2s ease-out infinite;
  opacity: 0;
}

.process-step-card__pulse--active {
  border-color: rgba(16, 185, 129, 0.6);
  animation: stepPulseActive 1.5s ease-out infinite;
}

/* Process Step Positions */
.process-step-card--1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.process-step-card--2 {
  top: 15%;
  right: 10%;
  animation-delay: 2.4s;
}

.process-step-card--3 {
  bottom: 35%;
  left: 8%;
  animation-delay: 4.8s;
}

.process-step-card--4 {
  bottom: 25%;
  right: 12%;
  animation-delay: 7.2s;
}

.process-step-card--5 {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 9.6s;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
  box-shadow: 
    0 15px 50px rgba(16, 185, 129, 0.4),
    0 0 0 3px rgba(16, 185, 129, 0.5);
}

.process-step-card--5 .process-step-card__icon svg {
  color: white;
}

.process-step-card--5 .process-step-card__label {
  color: white;
}

/* Process Flow Lines */
.process-flow-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

.process-flow-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: processLineDraw 12s ease-in-out infinite;
}

.process-flow-line--1 {
  animation-delay: 0.5s;
}

.process-flow-line--2 {
  animation-delay: 2.9s;
}

.process-flow-line--3 {
  animation-delay: 5.3s;
}

.process-flow-line--4 {
  animation-delay: 7.7s;
}

.process-flow-line--5 {
  animation-delay: 10.1s;
}

/* Data Particles */
.data-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.data-particle--1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.data-particle--2 {
  top: 40%;
  right: 25%;
  animation-delay: 1.3s;
}

.data-particle--3 {
  bottom: 40%;
  left: 25%;
  animation-delay: 2.6s;
}

.data-particle--4 {
  bottom: 30%;
  right: 30%;
  animation-delay: 3.9s;
}

.data-particle--5 {
  top: 60%;
  left: 20%;
  animation-delay: 5.2s;
}

.data-particle--6 {
  top: 50%;
  right: 20%;
  animation-delay: 6.5s;
}

/* Animations */
@keyframes brainCorePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes brainGlow {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes brainIconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes brainRingExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@keyframes processStepAppear {
  0%, 8% {
    opacity: 0;
    transform: scale(0) rotate(-10deg);
  }
  10%, 18% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  20%, 100% {
    opacity: 0;
    transform: scale(0.8) rotate(10deg);
  }
}

@keyframes stepPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes stepPulseActive {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes processLineDraw {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  15% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
  20%, 100% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
}

@keyframes particleFloat {
  0%, 10% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  15%, 25% {
    opacity: 1;
    transform: translate(20px, -30px) scale(1);
  }
  30%, 100% {
    opacity: 0;
    transform: translate(40px, -60px) scale(0);
  }
}

/* Sticky Animation for Process Flow */
.about-section .sticky-animation__diagram {
  position: sticky;
  top: 100px;
  height: 600px;
  z-index: 15;
}

.about-section .ai-brain-core {
  transform: translate(-50%, -50%) scale(calc(0.9 + var(--process-progress, 0) * 0.1));
  transition: transform 0.3s ease;
}

.about-section .process-step-card {
  opacity: calc(0 + var(--step-opacity, 0));
  transform: scale(calc(0.7 + var(--step-opacity, 0) * 0.3));
  transition: all 0.4s ease;
}

/* About section container - יותר מקום לתוכן */
.about-section .sticky-animation__container {
  height: auto; /* Remove fixed height */
  min-height: 100vh; /* Minimum height instead of fixed */
}

/* About section content - וידוא שהתוכן מתאים */
.about-section .sticky-animation__content {
  height: auto; /* גובה אוטומטי במקום קבוע */
  min-height: 600px; /* גובה מינימלי גדול יותר */
  position: relative; /* Change from sticky to relative */
  top: auto; /* Remove sticky positioning */
  transform: none; /* Remove any transforms */
}

.about-section .sticky-animation__text {
  padding: 40px 0; /* Reduce padding to fit content better */
  max-width: 100%; /* Ensure text doesn't get cut off */
}

.about-section .sticky-animation__subtitle {
  color: #10b981;
}

.about-section .sticky-animation__title {
  color: #0a0b0d;
  font-size: clamp(40px, 4vw, 60px); /* Responsive font size */
}

.about-section .sticky-animation__description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.sticky-animation__features {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.sticky-animation__features li {
  margin: 12px 0;
  padding: 14px 18px;
  background: rgba(16, 185, 129, 0.05);
  border-left: 3px solid #10b981;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}

.sticky-animation__tagline {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #7c3aed;
  text-align: center;
  font-style: italic;
}

/* Solutions section modules */
.solutions-section .module--billing {
  background: white;
  border: 2px solid #fbbf24;
  bottom: 80px;
  left: 60px;
  z-index: 25;
}

.solutions-section .module--invoicing {
  background: white;
  border: 2px solid #10b981;
  bottom: 80px;
  right: 60px;
  z-index: 25;
}

.solutions-section .module--billing .module__icon {
  color: #fbbf24;
}

.solutions-section .module--invoicing .module__icon {
  color: #10b981;
}

/* Solutions section connection line */
.solutions-section .connection-line {
  stroke: #fbbf24;
  z-index: 18;
}

/* About section modules */
.about-section .module--ai {
  background: white;
  border: 2px solid #7c3aed;
  bottom: 80px;
  left: 60px;
  z-index: 35;
}

.about-section .module--data {
  background: white;
  border: 2px solid #10b981;
  bottom: 80px;
  right: 60px;
  z-index: 35;
}

.about-section .module--ai .module__icon {
  color: #7c3aed;
}

.about-section .module--data .module__icon {
  color: #10b981;
}

/* About section connection line */
.about-section .connection-line {
  stroke: #10b981;
  z-index: 28;
}

/* About Section Form Styles */
.form-wrapper--about {
  max-width: 500px;
  margin: 40px auto 0;
  padding: 0;
}

.lead--about {
  padding: 0;
}

.pill--about {
  padding: 8px;
  background: rgba(246, 249, 252, 0.8);
  border: 1px solid rgba(230, 232, 235, 0.9);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px) saturate(130%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
}

.pill--about input {
  padding: 12px 12px 12px 16px;
  font-size: 16px;
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
}

.btn--cta-about {
  background: #10b981;
  color: white;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
}

.btn--cta-about:hover {
  background: #059669;
  transform: translateY(-1px);
}

.about-section .step__title {
  font-size: 16px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 12px;
}

.about-section .chip {
  padding: 8px 12px;
  font-size: 14px;
}

.about-section .field input,
.about-section .field textarea {
  padding: 10px 12px;
  font-size: 14px;
}

.about-section .step__actions {
  margin-top: 20px;
}

.about-section .btn {
  padding: 14px 16px;
  font-size: 14px;
}

.about-section .btn--primary {
  background: #10b981;
  color: white;
}

.about-section .btn--primary:hover {
  background: #059669;
}

/* Mobile adjustments for About section form */
@media (max-width: 900px) {
  .form-wrapper--about {
    max-width: 100%;
    margin: 30px 0 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .pill--about {
    padding: 6px;
    gap: 10px;
  }
  
  .pill--about input {
    padding: 10px 10px 10px 14px;
    font-size: 15px;
  }
  
  .btn--cta-about {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  /* About Section Form - Mobile Optimizations */
  .form-wrapper--about {
    margin: 24px 0 0;
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
    border-radius: 16px;
  }
  
  .pill--about {
    padding: 8px;
    gap: 10px;
    border-radius: 999px;
  }
  
  .pill--about input {
    padding: 12px 12px 12px 16px;
    font-size: 15px;
  }
  
  .btn--cta-about {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 999px;
  }
  
  .about-section .step__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .about-section .chip {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 12px;
  }
  
  .about-section .field input,
  .about-section .field textarea {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }
  
  .about-section .step__actions {
    margin-top: 24px;
    gap: 12px;
  }
  
  .about-section .btn {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 12px;
  }
}

/* Script section specific styles */
.script-section {
  z-index: 50;
  min-height: auto;
  padding: 80px 0;
}

/* Script section container */
.script-section .sticky-animation__container {
  height: auto;
  min-height: 100vh;
}

/* Script section content */
.script-section .sticky-animation__content {
  height: auto;
  min-height: 600px;
  position: relative;
  top: auto;
  transform: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.script-section .sticky-animation__text {
  padding: 40px 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.script-section .sticky-animation__subtitle {
  color: #f59e0b;
}

.script-section .sticky-animation__title {
  color: #0a0b0d;
  font-size: clamp(40px, 4vw, 60px);
}

.script-section .sticky-animation__description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* Business Types Animation - מותאם לכל סוג עסק */
.business-types-animation {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Business Hub - Central AI */
.business-hub {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.business-hub--main {
  animation: businessHubPulse 4s ease-in-out infinite;
}

.business-hub__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, rgba(139, 92, 246, 0.3) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
  animation: businessHubGlow 3s ease-in-out infinite alternate;
}

.business-hub__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 60px rgba(245, 158, 11, 0.6),
    0 0 120px rgba(139, 92, 246, 0.4),
    inset 0 0 50px rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.business-hub__icon {
  width: 80px;
  height: 80px;
  color: white;
  animation: businessHubRotate 15s linear infinite;
}

.business-hub__ring {
  position: absolute;
  border: 2px solid rgba(245, 158, 11, 0.6);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: businessHubRingExpand 3s ease-out infinite;
}

.business-hub__ring--1 {
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}

.business-hub__ring--2 {
  width: 220px;
  height: 220px;
  animation-delay: 1.5s;
  border-color: rgba(139, 92, 246, 0.6);
}

/* Business Type Cards */
.business-type-card {
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 0 0 2px rgba(245, 158, 11, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 8;
  opacity: 0;
  transform: scale(0);
  animation: businessCardAppear 15s ease-in-out infinite;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.business-type-card:hover {
  transform: scale(1.15);
  box-shadow: 
    0 15px 50px rgba(245, 158, 11, 0.3),
    0 0 0 3px rgba(245, 158, 11, 0.4);
  z-index: 12;
}

.business-type-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-type-card__icon svg {
  width: 100%;
  height: 100%;
}

.business-type-card__label {
  font-size: 12px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-top: 4px;
}

.business-type-card__pulse {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: 20px;
  animation: businessCardPulse 2s ease-out infinite;
  opacity: 0;
}

/* Business Type Card Positions */
.business-type-card--1 {
  top: 12%;
  left: 18%;
  animation-delay: 0s;
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 10px 40px rgba(16, 185, 129, 0.2),
    0 0 0 2px rgba(16, 185, 129, 0.3);
}

.business-type-card--1:hover {
  box-shadow: 
    0 15px 50px rgba(16, 185, 129, 0.35),
    0 0 0 3px rgba(16, 185, 129, 0.5);
}

.business-type-card--1 .business-type-card__pulse {
  border-color: rgba(16, 185, 129, 0.6);
}

.business-type-card--2 {
  top: 50%;
  right: 10%;
  animation-delay: 5s;
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 
    0 10px 40px rgba(59, 130, 246, 0.2),
    0 0 0 2px rgba(59, 130, 246, 0.3);
}

.business-type-card--2:hover {
  box-shadow: 
    0 15px 50px rgba(59, 130, 246, 0.35),
    0 0 0 3px rgba(59, 130, 246, 0.5);
}

.business-type-card--2 .business-type-card__pulse {
  border-color: rgba(59, 130, 246, 0.6);
}

.business-type-card--3 {
  bottom: 12%;
  left: 20%;
  animation-delay: 10s;
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 10px 40px rgba(139, 92, 246, 0.2),
    0 0 0 2px rgba(139, 92, 246, 0.3);
}

.business-type-card--3:hover {
  box-shadow: 
    0 15px 50px rgba(139, 92, 246, 0.35),
    0 0 0 3px rgba(139, 92, 246, 0.5);
}

.business-type-card--3 .business-type-card__pulse {
  border-color: rgba(139, 92, 246, 0.6);
}

/* Business Connections */
.business-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

.business-connection {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: businessConnectionDraw 15s ease-in-out infinite;
}

.business-connection--1 {
  animation-delay: 0.5s;
}

.business-connection--2 {
  animation-delay: 5.5s;
}

.business-connection--3 {
  animation-delay: 10.5s;
}

/* Business Particles */
.business-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: businessParticleFloat 10s ease-in-out infinite;
}

.business-particle--1 {
  top: 25%;
  left: 35%;
  animation-delay: 0s;
}

.business-particle--2 {
  top: 55%;
  right: 30%;
  animation-delay: 3.3s;
}

.business-particle--3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 6.6s;
}

.business-particle--4 {
  top: 40%;
  right: 25%;
  animation-delay: 9.9s;
}

/* Business Animation Keyframes */
@keyframes businessHubPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes businessHubGlow {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes businessHubRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes businessHubRingExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes businessCardAppear {
  0%, 6% {
    opacity: 0;
    transform: scale(0) rotate(-15deg);
  }
  8%, 20% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  22%, 100% {
    opacity: 0;
    transform: scale(0.8) rotate(15deg);
  }
}

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

@keyframes businessConnectionDraw {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  3% {
    opacity: 0.6;
  }
  12% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
  20%, 100% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
}

@keyframes businessParticleFloat {
  0%, 10% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  15%, 30% {
    opacity: 1;
    transform: translate(25px, -35px) scale(1);
  }
  35%, 100% {
    opacity: 0;
    transform: translate(50px, -70px) scale(0);
  }
}

/* Sticky Animation for Business Types */
.script-section .sticky-animation__diagram {
  position: sticky;
  top: 100px;
  height: 600px;
  z-index: 15;
}

/* Script section modules */
.script-section .module--automation {
  background: white;
  border: 2px solid #f59e0b;
  bottom: 80px;
  left: 60px;
  z-index: 55;
}

.script-section .module--analytics {
  background: white;
  border: 2px solid #10b981;
  bottom: 80px;
  right: 60px;
  z-index: 55;
}

.script-section .module--automation .module__icon {
  color: #f59e0b;
}

.script-section .module--analytics .module__icon {
  color: #10b981;
}

/* Script section connection line */
.script-section .connection-line {
  stroke: #f59e0b;
  z-index: 48;
}

/* Script section floating animations - JavaScript themed */
.script-section .module--background {
  animation: floatScript 7s ease-in-out infinite;
  z-index: 50;
}

.script-section .module--background:nth-child(4) { animation-delay: 0s; }
.script-section .module--background:nth-child(5) { animation-delay: 0.7s; }
.script-section .module--background:nth-child(6) { animation-delay: 1.4s; }
.script-section .module--background:nth-child(7) { animation-delay: 2.1s; }
.script-section .module--background:nth-child(8) { animation-delay: 2.8s; }
.script-section .module--background:nth-child(9) { animation-delay: 3.5s; }
.script-section .module--background:nth-child(10) { animation-delay: 4.2s; }
.script-section .module--background:nth-child(11) { animation-delay: 4.9s; }
.script-section .module--background:nth-child(12) { animation-delay: 5.6s; }
.script-section .module--background:nth-child(13) { animation-delay: 6.3s; }
.script-section .module--background:nth-child(14) { animation-delay: 7s; }
.script-section .module--background:nth-child(15) { animation-delay: 7.7s; }
.script-section .module--background:nth-child(16) { animation-delay: 8.4s; }

/* Different float animation for Script section - more dynamic like JavaScript */
@keyframes floatScript {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-12px) rotate(2deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

/* Pulse animation for highlighted modules in Script section */
@keyframes pulseScript {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.3);
    transform: scale(1.08);
  }
}

/* Apply different pulse to Script section */
.script-section .module--highlighted {
  animation: pulseScript 3.5s ease-in-out infinite;
}

/* Script section connections */
.script-section .connections {
  z-index: 48;
}

/* Code Editor Only */
.code-editor {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: scale(calc(0.9 + var(--code-progress,0)*0.1));
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
  z-index: 20;
}

/* Ensure code lines start completely hidden */
.code-editor .code-line {
  opacity: 0;
  transform: translateX(-20px);
}

/* Editor Header */
.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #2d2d30;
  border-bottom: 1px solid #3e3e42;
}

.editor-tabs {
  display: flex;
  gap: 8px;
}

.tab {
  padding: 6px 12px;
  background: #3e3e42;
  color: #cccccc;
  font-size: 12px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab--active {
  background: #1e1e1e;
  color: #ffffff;
}

.editor-controls {
  display: flex;
  gap: 6px;
}

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

.control-dot--red { background: #ff5f56; }
.control-dot--yellow { background: #ffbd2e; }
.control-dot--green { background: #27ca3f; }

/* Code Content */
.code-content {
  padding: 16px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
  position: relative;
  overflow: hidden;
}

.code-line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

.code-line.visible {
  opacity: 1;
  transform: translateX(0);
}

.line-number {
  width: 30px;
  color: #858585;
  font-size: 12px;
  text-align: right;
  margin-right: 16px;
  flex-shrink: 0;
  user-select: none;
}

.code-text {
  flex: 1;
  white-space: pre-wrap;
}

/* Syntax Highlighting */
.keyword { color: #569cd6; }
.method { color: #dcdcaa; }
.property { color: #9cdcfe; }
.string { color: #ce9178; }
.number { color: #b5cea8; }
.comment { color: #6a9955; }

/* Code Cursor */
.code-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 18px;
  background: #f59e0b;
  animation: blink 1s infinite;
  z-index: 20;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Responsive Design for Code Editor */
@media (max-width: 900px) {
  .code-editor {
    border-radius: 12px;
  }
  
  .code-content {
    font-size: 12px;
    padding: 12px;
  }
  
  .line-number {
    width: 25px;
    font-size: 11px;
    margin-right: 12px;
  }
  
  .editor-header {
    padding: 8px 12px;
  }
  
  .tab {
    padding: 4px 8px;
    font-size: 11px;
  }
  
  /* Ensure code lines animate properly on mobile */
  .code-line {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }
  
  .code-line.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Make cursor more visible on mobile */
  .code-cursor {
    width: 3px;
    height: 16px;
    background: #f59e0b;
    animation: blink 1s infinite;
  }
}

@media (max-width: 600px) {
  /* Script Section Code Editor - Mobile Optimizations */
  .script-section .sticky-animation__container {
    padding: 40px 0;
  }
  
  .script-section .sticky-animation__content {
    padding: 0 16px;
    gap: 30px;
  }
  
  .script-section .sticky-animation__text {
    text-align: right;
  }
  
  .script-section .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: right;
  }
  
  .script-section .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: right;
  }
  
  .script-section .sticky-animation__diagram {
    order: 2;
    min-height: 600px;
    max-height: 600px;
  }
  
  /* Script section Business Types Animation - 600px Mobile */
  .script-section .business-types-animation {
    height: 400px;
    max-width: 400px;
  }
  
  .script-section .business-hub {
    width: 120px;
    height: 120px;
  }
  
  .script-section .business-hub__icon {
    width: 50px;
    height: 50px;
  }
  
  .script-section .business-type-card {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }
  
  .script-section .business-type-card__icon {
    width: 32px;
    height: 32px;
  }
  
  .script-section .business-type-card__label {
    font-size: 10px;
  }
  
  .script-section .business-particle {
    width: 8px;
    height: 8px;
  }
  
  .code-editor {
    border-radius: 12px;
    min-height: 600px;
    height: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .code-content {
    font-size: 12px;
    padding: 12px;
    min-height: 520px;
    max-height: 520px;
    overflow-y: auto;
  }
  
  .line-number {
    width: 24px;
    font-size: 11px;
    margin-right: 10px;
  }
  
  .editor-header {
    padding: 10px 14px;
  }
  
  .tab {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 8px;
  }
  
  .control-dot {
    width: 12px;
    height: 12px;
  }
}

/* Responsive design */
@media (max-width: 900px) {
  .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    top: calc(50% - 200px);
    height: 400px;
  }
  
  .sticky-animation__text {
    max-width: 100%;
    padding: 20px 0;
  }
  
  .sticky-animation__diagram {
    height: 300px;
  }
  
  .module {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .module--highlighted {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  /* About section specific responsive styles */
  .about-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }
  
  .about-section .sticky-animation__text {
    max-width: 100%;
    padding: 20px 0;
  }
  
  .about-section .sticky-animation__title {
    font-size: clamp(32px, 5vw, 48px);
  }
  
  /* Process Steps List - Mobile */
  .about-section .process-steps-list {
    gap: 16px;
    margin: 24px 0;
  }
  
  .about-section .process-step-item {
    padding: 20px;
    gap: 16px;
  }
  
  .about-section .process-step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .about-section .process-step-title {
    font-size: 18px;
  }
  
  .about-section .process-step-description {
    font-size: 15px;
  }
  
  /* Solutions section responsive */
  .solutions-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: right;
    min-height: auto;
    padding: 0 20px;
  }
  
  .solutions-section .sticky-animation__text {
    max-width: 100%;
    padding: 20px 0;
    text-align: right;
    gap: 16px;
    width: 100%;
    overflow: visible;
  }
  
  .solutions-section .sticky-animation__title {
    font-size: clamp(32px, 5vw, 48px);
    text-align: right;
  }
  
  .solutions-section .sticky-animation__description {
    text-align: right;
    font-size: 16px;
  }
  
  .solutions-section .sticky-animation__features {
    gap: 12px;
    width: 100%;
  }
  
  .solutions-section .sticky-animation__features li {
    text-align: right;
    font-size: 15px;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  /* Sticky Animation General - Mobile Optimizations */
  .sticky-animation {
    padding: 50px 0;
  }
  
  .sticky-animation__container {
    padding: 40px 0;
  }
  
  .sticky-animation__content {
    padding: 0 16px;
    min-height: auto;
    gap: 30px;
    text-align: right;
  }
  
  .sticky-animation__text {
    text-align: right;
    max-width: 100%;
  }
  
  .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: right;
  }
  
  .sticky-animation__subtitle {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: right;
  }
  
  .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: right;
  }
  
  .sticky-animation__features {
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .sticky-animation__features li {
    font-size: 15px;
    padding: 14px 18px;
    line-height: 1.5;
    border-radius: 12px;
  }
  
  .sticky-animation__tagline {
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
  }
  
  .sticky-animation__diagram {
    order: 2;
    min-height: 350px;
    max-height: 500px;
  }
  
  /* About section specific mobile styles */
  .about-section .sticky-animation__container {
    padding: 40px 0;
  }
  
  .about-section .sticky-animation__content {
    padding: 0 16px;
    min-height: auto;
    gap: 30px;
  }
  
  .about-section .sticky-animation__text {
    text-align: right;
  }
  
  .about-section .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    text-align: right;
  }
  
  .about-section .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
  }
  
  .about-section .sticky-animation__features li {
    font-size: 15px;
    padding: 14px 18px;
    text-align: right;
  }
  
  .about-section .sticky-animation__tagline {
    font-size: 16px;
    text-align: right;
  }
  
  /* Process Steps List - 600px Mobile */
  .about-section .process-steps-list {
    gap: 14px;
    margin: 20px 0;
  }
  
  .about-section .process-step-item {
    padding: 18px;
    gap: 14px;
    border-radius: 14px;
  }
  
  .about-section .process-step-item:hover {
    transform: translateX(-6px);
  }
  
  .about-section .process-step-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
  }
  
  .about-section .process-step-title {
    font-size: 17px;
    line-height: 1.3;
  }
  
  .about-section .process-step-description {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* About section AI Process Flow - Mobile */
  .about-section .ai-process-flow {
    height: 450px;
    max-width: 450px;
  }
  
  .about-section .ai-brain-core {
    width: 140px;
    height: 140px;
  }
  
  .about-section .ai-brain-core__icon {
    width: 60px;
    height: 60px;
  }
  
  .about-section .process-step-card {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }
  
  .about-section .process-step-card__icon {
    width: 32px;
    height: 32px;
  }
  
  .about-section .process-step-card__label {
    font-size: 9px;
  }
  
  /* Solutions section AI animation - Mobile */
  .solutions-section .ai-bot-capabilities {
    height: 350px;
    max-width: 350px;
  }
  
  .solutions-section .ai-orb-sticky {
    width: 120px;
    height: 120px;
  }
  
  .solutions-section .capability-bubble {
    width: 130px;
    font-size: 11px;
  }
  
  .solutions-section .capability-bubble__header {
    padding: 8px 12px;
  }
  
  .solutions-section .capability-bubble__dot {
    width: 7px;
    height: 7px;
  }
  
  .solutions-section .capability-bubble__content {
    padding: 8px 12px;
  }
  
  .solutions-section .capability-bubble__message {
    padding: 6px 10px;
    font-size: 10px;
  }
  
  .solutions-section .sticky-animation__diagram {
    height: 350px;
  }
  
  /* About section AI Process Flow - 600px Mobile */
  .about-section .ai-process-flow {
    height: 400px;
    max-width: 400px;
  }
  
  .about-section .ai-brain-core {
    width: 120px;
    height: 120px;
  }
  
  .about-section .ai-brain-core__icon {
    width: 50px;
    height: 50px;
  }
  
  .about-section .process-step-card {
    width: 70px;
    height: 70px;
  }
  
  .about-section .process-step-card__icon {
    width: 28px;
    height: 28px;
  }
  
  .about-section .process-step-card__label {
    font-size: 8px;
  }
  
  .about-section .data-particle {
    width: 6px;
    height: 6px;
  }
  
  /* Solutions section text optimizations for mobile */
  .solutions-section .sticky-animation__content {
    padding: 0 16px;
    gap: 30px;
  }
  
  .solutions-section .sticky-animation__text {
    padding: 0;
    text-align: right;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  
  .solutions-section .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: right;
  }
  
  .solutions-section .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: right;
  }
  
  .solutions-section .sticky-animation__features {
    gap: 12px;
    margin-bottom: 0;
    width: 100%;
  }
  
  .solutions-section .sticky-animation__features li {
    font-size: 15px;
    padding: 14px 18px;
    line-height: 1.5;
    text-align: right;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Script section Business Types Animation - Mobile */
  .script-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: right;
    min-height: auto;
    padding: 0 20px;
  }
  
  .script-section .business-types-animation {
    height: 450px;
    max-width: 450px;
  }
  
  .script-section .business-hub {
    width: 140px;
    height: 140px;
  }
  
  .script-section .business-hub__icon {
    width: 60px;
    height: 60px;
  }
  
  .script-section .business-type-card {
    width: 90px;
    height: 90px;
    font-size: 11px;
  }
  
  .script-section .business-type-card__icon {
    width: 36px;
    height: 36px;
  }
  
  .script-section .business-type-card__label {
    font-size: 11px;
  }
}

/* Dashboard Content Styling - Clean and Professional */
.dashboard-content {
  position: absolute;
  inset: 15% 15% 15% 15%;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
  border: 1px solid #e8eaed;
  z-index: 20;
}

.dashboard-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Screen Data - Clean Professional Layout */
.screen-data {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  box-sizing: border-box;
  background: transparent;
}

.data-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e8eaed;
  border-right: 4px solid;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
  text-align: right;
  position: relative;
  overflow: hidden;
  min-width: 220px;
}

.data-item--cost {
  border-right: 4px solid #fbbc05;
}

.data-item--conversions {
  border-right: 4px solid #34a853;
}

.data-item--cpa {
  border-right: 4px solid #4285f4;
}

.data-label {
  font-size: 12px;
  font-weight: 500;
  color: #5f6368;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Roboto', sans-serif;
}

.data-value {
  font-size: 32px;
  font-weight: 600;
  color: #202124;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
  line-height: 1.1;
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.dashboard-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.dashboard-date {
  font-size: 12px;
  color: #6b7280;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Dashboard Metrics Grid - Clean 3 column layout */
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--metric-color, #6b7280);
}

.metric-card--primary::before { --metric-color: #3b82f6; }
.metric-card--success::before { --metric-color: #10b981; }
.metric-card--warning::before { --metric-color: #f59e0b; }
.metric-card--info::before { --metric-color: #8b5cf6; }

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.metric-icon {
  margin-bottom: 6px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon svg {
  width: 16px;
  height: 16px;
  color: inherit;
}

.metric-value {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 3px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.metric-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
  font-weight: 500;
}

.metric-change {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 10px;
  display: inline-block;
}

.metric-change--positive {
  background: #dcfce7;
  color: #166534;
}

.metric-change--negative {
  background: #fef2f2;
  color: #dc2626;
}

/* Dashboard Chart */
.dashboard-chart {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.chart-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.chart-legend {
  display: flex;
  gap: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #6b7280;
}

.legend-color {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.legend-color--clicks {
  background: #3b82f6;
}

.legend-color--conversions {
  background: #10b981;
}

/* Chart Bars */
.chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 80px;
  gap: 6px;
}

.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
}

.bar-clicks, .bar-conversions {
  width: 100%;
  background: #3b82f6;
  border-radius: 2px 2px 0 0;
  transition: all 0.6s ease;
  transform: scaleY(1);
  transform-origin: bottom;
}

.bar-clicks {
  background: #3b82f6;
  height: 65%;
}

.bar-conversions {
  background: #10b981;
  height: 45%;
  margin-top: 2px;
}

.bar-label {
  font-size: 10px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 6px;
}

/* Dashboard Activity */
.dashboard-activity {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.dashboard-activity h4 {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  background: #f9fafb;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.activity-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
  background: #cbd5e1;
  color: #475569;
}

.activity-icon svg {
  width: 12px;
  height: 12px;
  color: inherit;
}

.activity-content {
  flex: 1;
}

.activity-text {
  font-size: 12px;
  color: #374151;
  margin-bottom: 3px;
  line-height: 1.4;
}

.activity-time {
  font-size: 10px;
  color: #9ca3af;
}

/* Dashboard module positioning - positioned FAR AROUND the screen, not interfering */
.dashboard-module--background:nth-child(4) { top: 5%; left: 5%; }
.dashboard-module--background:nth-child(5) { top: 5%; right: 5%; }
.dashboard-module--background:nth-child(6) { top: 25%; left: 2%; }
.dashboard-module--background:nth-child(7) { top: 25%; right: 2%; }
.dashboard-module--background:nth-child(8) { top: 45%; left: 5%; }
.dashboard-module--background:nth-child(9) { top: 45%; right: 5%; }
.dashboard-module--background:nth-child(10) { top: 65%; left: 8%; }
.dashboard-module--background:nth-child(11) { top: 65%; right: 8%; }
.dashboard-module--background:nth-child(12) { bottom: 25%; left: 2%; }
.dashboard-module--background:nth-child(13) { bottom: 25%; right: 2%; }
.dashboard-module--background:nth-child(14) { bottom: 45%; left: 5%; }
.dashboard-module--background:nth-child(15) { bottom: 45%; right: 5%; }
.dashboard-module--background:nth-child(16) { bottom: 65%; left: 8%; }
.dashboard-module--background:nth-child(17) { bottom: 65%; right: 8%; }

/* Highlighted modules positioned strategically around the screen */
.dashboard-module--highlighted.dashboard-module--metrics {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.dashboard-module--highlighted.dashboard-module--leads {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== CHATBOT SECTION STYLES ===== */

/* Chatbot section specific styles */
.chatbot-section {
  z-index: 60;
  min-height: auto;
  padding: 80px 0;
}

/* Chatbot section container */
.chatbot-section .sticky-animation__container {
  height: auto;
  min-height: 100vh;
}

/* Chatbot section content */
.chatbot-section .sticky-animation__content {
  height: auto;
  min-height: 600px;
  position: relative;
  top: auto;
  transform: none;
}

.chatbot-section .sticky-animation__text {
  padding: 40px 0;
  max-width: 100%;
}

.chatbot-section .sticky-animation__subtitle {
  color: #25d366;
}

.chatbot-section .sticky-animation__title {
  color: #0a0b0d;
  font-size: clamp(40px, 4vw, 60px);
}

.chatbot-section .sticky-animation__description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* Chatbot CTA buttons */
.chatbot-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn--secondary {
  background: transparent;
  color: #25d366;
  border: 2px solid #25d366;
  box-shadow: none;
}

.btn--secondary:hover {
  background: #25d366;
  color: white;
}

/* Chatbot Device */
.chatbot-device {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(calc(0.9 + var(--chatbot-progress,0)*0.1));
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
  z-index: 20;
}

/* Phone Frame - Outline Style */
.phone-frame {
  position: relative;
  width: 320px;
  height: 600px;
  background: transparent;
  border: 3px solid #25d366;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.2);
  overflow: hidden;
}

.phone-frame--outline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 3px solid #25d366;
  box-shadow: 
    0 0 0 1px rgba(37, 211, 102, 0.1),
    0 20px 60px rgba(37, 211, 102, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-frame--outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(18, 140, 126, 0.05) 100%);
  border-radius: 24px;
  z-index: 1;
}

/* Phone Header - Outline Style */
.phone-header {
  position: relative;
  z-index: 2;
  background: rgba(7, 94, 84, 0.1);
  border: 2px solid rgba(37, 211, 102, 0.3);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  padding: 0;
  backdrop-filter: blur(5px);
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #000;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.status-dots {
  display: flex;
  gap: 4px;
}

.status-dot {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}

.phone-battery {
  width: 24px;
  height: 12px;
  border: 1px solid white;
  border-radius: 2px;
  position: relative;
}

.battery-level {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 8px;
  background: white;
  border-radius: 1px;
}

/* WhatsApp Header - Outline Style */
.whatsapp-header {
  background: rgba(7, 94, 84, 0.1);
  border-top: 1px solid rgba(37, 211, 102, 0.2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-avatar svg {
  width: 24px;
  height: 24px;
}

.contact-details {
  flex: 1;
}

.contact-name {
  color: white;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.contact-status {
  color: #a7a7a7;
  font-size: 12px;
}

/* Chat Messages - Outline Style */
.chat-messages {
  position: relative;
  z-index: 2;
  background: rgba(229, 221, 213, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.1);
  height: 400px;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(5px);
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
}

/* Messages - WhatsApp chatbot section only */
.chat-messages .message {
  display: flex;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.chat-messages .message.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-messages .bot-message {
  justify-content: flex-start;
}

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

.message-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 18px;
  position: relative;
  word-wrap: break-word;
}

.bot-message .message-bubble {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(37, 211, 102, 0.1);
  backdrop-filter: blur(5px);
}

.user-message .message-bubble {
  background: rgba(220, 248, 198, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 2px rgba(37, 211, 102, 0.1);
  backdrop-filter: blur(5px);
}

.message-text {
  font-size: 14px;
  line-height: 1.4;
  color: #303030;
  margin-bottom: 4px;
}

/* Typing Text Animation */
.typing-text {
  position: relative;
}

.typing-text::after {
  content: '|';
  color: #25d366;
  animation: blink 1s infinite;
  font-weight: bold;
}

.typing-text.typing-complete::after {
  display: none;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.message-time {
  font-size: 11px;
  color: #999;
  text-align: right;
}

/* CTA Bubble */
.cta-bubble {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: white !important;
  border-radius: 18px !important;
  border-bottom-left-radius: 4px !important;
}

.cta-bubble .message-text {
  color: white !important;
  margin-bottom: 12px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.cta-button {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

/* Success Bubble */
.success-bubble {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: white !important;
  border-radius: 18px !important;
  border-bottom-left-radius: 4px !important;
}

.success-bubble .message-text {
  color: white !important;
}

/* Typing Indicator */
.typing-indicator {
  position: relative;
  z-index: 2;
  background: #e5ddd5;
  padding: 16px;
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.typing-indicator.visible {
  opacity: 1;
  transform: translateY(0);
}

.typing-dots {
  display: flex;
  gap: 4px;
  background: white;
  padding: 8px 12px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Message Input */
.message-input {
  position: relative;
  z-index: 2;
  background: #e5ddd5;
  padding: 16px;
  border-radius: 0 0 24px 24px;
}

.input-field {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 8px 12px;
  gap: 8px;
}

.input-field input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #303030;
  background: transparent;
}

.input-field input::placeholder {
  color: #999;
}

.send-button {
  width: 32px;
  height: 32px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.send-button:hover {
  background: #128c7e;
  transform: scale(1.05);
}

.send-button svg {
  width: 16px;
  height: 16px;
}



/* Responsive Design for Chatbot Section */
@media (max-width: 900px) {
  .chatbot-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .chatbot-section .sticky-animation__text {
    max-width: 100%;
    padding: 20px 0 40px 0;
    order: 1;
  }
  
  .chatbot-section .sticky-animation__title {
    font-size: clamp(32px, 5vw, 48px);
  }
  
  .chatbot-cta {
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .chatbot-section .sticky-animation__diagram {
    order: 2;
    margin-top: 20px;
  }
  
  .phone-frame {
    width: 280px;
    height: 520px;
  }
  
  .chat-messages {
    height: 320px;
  }
}

@media (max-width: 600px) {
  /* Chatbot Section - Mobile Optimizations */
  .chatbot-section {
    padding: 60px 0;
    z-index: 60;
  }
  
  .chatbot-section .sticky-animation__container {
    min-height: auto;
    padding: 40px 0;
  }
  
  .chatbot-section .sticky-animation__content {
    padding: 0 16px;
    min-height: auto;
    gap: 40px;
  }
  
  .chatbot-section .sticky-animation__text {
    padding: 0 0 24px 0;
    text-align: right;
  }
  
  .chatbot-section .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: right;
  }
  
  .chatbot-section .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: right;
  }
  
  .chatbot-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .btn--secondary {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .chatbot-section .sticky-animation__diagram {
    margin-top: 20px;
    order: 2;
  }
  
  .phone-frame {
    width: 280px;
    height: 500px;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .chat-messages {
    height: 300px;
    padding: 16px;
  }
  
  .message-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 16px;
  }
  
  .message-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .cta-buttons {
    gap: 6px;
    flex-wrap: wrap;
  }
  
  .cta-button {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 12px;
  }
  
  .message-time {
    font-size: 10px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #0a0b0d;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #475467;
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(10, 11, 13, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(124, 58, 237, 0.02);
}

.faq-question:focus {
  outline: 2px solid #7c3aed;
  outline-offset: -2px;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 700;
  color: #0a0b0d;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #7c3aed;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.is-open {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 28px 24px;
}

.faq-answer-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #475467;
}

/* FAQ Animation */
@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer.is-open .faq-answer-content {
  animation: faqSlideDown 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-header {
    margin-bottom: 40px;
  }
  
  .faq-title {
    font-size: clamp(28px, 4vw, 40px);
  }
  
  .faq-subtitle {
    font-size: 16px;
  }
  
  .faq-question {
    padding: 20px 24px;
  }
  
  .faq-question-text {
    font-size: 16px;
  }
  
  .faq-answer-content {
    padding: 0 24px 20px;
  }
  
  .faq-answer-content p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  /* FAQ Section - Mobile Optimizations */
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-header {
    margin-bottom: 35px;
    padding: 0 16px;
  }
  
  .faq-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .faq-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .faq-container {
    padding: 0 16px;
  }
  
  .faq-question {
    padding: 18px 20px;
    border-radius: 12px;
  }
  
  .faq-question-text {
    font-size: 16px;
    line-height: 1.5;
    padding-right: 24px;
  }
  
  .faq-icon {
    width: 24px;
    height: 24px;
  }
  
  .faq-answer-content {
    padding: 0 20px 18px;
  }
  
  .faq-answer-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Results Section */
.results-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 100px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.results-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.results-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0a0b0d 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
  position: relative;
}

.results-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 2px;
}

.results-subtitle {
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.7;
  color: #64748b;
  margin: 32px 0 0;
  font-weight: 400;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.result-item {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: auto;
  backdrop-filter: blur(10px);
}

.result-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.result-item:hover::before {
  opacity: 1;
}

.result-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(124, 58, 237, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}

.result-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  background: #fafbfc;
  margin-bottom: 24px;
}

.result-item:hover .result-image {
  transform: scale(1.02);
}

.result-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(124, 58, 237, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
  pointer-events: none;
}

.result-item:hover::after {
  opacity: 1;
}

/* Result Content - ללא אייקונים, רק טקסט יפה */
.result-content {
  margin-top: 8px;
}

.result-metrics {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  min-width: 0;
}

.metric-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.metric-value {
  font-size: 22px;
  font-weight: 700;
  color: #0a0b0d;
  line-height: 1.2;
}

.metric-item:nth-child(1) .metric-value {
  color: #7c3aed;
}

.metric-item:nth-child(2) .metric-value {
  color: #10b981;
}

.metric-item:nth-child(3) .metric-value {
  color: #f59e0b;
}

/* Result Description */
.result-description {
  text-align: center;
  padding-top: 8px;
}

.result-client {
  font-size: 18px;
  font-weight: 700;
  color: #0a0b0d;
  margin: 0 0 8px;
  line-height: 1.3;
}

.result-summary {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive Design for Results */
@media (max-width: 1200px) {
  .results-grid {
    gap: 28px;
    max-width: 1200px;
  }
  
  .result-item {
    padding: 22px;
  }
  
  .metric-value {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .results-section {
    padding: 80px 0;
  }
  
  .results-header {
    margin-bottom: 50px;
    padding: 0 24px;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 24px;
  }
  
  .result-item {
    padding: 20px;
    border-radius: 20px;
  }
  
  .result-image {
    max-height: 400px;
    margin-bottom: 20px;
  }
  
  .result-metrics {
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  
  .metric-label {
    font-size: 11px;
  }
  
  .metric-value {
    font-size: 18px;
  }
  
  .result-client {
    font-size: 16px;
  }
  
  .result-summary {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  /* Results Section - Mobile Optimizations */
  .results-section {
    padding: 60px 0;
  }
  
  .results-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }
  
  .results-title {
    font-size: clamp(28px, 6vw, 36px);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .results-title::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }
  
  .results-subtitle {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.6;
    margin-top: 24px;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  
  .result-item {
    border-radius: 20px;
    padding: 20px;
  }
  
  .result-image {
    max-height: none;
    width: 100%;
    height: auto;
    margin-bottom: 18px;
  }
  
  .result-metrics {
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  
  .metric-label {
    font-size: 10px;
  }
  
  .metric-value {
    font-size: 18px;
  }
  
  .result-client {
    font-size: 16px;
  }
  
  .result-summary {
    font-size: 12px;
  }
  
  .result-item:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 430px) {
  /* Results Section - 430px Optimizations */
  .results-section {
    padding: 50px 0;
  }
  
  .results-header {
    margin-bottom: 32px;
    padding: 0 12px;
  }
  
  .results-title {
    font-size: clamp(24px, 7vw, 28px);
    margin-bottom: 12px;
  }
  
  .results-title::after {
    width: 50px;
    height: 2px;
    bottom: -8px;
  }
  
  .results-subtitle {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.5;
  }
  
  .results-grid {
    gap: 18px;
    padding: 0 12px;
  }
  
  .result-item {
    padding: 18px;
    border-radius: 18px;
  }
  
  .result-image {
    margin-bottom: 16px;
    border-radius: 10px;
  }
  
  .result-metrics {
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    justify-content: space-around;
    flex-wrap: nowrap;
  }
  
  .metric-item {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 2px;
    overflow: hidden;
  }
  
  .metric-label {
    font-size: 10px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  
  .metric-value {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.2;
  }
  
  .result-description {
    padding-top: 6px;
  }
  
  .result-client {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .result-summary {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  /* Results Section - 390px Optimizations */
  .results-section {
    padding: 40px 0;
  }
  
  .results-header {
    margin-bottom: 28px;
    padding: 0 10px;
  }
  
  .results-title {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .results-title::after {
    width: 45px;
    height: 2px;
    bottom: -6px;
  }
  
  .results-subtitle {
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.5;
  }
  
  .results-grid {
    gap: 16px;
    padding: 0 10px;
  }
  
  .result-item {
    padding: 14px;
    border-radius: 16px;
  }
  
  .result-image {
    margin-bottom: 14px;
    border-radius: 8px;
  }
  
  .result-metrics {
    gap: 4px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .metric-item {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 1px;
    overflow: hidden;
  }
  
  .metric-label {
    font-size: 9px;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  
  .metric-value {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.1;
  }
  
  .result-description {
    padding-top: 4px;
  }
  
  .result-client {
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.3;
  }
  
  .result-summary {
    font-size: 11px;
    line-height: 1.5;
  }
  
  .result-item:hover {
    transform: translateY(-4px);
  }
}

/* PPC Section Styles */
.ppc-section {
  z-index: 35;
  min-height: auto;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.ppc-section .sticky-animation__container {
  height: auto;
  min-height: 100vh;
}

.ppc-section .sticky-animation__content {
  height: auto;
  min-height: 600px;
  position: relative;
  top: auto;
  transform: none;
}

.ppc-section .sticky-animation__text {
  padding: 40px 0;
  max-width: 100%;
}

.ppc-section .sticky-animation__subtitle {
  color: #4285f4;
}

.ppc-section .sticky-animation__title {
  color: #0a0b0d;
  font-size: clamp(40px, 4vw, 60px);
}

.ppc-section .sticky-animation__description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* PPC Visual Container */
.ppc-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

/* Google Ads Dashboard */
.ads-dashboard {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transform: scale(0.9);
  opacity: 0;
  animation: dashboardReveal 0.8s ease forwards;
  animation-delay: 0.3s;
  transition: all 0.3s ease;
}

.ads-dashboard:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(66, 133, 244, 0.25);
}

@keyframes dashboardReveal {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ads-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  color: white;
}

.google-ads-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.dashboard-label {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-badge--active {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

/* Ad Preview */
.ad-preview {
  padding: 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  opacity: 0;
  animation: adReveal 0.6s ease forwards;
  animation-delay: 0.7s;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ad-preview:hover {
  background: #ffffff;
  box-shadow: inset 0 0 20px rgba(66, 133, 244, 0.1);
}

@keyframes adReveal {
  to {
    opacity: 1;
  }
}

.ad-tag {
  display: inline-block;
  padding: 2px 6px;
  background: #4285f4;
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 4px;
}

.ad-url {
  font-size: 12px;
  color: #059669;
  font-weight: 500;
  margin-bottom: 4px;
}

.ad-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a0dab;
  margin-bottom: 4px;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ad-title:hover {
  color: #4285f4;
  text-decoration: underline;
}

.ad-description {
  font-size: 13px;
  color: #545454;
  line-height: 1.4;
}

/* Performance Grid */
.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
}

.perf-card {
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: perfCardReveal 0.5s ease forwards;
  text-align: center;
}

.perf-card--clicks {
  animation-delay: 0.9s;
  border-color: #4285f4;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.05) 0%, rgba(66, 133, 244, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.perf-card--clicks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #4285f4;
  border-radius: 12px 12px 0 0;
}

.perf-card--conversions {
  animation-delay: 1.1s;
  border-color: #34a853;
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.05) 0%, rgba(52, 168, 83, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.perf-card--conversions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #34a853;
  border-radius: 12px 12px 0 0;
}

.perf-card--ctr {
  animation-delay: 1.3s;
  border-color: #fbbc05;
  background: linear-gradient(135deg, rgba(251, 188, 5, 0.05) 0%, rgba(251, 188, 5, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.perf-card--ctr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #fbbc05;
  border-radius: 12px 12px 0 0;
}

.perf-card--roas {
  animation-delay: 1.5s;
  border-color: #ea4335;
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.05) 0%, rgba(234, 67, 53, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.perf-card--roas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ea4335;
  border-radius: 12px 12px 0 0;
}

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

.perf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.perf-card--clicks:hover {
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.25);
  border-color: #4285f4;
}

.perf-card--conversions:hover {
  box-shadow: 0 8px 30px rgba(52, 168, 83, 0.25);
  border-color: #34a853;
}

.perf-card--ctr:hover {
  box-shadow: 0 8px 30px rgba(251, 188, 5, 0.25);
  border-color: #fbbc05;
}

.perf-card--roas:hover {
  box-shadow: 0 8px 30px rgba(234, 67, 53, 0.25);
  border-color: #ea4335;
}

.perf-label {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.perf-value {
  font-size: 28px;
  font-weight: 800;
  color: #0a0b0d;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  margin-bottom: 4px;
}

.perf-change {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

.perf-change--up {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  animation: pulseGreen 2s ease-in-out infinite;
}

@keyframes pulseGreen {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  }
}

/* PPC Metrics */
.ppc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.ppc-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(66, 133, 244, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: metricReveal 0.5s ease forwards;
}

.ppc-metric:nth-child(1) {
  animation-delay: 1.7s;
}

.ppc-metric:nth-child(2) {
  animation-delay: 1.9s;
}

.ppc-metric:nth-child(3) {
  animation-delay: 2.1s;
}

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

.ppc-metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.2);
  border-color: rgba(66, 133, 244, 0.4);
}

.ppc-metric .metric-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.ppc-metric .metric-icon svg {
  width: 24px;
  height: 24px;
}

.ppc-metric .metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #0a0b0d;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  text-align: center;
}

.ppc-metric .metric-label {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  font-weight: 500;
}

/* PPC Section connection line */
.ppc-section .connection-line {
  stroke: #4285f4;
  z-index: 28;
}

/* PPC Section modules */
.ppc-section .module--background {
  animation: floatPPC 7s ease-in-out infinite;
  z-index: 30;
}

.ppc-section .module--background:nth-child(4) { animation-delay: 0s; }
.ppc-section .module--background:nth-child(5) { animation-delay: 0.8s; }
.ppc-section .module--background:nth-child(6) { animation-delay: 1.6s; }
.ppc-section .module--background:nth-child(7) { animation-delay: 2.4s; }
.ppc-section .module--background:nth-child(8) { animation-delay: 3.2s; }
.ppc-section .module--background:nth-child(9) { animation-delay: 4s; }

/* Different float animation for PPC section */
@keyframes floatPPC {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-6px) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

/* PPC Section connections */
.ppc-section .connections {
  z-index: 28;
}

/* Prefers Reduced Motion - PPC Section */
@media (prefers-reduced-motion: reduce) {
  .ads-dashboard,
  .ad-preview,
  .perf-card,
  .ppc-metric {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .ppc-section .module--background {
    animation: none !important;
  }
}

/* Mobile Responsive for PPC Section */
@media (max-width: 900px) {
  .ppc-section {
    padding: 60px 0;
  }
  
  .ppc-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .ppc-section .sticky-animation__text {
    max-width: 100%;
    padding: 20px 0;
  }
  
  .ppc-section .sticky-animation__title {
    font-size: clamp(32px, 5vw, 48px);
  }
  
  .ads-dashboard {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .ppc-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ppc-metric {
    padding: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .ppc-visual {
    gap: 20px;
    padding: 10px;
  }
  
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  /* PPC Section - Mobile Optimizations */
  .ppc-section {
    padding: 50px 0;
  }
  
  .ppc-section .sticky-animation__container {
    padding: 40px 0;
  }
  
  .ppc-section .sticky-animation__content {
    padding: 0 16px;
    min-height: auto;
    gap: 30px;
  }
  
  .ppc-section .sticky-animation__text {
    text-align: right;
  }
  
  .ppc-section .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: right;
  }
  
  .ppc-section .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: right;
  }
  
  .ppc-section .sticky-animation__features li {
    font-size: 15px;
    padding: 14px 18px;
    line-height: 1.5;
  }
  
  .ads-header {
    padding: 14px 18px;
  }
  
  .dashboard-label {
    font-size: 15px;
    font-weight: 600;
  }
  
  .ad-preview {
    padding: 18px;
    border-radius: 12px;
  }
  
  .ad-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 6px;
  }
  
  .ad-description {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .performance-grid {
    padding: 16px;
    gap: 12px;
  }
  
  .perf-card {
    padding: 16px;
    border-radius: 12px;
  }
  
  .perf-value {
    font-size: 26px;
    line-height: 1.2;
  }
  
  .perf-label {
    font-size: 13px;
  }
  
  .ppc-metric {
    padding: 16px;
  }
  
  .ppc-metric .metric-value {
    font-size: 22px;
  }
  
  .ppc-metric .metric-label {
    font-size: 13px;
  }
}

/* SEO Section Styles */
.seo-section {
  z-index: 36;
  min-height: auto;
  padding: 80px 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.seo-section .sticky-animation__container {
  height: auto;
  min-height: 100vh;
}

.seo-section .sticky-animation__content {
  height: auto;
  min-height: 600px;
  position: relative;
  top: auto;
  transform: none;
}

.seo-section .sticky-animation__text {
  padding: 40px 0;
  max-width: 100%;
}

.seo-section .sticky-animation__subtitle {
  color: #34a853;
}

.seo-section .sticky-animation__title {
  color: #0a0b0d;
  font-size: clamp(40px, 4vw, 60px);
}

.seo-section .sticky-animation__description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.seo-section .sticky-animation__features {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.seo-section .sticky-animation__features li {
  margin: 12px 0;
  padding: 14px 18px;
  background: rgba(52, 168, 83, 0.05);
  border-right: 3px solid #34a853;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
  transition: all 0.3s ease;
}

.seo-section .sticky-animation__features li:hover {
  background: rgba(52, 168, 83, 0.1);
  border-right-width: 5px;
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(52, 168, 83, 0.15);
}

.seo-section .sticky-animation__tagline {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #34a853;
  text-align: center;
  font-style: italic;
}

/* SEO Visual Container */
.seo-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

/* Search Interface for SEO */
.seo-section .search-interface {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transform: scale(0.9);
  opacity: 0;
  animation: seoSearchReveal 0.8s ease forwards;
  animation-delay: 0.3s;
  transition: all 0.3s ease;
}

.seo-section .search-interface:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(52, 168, 83, 0.25);
}

@keyframes seoSearchReveal {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.seo-section .search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-bottom: 1px solid #bbf7d0;
  transition: all 0.3s ease;
}

.seo-section .search-bar:hover {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.seo-section .search-icon {
  width: 24px;
  height: 24px;
  color: #34a853;
  flex-shrink: 0;
  animation: searchIconPulse 3s ease-in-out infinite;
}

@keyframes searchIconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(52, 168, 83, 0));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(52, 168, 83, 0.4));
  }
}

.seo-section .search-text {
  flex: 1;
  font-size: 16px;
  color: #374151;
  font-weight: 400;
}

/* Search Results for SEO */
.seo-section .search-results {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-section .search-result {
  position: relative;
  padding: 16px;
  padding-right: 50px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: seoResultReveal 0.5s ease forwards;
}

.search-result--top {
  animation-delay: 0.5s;
  border-color: #34a853;
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.05) 0%, rgba(52, 168, 83, 0.02) 100%);
}

.search-result--second {
  animation-delay: 0.7s;
}

.search-result--third {
  animation-delay: 0.9s;
}

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

.seo-section .search-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.search-result--top:hover {
  border-color: #34a853;
  box-shadow: 0 8px 30px rgba(52, 168, 83, 0.2);
}

.search-result--second:hover {
  border-color: #e5e7eb;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.search-result--third:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.result-badge {
  display: inline-block;
  padding: 3px 8px;
  background: #34a853;
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(52, 168, 83, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(52, 168, 83, 0);
  }
}

.seo-section .result-url {
  font-size: 12px;
  color: #059669;
  font-weight: 500;
  margin-bottom: 4px;
}

.seo-section .result-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a0dab;
  margin-bottom: 4px;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seo-section .result-title:hover {
  color: #34a853;
  text-decoration: underline;
}

.seo-section .result-description {
  font-size: 13px;
  color: #545454;
  line-height: 1.4;
}

.seo-section .result-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #34a853 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
}

.search-result--top .result-rank {
  animation: pulseSEO 2s infinite;
}

@keyframes pulseSEO {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.6), 0 0 0 8px rgba(52, 168, 83, 0.2);
  }
}

/* SEO Metrics */
.seo-section .seo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.seo-section .seo-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(52, 168, 83, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: seoMetricReveal 0.5s ease forwards;
}

.seo-section .seo-metric:nth-child(1) {
  animation-delay: 1.1s;
}

.seo-section .seo-metric:nth-child(2) {
  animation-delay: 1.3s;
}

.seo-section .seo-metric:nth-child(3) {
  animation-delay: 1.5s;
}

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

.seo-section .seo-metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(52, 168, 83, 0.2);
  border-color: rgba(52, 168, 83, 0.4);
}

.seo-section .seo-metric .metric-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #34a853 0%, #059669 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.seo-section .seo-metric .metric-icon svg {
  width: 24px;
  height: 24px;
}

.seo-section .seo-metric .metric-value {
  font-size: 24px;
  font-weight: 800;
  color: #0a0b0d;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  text-align: center;
}

.seo-section .seo-metric .metric-label {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  font-weight: 500;
}

/* SEO Section connection line */
.seo-section .connection-line {
  stroke: #34a853;
  z-index: 28;
}

/* SEO Section modules */
.seo-section .module--background {
  animation: floatSEO 7s ease-in-out infinite;
  z-index: 30;
}

.seo-section .module--background:nth-child(4) { animation-delay: 0s; }
.seo-section .module--background:nth-child(5) { animation-delay: 0.8s; }
.seo-section .module--background:nth-child(6) { animation-delay: 1.6s; }
.seo-section .module--background:nth-child(7) { animation-delay: 2.4s; }
.seo-section .module--background:nth-child(8) { animation-delay: 3.2s; }
.seo-section .module--background:nth-child(9) { animation-delay: 4s; }

/* Different float animation for SEO section */
@keyframes floatSEO {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-6px) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

/* SEO Section connections */
.seo-section .connections {
  z-index: 28;
}

/* Prefers Reduced Motion - SEO Section */
@media (prefers-reduced-motion: reduce) {
  .seo-section .search-interface,
  .seo-section .search-result,
  .seo-section .seo-metric {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .seo-section .module--background {
    animation: none !important;
  }
}

/* Mobile Responsive for SEO Section */
@media (max-width: 900px) {
  .seo-section {
    padding: 60px 0;
  }
  
  .seo-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .seo-section .sticky-animation__text {
    max-width: 100%;
    padding: 80px 0;
  }
  
  .seo-section .sticky-animation__title {
    font-size: clamp(32px, 5vw, 48px);
  }
  
  .seo-section .search-interface {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .seo-section .seo-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .seo-section .seo-metric {
    padding: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .seo-section .seo-visual {
    gap: 20px;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  /* SEO Section - Mobile Optimizations */
  .seo-section {
    padding: 50px 0;
  }
  
  .seo-section .sticky-animation__container {
    padding: 40px 0;
  }
  
  .seo-section .sticky-animation__content {
    padding: 0 16px;
    min-height: auto;
    gap: 30px;
  }
  
  .seo-section .sticky-animation__text {
    text-align: right;
  }
  
  .seo-section .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: right;
  }
  
  .seo-section .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: right;
  }
  
  .seo-section .sticky-animation__features li {
    font-size: 15px;
    padding: 14px 18px;
    line-height: 1.5;
  }
  
  .seo-section .search-interface {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .seo-section .search-bar {
    padding: 14px 18px;
    border-radius: 12px;
  }
  
  .seo-section .search-text {
    font-size: 15px;
  }
  
  .seo-section .search-results {
    padding: 18px;
    gap: 14px;
  }
  
  .seo-section .search-result {
    padding: 14px;
    padding-right: 50px;
    border-radius: 12px;
  }
  
  .seo-section .result-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 6px;
  }
  
  .seo-section .result-description {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .seo-section .result-rank {
    width: 32px;
    height: 32px;
    font-size: 12px;
    top: 10px;
    left: 10px;
  }
  
  .seo-section .seo-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  
  .seo-section .seo-metric {
    padding: 16px;
  }
  
  .seo-section .seo-metric .metric-value {
    font-size: 22px;
  }
  
  .seo-section .seo-metric .metric-label {
    font-size: 13px;
  }
  
  .result-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* Landing Pages Section */
.landing-pages-section {
  background: #ffffff;
  position: relative;
  z-index: 30;
}

.landing-pages-section .sticky-animation__container {
  height: 100vh;
  position: relative;
}

.landing-pages-section .sticky-animation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 100vh;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-pages-section .sticky-animation__text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.landing-pages-section .sticky-animation__subtitle {
  color: #8b5cf6;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
}

.landing-pages-section .sticky-animation__title {
  color: #0a0b0d;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.landing-pages-section .sticky-animation__description {
  color: #475467;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px;
}

/* Landing Pages Form Styles */
.form-wrapper--landing {
  margin-top: 40px;
  padding: 32px;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(230, 232, 235, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.lead--landing {
  padding: 0;
}

.pill--landing {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.pill--landing input {
  color: #0a0b0d;
  font-weight: 500;
}

.pill--landing input::placeholder {
  color: #667085;
}

.btn--cta-landing {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  border-radius: 50px;
  padding: 16px 28px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.btn--cta-landing:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.landing-pages-section .step__title {
  color: #0a0b0d;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 12px;
}

.landing-pages-section .chip {
  background: #ffffff;
  border: 1px solid #d0d5dd;
  color: #344054;
  transition: all 0.2s ease;
}

.landing-pages-section .chip:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
}

.landing-pages-section .chip.is-selected {
  background: #f4f0ff;
  border-color: #8b5cf6;
  color: #8b5cf6;
}

.landing-pages-section .field input,
.landing-pages-section .field textarea {
  background: #ffffff;
  border: 1px solid #d0d5dd;
  color: #0a0b0d;
}

.landing-pages-section .field input:focus,
.landing-pages-section .field textarea:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.landing-pages-section .step__actions {
  margin-top: 24px;
}

.landing-pages-section .btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.landing-pages-section .btn--primary {
  background: #8b5cf6;
  color: white;
  border: none;
}

.landing-pages-section .btn--primary:hover {
  background: #7c3aed;
  transform: translateY(-1px);
}

/* Computer Screen Styles */
.computer-screen {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.computer-screen:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.computer-screen .browser-frame {
  background: #ffffff;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.computer-screen .bottom-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(229, 231, 235, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 60px;
}

.tab-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.tab-item.active {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: #7c3aed;
}

.tab-item svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.tab-item.active svg {
  color: #7c3aed;
}

.tab-item span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
}

.tab-item.active span {
  color: #7c3aed;
}

/* Landing Page Content Styles */
.landing-page-content {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.landing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.landing-logo {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.landing-nav {
  display: flex;
  gap: 20px;
}

.nav-item {
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: #7c3aed;
}

.hero-section {
  text-align: center;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-form {
  display: flex;
  gap: 8px;
  max-width: 300px;
  margin: 0 auto;
}

.hero-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.hero-input:focus {
  border-color: #7c3aed;
}

.hero-button {
  padding: 10px 16px;
  background: #7c3aed;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-button:hover {
  background: #6d28d9;
}

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

.feature-item {
  text-align: center;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.feature-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

/* Landing Page Builder Animation */
.landing-page-builder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.landing-page-builder .browser-frame {
  flex: 1;
  min-height: 0;
}

.landing-page-builder .building-tools {
  flex-shrink: 0;
  order: 3;
  margin-top: auto;
  width: 100%;
  max-width: 600px;
  align-self: center;
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-bottom: none;
  padding: 16px 20px;
  margin-top: 0;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
}

/* Browser Frame */
.browser-frame {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.browser-header {
  background: #f8fafc;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.browser-controls {
  display: flex;
  gap: 6px;
}

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

.control-dot--red { background: #ff5f56; }
.control-dot--yellow { background: #ffbd2e; }
.control-dot--green { background: #27ca3f; }

.browser-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #6b7280;
}

.url-text {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Landing Page Content */
.landing-page-content {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.page-section {
  margin-bottom: 32px;
  position: relative;
}

.section-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #8b5cf6;
  border-radius: 1px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.8s ease;
}

.section-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* Section-specific styles */
.page-header .section-line--header {
  top: 0;
  height: 3px;
}

.page-hero .section-line--hero {
  top: 0;
  height: 3px;
}

.page-features .section-line--features {
  top: 0;
  height: 3px;
}

.page-cta .section-line--cta {
  top: 0;
  height: 3px;
}

/* Landing Page Real Content */
.landing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.landing-logo {
  font-size: 24px;
  font-weight: 800;
  color: #8b5cf6;
}

.landing-nav {
  display: flex;
  gap: 24px;
}

.nav-item {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: #8b5cf6;
}

/* Hero Section */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.hero-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.landing-headline {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
  margin: 0 0 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.landing-paragraph {
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.hero-form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.landing-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.landing-input:focus {
  outline: none;
  border-color: #8b5cf6;
}

.landing-button {
  padding: 12px 24px;
  background: #8b5cf6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.landing-button:hover {
  background: #7c3aed;
}

.hero-stats {
  display: flex;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #8b5cf6;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
}

/* Hero Visual */
.hero-visual {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.dashboard-preview {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.preview-dots {
  display: flex;
  gap: 4px;
}

.preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.preview-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.preview-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview-chart {
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.preview-chart::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.preview-metrics {
  display: flex;
  gap: 16px;
}

.metric {
  padding: 8px 12px;
  background: #10b981;
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* Features Section */
.features-header {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.features-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px;
}

.features-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card:hover {
  border-color: #8b5cf6;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #8b5cf6;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.feature-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* CTA Section */
.cta-content {
  text-align: center;
  background: #f8fafc;
  border-radius: 16px;
  padding: 48px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px;
}

.cta-description {
  font-size: 18px;
  color: #6b7280;
  margin: 0 0 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-button--primary {
  background: #8b5cf6;
  color: white;
  border: none;
}

.cta-button--primary:hover {
  background: #7c3aed;
}

.cta-button--secondary {
  background: transparent;
  color: #8b5cf6;
  border: 2px solid #8b5cf6;
}

.cta-button--secondary:hover {
  background: #8b5cf6;
  color: white;
}

/* Building Tools Panel */
.building-tools {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  justify-content: center;
  margin-top: auto;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  transform: translateY(10px);
}

.tool-item--active {
  background: #8b5cf6;
  color: white;
  opacity: 1;
  transform: translateY(0);
}

.tool-item:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.tool-item--active:hover {
  background: #7c3aed;
}

.tool-item svg {
  width: 20px;
  height: 20px;
}

.tool-item span {
  font-size: 12px;
  font-weight: 600;
}

/* Progress Indicator */
.build-progress {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin-bottom: 20px;
  order: 2;
  flex-shrink: 0;
  align-self: center;
  position: sticky;
  bottom: 80px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-bottom: none;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
  margin-bottom: 0;
  margin-top: auto;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
  border-radius: 3px;
  width: 0%;
  transition: width 0.8s ease;
}

.progress-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Animation States Based on Scroll Progress */
.landing-page-builder[style*="--build-progress: 0.2"] .section-line--header,
.landing-page-builder[style*="--build-progress: 0.3"] .section-line--header {
  opacity: 1;
  transform: scaleX(1);
}

.landing-page-builder[style*="--build-progress: 0.3"] .page-header .section-content {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.3"] .landing-header {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.4"] .section-line--hero,
.landing-page-builder[style*="--build-progress: 0.5"] .section-line--hero {
  opacity: 1;
  transform: scaleX(1);
}

.landing-page-builder[style*="--build-progress: 0.5"] .page-hero .section-content {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.5"] .hero-grid {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.5"] .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.5"] .landing-headline {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.5"] .landing-paragraph {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.5"] .hero-form {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.5"] .hero-stats {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.5"] .hero-visual {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.6"] .section-line--features,
.landing-page-builder[style*="--build-progress: 0.7"] .section-line--features {
  opacity: 1;
  transform: scaleX(1);
}

.landing-page-builder[style*="--build-progress: 0.7"] .page-features .section-content {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.7"] .features-header {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.7"] .features-grid {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.7"] .feature-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.landing-page-builder[style*="--build-progress: 0.7"] .feature-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.landing-page-builder[style*="--build-progress: 0.7"] .feature-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.landing-page-builder[style*="--build-progress: 0.8"] .section-line--cta,
.landing-page-builder[style*="--build-progress: 0.9"] .section-line--cta {
  opacity: 1;
  transform: scaleX(1);
}

.landing-page-builder[style*="--build-progress: 0.9"] .page-cta .section-content {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.9"] .cta-content {
  opacity: 1;
  transform: translateY(0);
}

/* Tool Items Animation */
.landing-page-builder[style*="--build-progress: 0.2"] .tool-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.4"] .tool-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.6"] .tool-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.7"] .tool-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
}

.landing-page-builder[style*="--build-progress: 0.9"] .tool-item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
}

/* Progress Bar Animation */
.landing-page-builder[style*="--build-progress: 0.1"] .progress-fill {
  width: 10%;
}

.landing-page-builder[style*="--build-progress: 0.3"] .progress-fill {
  width: 30%;
}

.landing-page-builder[style*="--build-progress: 0.5"] .progress-fill {
  width: 50%;
}

.landing-page-builder[style*="--build-progress: 0.7"] .progress-fill {
  width: 70%;
}

.landing-page-builder[style*="--build-progress: 0.9"] .progress-fill {
  width: 90%;
}

.landing-page-builder[style*="--build-progress: 1"] .progress-fill {
  width: 100%;
}

/* Mobile Responsive for Landing Pages Section */
@media (max-width: 900px) {
  .landing-pages-section .sticky-animation__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  
  .landing-pages-section .sticky-animation__text {
    max-width: 100%;
  }
  
  .landing-pages-section .sticky-animation__title {
    font-size: clamp(28px, 4vw, 40px);
  }
  
  .form-wrapper--landing {
    margin: 30px auto 0;
    padding: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .pill--landing {
    padding: 6px;
  }
  
  .pill--landing input {
    padding: 12px 12px 12px 16px;
    font-size: 16px;
  }
  
  .btn--cta-landing {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 50px;
    min-width: 100px;
  }
  
  .landing-pages-section .sticky-animation__diagram {
    height: 400px;
  }
  
  .computer-screen {
    max-width: 400px;
    height: 450px;
  }
  
  .landing-page-content {
    padding: 16px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-form {
    flex-direction: column;
    gap: 8px;
  }
  
  .features-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .bottom-tabs {
    gap: 6px;
    padding: 12px;
  }
  
  .tab-item {
    padding: 6px 8px;
    min-width: 50px;
  }
  
  .tab-item svg {
    width: 14px;
    height: 14px;
  }
  
  .tab-item span {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size:54px;
    line-height: 1.1;
    text-align: center;
    padding-top: 60px;
  }
  .hero__subtitle{
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  /* Landing Pages Section - Mobile Optimizations */
  .landing-pages-section .sticky-animation__container {
    padding: 40px 0;
  }
  
  .landing-pages-section .sticky-animation__content {
    padding: 0 16px;
    gap: 30px;
  }
  
  .landing-pages-section .sticky-animation__text {
    text-align: right;
  }
  
  .landing-pages-section .sticky-animation__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: right;
  }
  
  .landing-pages-section .sticky-animation__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: right;
  }
  
  .form-wrapper--landing {
    margin: 24px auto 0;
    padding: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .landing-pages-section .step__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .landing-pages-section .chip {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 12px;
  }
  
  .landing-pages-section .btn {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .landing-pages-section .sticky-animation__diagram {
    order: 2;
    min-height: 450px;
  }
  
  .computer-screen {
    max-width: 100%;
    height: 450px;
    border-radius: 16px;
  }
  
  .landing-page-content {
    padding: 16px;
  }
  
  .page-section {
    margin-bottom: 24px;
  }
  
  .text-line--hero-title {
    height: 28px;
  }
  
  .text-line--hero-subtitle {
    height: 18px;
  }
  
  .form-placeholder {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-line--input {
    width: 100%;
  }
  
  .building-tools {
    padding: 12px;
    gap: 8px;
  }
  
  .tool-item {
    padding: 8px;
    min-width: 60px;
  }
  
  .progress-text {
    font-size: 13px;
  }
  
  .landing-headline {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .landing-paragraph {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .features-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .cta-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .cta-content {
    padding: 40px 24px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    text-align: center;
  }
}

/* ROAS Calculator Section */
.roas-calculator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.roas-calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="calc-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%237c3aed" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23calc-pattern)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.roas-calculator-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.roas-calculator-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7c3aed;
  margin: 0 0 16px;
}

.roas-calculator-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #0a0b0d;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.roas-calculator-description {
  font-size: 18px;
  color: #475467;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Calculator Tabs */
.calculator-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.calc-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  backdrop-filter: blur(10px);
}

.calc-tab svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.calc-tab:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: #7c3aed;
}

.calc-tab--active {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border-color: #7c3aed;
  color: white;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.calc-tab--active svg {
  color: white;
}

/* Calculator Content */
.calculator-content {
  display: none;
  position: relative;
  z-index: 2;
}

.calc-content--active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Calculator Inputs */
.calculator-inputs {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
}

.calc-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a0b0d;
  margin: 0 0 32px;
}

.calc-input-group {
  margin-bottom: 24px;
}

.calc-label {
  display: block;
  width: 100%;
}

.calc-label-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.calc-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  color: #0a0b0d;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
}

.calc-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.calc-input::placeholder {
  color: #9ca3af;
}

.calc-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  margin-top: 16px;
}

.calc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.calc-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.calc-button:hover svg {
  transform: rotate(20deg);
}

/* Calculator Results */
.calculator-results {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.results-placeholder {
  text-align: center;
  color: #6b7280;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #7c3aed;
}

.placeholder-icon svg {
  width: 40px;
  height: 40px;
}

.results-placeholder p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Results Display */
.results-display {
  animation: fadeInScale 0.5s ease;
}

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

.results-main {
  text-align: center;
  margin-bottom: 40px;
}

.results-label {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.results-roas {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.results-interpretation {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
}

/* ROAS Visual Bar */
.roas-visual {
  margin: 32px 0;
  width: 100%;
}

.roas-bar {
  width: 100%;
  height: 12px;
  background: rgba(229, 231, 235, 0.5);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.roas-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 25%, #fbbf24 50%, #10b981 75%, #059669 100%);
  border-radius: 6px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  position: relative;
}

.roas-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 6px 6px 0;
}

.roas-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  padding: 0 4px;
}

.results-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.result-metric {
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.result-metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(124, 58, 237, 0.3);
}

.metric-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 12px;
}

.metric-icon svg {
  width: 20px;
  height: 20px;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #0a0b0d;
  margin-bottom: 4px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.metric-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.results-breakdown {
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.breakdown-title {
  font-size: 16px;
  font-weight: 700;
  color: #0a0b0d;
  margin: 0 0 16px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

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

.breakdown-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.breakdown-value {
  font-size: 16px;
  font-weight: 700;
  color: #0a0b0d;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Results Comparison */
.results-comparison {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.comparison-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a0b0d;
  margin: 0 0 20px;
  text-align: center;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 2px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.comparison-card--before {
  border-color: #e5e7eb;
}

.comparison-card--after {
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.comparison-value {
  font-size: 28px;
  font-weight: 800;
  color: #0a0b0d;
  margin-bottom: 4px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.comparison-card--after .comparison-value {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-sublabel {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
}

.comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.comparison-arrow svg {
  width: 24px;
  height: 24px;
}

.comparison-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.comparison-note svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

.comparison-note span {
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
}

/* Results Tips */
.results-tips {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.tips-title {
  font-size: 16px;
  font-weight: 700;
  color: #0a0b0d;
  margin: 0 0 12px;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  padding: 8px 12px 8px 32px;
  position: relative;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 8px;
}

.tips-list li:last-child {
  margin-bottom: 0;
}

.tips-list li::before {
  content: '✓';
  position: absolute;
  right: 12px;
  top: 8px;
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
}

.results-cta {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.results-cta-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.results-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.results-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.results-cta-button svg {
  width: 16px;
  height: 16px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .roas-calculator-section {
    padding: 60px 0;
  }
  
  .calculator-tabs {
    flex-direction: column;
    gap: 12px;
  }
  
  .calc-tab {
    width: 100%;
    justify-content: center;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .calculator-inputs,
  .calculator-results {
    padding: 30px;
  }
  
  .results-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .comparison-arrow {
    transform: rotate(90deg);
  }
  
  .comparison-card {
    padding: 16px;
  }
  
  .comparison-value {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  /* ROAS Calculator Section - Mobile Optimizations */
  .roas-calculator-section {
    padding: 50px 0;
  }
  
  .roas-calculator-header {
    padding: 0 16px;
    margin-bottom: 35px;
  }
  
  .roas-calculator-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .roas-calculator-description {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .calculator-tabs {
    padding: 0 16px;
    margin-bottom: 24px;
  }
  
  .calc-tab {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .calc-tab svg {
    width: 20px;
    height: 20px;
  }
  
  .calculator-content {
    padding: 0 16px;
  }
  
  .calculator-inputs,
  .calculator-results {
    padding: 24px;
    border-radius: 16px;
  }
  
  .calc-section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .calc-label-text {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .calc-input {
    padding: 14px 16px;
    font-size: 16px;
  }
  
  .calc-button {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .results-roas {
    font-size: 48px;
    line-height: 1.2;
  }
  
  .results-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .result-metric {
    padding: 16px;
  }
}

/* Process Flow Section */
.process-flow-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.process-flow-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  pointer-events: none;
}

.process-flow-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.process-flow-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #0a0b0d;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.process-flow-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: #475467;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-flow-container {
  position: relative;
  z-index: 2;
}

.process-flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  min-width: 220px;
  flex: 1;
  max-width: 240px;
  min-height: 220px;
  height: 220px;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-step--highlighted {
  background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.process-step--highlighted:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.process-step--highlighted .step-icon {
  background: rgba(255, 255, 255, 0.2);
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: #7c3aed;
  transition: all 0.3s ease;
}

.process-step--highlighted .step-icon svg {
  color: #ffffff;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0a0b0d;
  margin: 0 0 8px;
}

.process-step--highlighted .step-title {
  color: #ffffff;
}

.step-description {
  font-size: 14px;
  line-height: 1.5;
  color: #475467;
  margin: 0;
}

.process-step--highlighted .step-description {
  color: rgba(255, 255, 255, 0.9);
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.process-arrow svg {
  width: 20px;
  height: 20px;
}

.process-arrow:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* Mobile Responsive Design */
@media (max-width: 900px) {
  .process-flow-section {
    padding: 60px 0;
  }
  
  .process-flow-header {
    margin-bottom: 40px;
  }
  
  .process-flow-steps {
    flex-direction: column;
    gap: 16px;
  }
  
  .process-step {
    min-width: 100%;
    max-width: 100%;
    padding: 28px 20px;
    min-height: 200px;
    height: 200px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .process-arrow:hover {
    transform: rotate(90deg) translateY(4px);
  }
  
  .process-step--highlighted:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 600px) {
  /* Process Flow Section - Mobile Optimizations */
  .process-flow-section {
    padding: 50px 0;
  }
  
  .process-flow-header {
    padding: 0 16px;
    margin-bottom: 40px;
  }
  
  .process-flow-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .process-flow-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .process-flow-container {
    padding: 0 16px;
  }
  
  .process-flow-steps {
    gap: 20px;
  }
  
  .process-step {
    padding: 24px 20px;
    min-height: auto;
    border-radius: 16px;
  }
  
  .step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .step-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .step-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  
  .step-description {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 12px 0;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonials-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #0a0b0d;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #475467;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed 0%, #10b981 50%, #f59e0b 100%);
  border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-content {
  margin-bottom: 24px;
}

.quote-icon {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #7c3aed;
}

.quote-icon svg {
  width: 20px;
  height: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 48px;
  color: #7c3aed;
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-placeholder {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-number {
  font-size: 24px;
  font-weight: 700;
  color: #0a0b0d;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 14px;
  color: #6b7280;
  line-height: 1;
}

/* Responsive Design for Testimonials */
@media (max-width: 900px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .trust-item {
    padding: 16px 24px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  /* Testimonials Section - Mobile Optimizations */
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-header {
    padding: 0 16px;
    margin-bottom: 40px;
  }
  
  .testimonials-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .testimonials-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .testimonials-grid {
    padding: 0 16px;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 24px;
    border-radius: 16px;
  }
  
  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    margin-bottom: 20px;
  }
  
  .author-name {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .author-title {
    font-size: 14px;
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: 14px;
  }
  
  .stat-item {
    text-align: center;
    padding: 12px;
  }
  
  .stat-number {
    font-size: 24px;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  
  .trust-item {
    padding: 16px 20px;
    border-radius: 12px;
  }
  
  .trust-number {
    font-size: 22px;
    margin-bottom: 4px;
  }
  
  .trust-label {
    font-size: 13px;
  }
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f1f5f9" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.contact-form-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #0a0b0d;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contact-form-subtitle {
  font-size: 18px;
  color: #475467;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-wrapper {
  position: relative;
  z-index: 2;
}

.contact-form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.form-intro h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0a0b0d;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
}

.benefit-text {
  flex: 1;
}

.benefit-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0a0b0d;
  margin-bottom: 4px;
}

.benefit-text span {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
}

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

.form-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0a0b0d;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  color: #0a0b0d;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.checkbox-item:hover {
  background: rgba(139, 92, 246, 0.05);
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: #7c3aed;
  border-color: #7c3aed;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-footer {
  text-align: center;
}

.form-consent {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
  max-width: 600px;
  text-align: right;
}

.consent-checkbox:hover {
  background: rgba(139, 92, 246, 0.05);
}

.consent-checkbox input[type="checkbox"] {
  display: none;
}

.consent-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-checkbox input[type="checkbox"]:checked + .consent-checkmark {
  background: #7c3aed;
  border-color: #7c3aed;
}

.consent-checkbox input[type="checkbox"]:checked + .consent-checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  flex: 1;
}

.consent-checkbox input[type="checkbox"]:required + .consent-checkmark {
  border-color: #ef4444;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  margin-bottom: 16px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.form-submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(4px);
}

.form-disclaimer {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Responsive Design for Contact Form */
@media (max-width: 900px) {
  .contact-form-section {
    padding: 60px 0;
  }
  
  .contact-form-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    padding: 30px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .benefits-list li {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  /* Contact Form Section - Mobile Optimizations */
  .contact-form-section {
    padding: 50px 0;
  }
  
  .contact-form-header {
    padding: 0 16px;
    margin-bottom: 40px;
  }
  
  .contact-form-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .contact-form-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .contact-form-content {
    padding: 0 16px;
  }
  
  .contact-form-container {
    padding: 24px;
    border-radius: 16px;
  }
  
  .form-header {
    margin-bottom: 24px;
  }
  
  .form-header h4 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .form-header p {
    font-size: 15px;
  }
  
  .form-grid {
    gap: 20px;
  }
  
  .form-label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .form-input,
  .form-textarea {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .checkbox-item {
    padding: 14px;
    border-radius: 12px;
  }
  
  .form-submit-btn {
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
  }
  
  .form-disclaimer {
    font-size: 13px;
    margin-top: 16px;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0a0b0d 0%, #1f2937 100%);
  color: #ffffff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 30px;
}

.footer-stats {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #7c3aed;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.newsletter-description {
  font-size: 16px;
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: all 0.2s ease;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-input:focus {
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.newsletter-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.newsletter-button:hover svg {
  transform: translateX(4px);
}

.newsletter-consent {
  margin: 16px 0;
}

.newsletter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}

.newsletter-checkbox input[type="checkbox"] {
  display: none;
}

.newsletter-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.newsletter-checkbox input[type="checkbox"]:checked + .newsletter-checkmark {
  background: #7c3aed;
  border-color: #7c3aed;
}

.newsletter-checkbox input[type="checkbox"]:checked + .newsletter-checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.newsletter-checkbox:hover .newsletter-checkmark {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}

.newsletter-consent-text {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.5;
}

.newsletter-disclaimer {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #7c3aed;
}

/* Responsive Design for Footer */
@media (max-width: 900px) {
  .site-footer {
    padding: 60px 0 0;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .newsletter-button {
    width: 100%;
    justify-content: center;
  }
  
  .footer-stats {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  /* Footer - Mobile Optimizations */
  .site-footer {
    padding: 50px 0 0;
  }
  
  .footer-content {
    padding: 0 16px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    text-align: right;
  }
  
  .footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  
  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column {
    text-align: right;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .footer-link {
    font-size: 14px;
    padding: 8px 0;
  }
  
  .footer-newsletter {
    padding: 32px 24px;
    border-radius: 16px;
    margin-top: 40px;
  }
  
  .newsletter-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .newsletter-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .newsletter-input {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }
  
  .newsletter-button {
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .footer-bottom {
    padding: 30px 16px;
    margin-top: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-copyright p {
    font-size: 14px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-legal-link {
    font-size: 13px;
  }
}

/* RTL Support - Right-to-Left Support for Hebrew */
[dir="rtl"] {
  text-align: right;
  direction: rtl;
}

/* Navigation RTL Adjustments */
[dir="rtl"] .site-header__toggle {
  left: 0;
  right: auto;
}

[dir="rtl"] .site-header__toggle-bar {
  right: 8px;
  left: 8px;
}

[dir="rtl"] .site-header .container {
  flex-direction: row-reverse;
}

[dir="rtl"] .site-header__nav {
  text-align: right;
}

[dir="rtl"] .nav__list {
  padding-right: 0;
}

[dir="rtl"] .nav__actions {
  flex-direction: row-reverse;
}

/* Hero Section RTL */
[dir="rtl"] .hero__content {
  text-align: right;
}

[dir="rtl"] .hero__layout {
  grid-template-columns: 3fr 2fr;
}

/* Form RTL Adjustments */
[dir="rtl"] .pill input {
  padding: 16px 20px 16px 16px;
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .pill input::placeholder {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .field {
  text-align: right;
}

[dir="rtl"] .field input,
[dir="rtl"] .field textarea {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .field input::placeholder,
[dir="rtl"] .field textarea::placeholder {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .field span {
  text-align: right;
}

[dir="rtl"] .step__actions {
  flex-direction: row;
}

/* Sticky Animation RTL */
[dir="rtl"] .sticky-animation__text {
  text-align: right;
}

[dir="rtl"] .sticky-animation__features {
  padding-right: 0;
  list-style-position: inside;
}

[dir="rtl"] .sticky-animation__features li {
  text-align: right;
  border-right: 3px solid #10b981;
  border-left: none;
  padding-right: 18px;
  padding-left: 18px;
}

[dir="rtl"] .sticky-animation__tagline {
  text-align: center;
}

/* Process Flow RTL */
[dir="rtl"] .process-arrow {
  transform: scaleX(-1);
}

[dir="rtl"] .process-arrow:hover {
  transform: scaleX(-1) translateX(-4px);
}

[dir="rtl"] .process-step {
  text-align: right;
}

[dir="rtl"] .step-title {
  text-align: right;
}

[dir="rtl"] .step-description {
  text-align: right;
}

/* FAQ RTL */
[dir="rtl"] .faq-question {
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .faq-answer-content {
  text-align: right;
}

/* Testimonials RTL */
[dir="rtl"] .testimonial-text {
  text-align: right;
}

[dir="rtl"] .testimonial-text::before {
  right: -10px;
  left: auto;
}

[dir="rtl"] .author-info {
  text-align: right;
}

/* Contact Form RTL */
[dir="rtl"] .form-label {
  text-align: right;
}

[dir="rtl"] .form-input,
[dir="rtl"] .form-select,
[dir="rtl"] .form-textarea {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .form-input::placeholder,
[dir="rtl"] .form-textarea::placeholder {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .hero-input::placeholder {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .checkbox-item {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

[dir="rtl"] .checkmark {
  margin-left: 8px;
  margin-right: 0;
}

[dir="rtl"] .consent-checkbox {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
}

[dir="rtl"] .consent-checkmark {
  margin-right: 12px;
  margin-left: 0;
}

[dir="rtl"] .consent-checkbox input[type="checkbox"]:checked + .consent-checkmark::after {
  left: auto;
  right: 6px;
}

[dir="rtl"] .form-intro h3 {
  text-align: right;
}

[dir="rtl"] .form-header {
  text-align: center;
}

[dir="rtl"] .form-header h4,
[dir="rtl"] .form-header p {
  text-align: center;
}

/* Results and Headers RTL */
[dir="rtl"] .results-header,
[dir="rtl"] .testimonials-header,
[dir="rtl"] .contact-form-header,
[dir="rtl"] .faq-header,
[dir="rtl"] .process-flow-header {
  text-align: center;
}

/* Chips RTL */
[dir="rtl"] .chips {
  justify-content: flex-start;
}

[dir="rtl"] .chip {
  text-align: center;
}

/* Footer RTL */
[dir="rtl"] .footer-description {
  text-align: right;
}

[dir="rtl"] .footer-list {
  padding-right: 0;
  list-style: none;
}

[dir="rtl"] .footer-list li {
  text-align: right;
}

[dir="rtl"] .footer-link {
  text-align: right;
}

[dir="rtl"] .footer-bottom-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-stats {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-brand {
  text-align: right;
}

[dir="rtl"] .footer-legal {
  flex-direction: row-reverse;
}

[dir="rtl"] .newsletter-content {
  text-align: right;
}

[dir="rtl"] .newsletter-checkbox {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

[dir="rtl"] .newsletter-checkmark {
  margin-left: 12px;
  margin-right: 0;
}

[dir="rtl"] .newsletter-consent-text {
  text-align: right;
}

/* Chatbot Messages RTL */
[dir="rtl"] .bot-message {
  justify-content: flex-end;
}

[dir="rtl"] .user-message {
  justify-content: flex-start;
}

[dir="rtl"] .bot-message .message-bubble {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 18px;
  text-align: right;
}

[dir="rtl"] .user-message .message-bubble {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 18px;
  text-align: right;
}

[dir="rtl"] .message-text {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .message-time {
  text-align: left;
}

[dir="rtl"] .contact-name {
  text-align: right;
}

[dir="rtl"] .contact-status {
  text-align: right;
}

[dir="rtl"] .cta-buttons {
  text-align: center;
}

[dir="rtl"] .cta-button {
  text-align: center;
}

[dir="rtl"] .input-field input {
  text-align: right;
  direction: rtl;
}

/* Dashboard Data RTL */
[dir="rtl"] .data-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .data-item--cost {
  border-right: 3px solid #3b82f6;
  border-left: none;
}

[dir="rtl"] .data-item--conversions {
  border-right: 3px solid #10b981;
  border-left: none;
}

[dir="rtl"] .data-item--cpa {
  border-right: 3px solid #f59e0b;
  border-left: none;
}

/* Trust Indicators RTL */
[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .trust-text {
  align-items: flex-end;
}

/* Benefits List RTL */
[dir="rtl"] .benefits-list li {
  flex-direction: row-reverse;
}

[dir="rtl"] .benefit-text {
  text-align: right;
}

/* Code Editor - Keep LTR for code */
[dir="rtl"] .code-content {
  direction: ltr;
  text-align: left;
}

[dir="rtl"] .code-line {
  direction: ltr;
}

/* Landing Page Content - Keep LTR for demo */
[dir="rtl"] .landing-page-content {
  direction: ltr;
  text-align: left;
}

/* Bottom Tabs RTL */
[dir="rtl"] .bottom-tabs {
  flex-direction: row-reverse;
}

[dir="rtl"] .tab-item {
  text-align: center;
}

[dir="rtl"] .tab-item span {
  text-align: center;
}

/* Browser and Editor Headers RTL */
[dir="rtl"] .browser-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .editor-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .editor-tabs {
  flex-direction: row-reverse;
}

/* Hero Form and Buttons RTL */
[dir="rtl"] .hero-form {
  flex-direction: row-reverse;
}

[dir="rtl"] .chatbot-cta {
  flex-direction: row-reverse;
}

/* Legend Items RTL */
[dir="rtl"] .legend-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .chart-legend {
  flex-direction: row-reverse;
}

/* Dashboard Title RTL */
[dir="rtl"] .dashboard-title {
  flex-direction: row-reverse;
}

/* Phone Status Bar RTL */
[dir="rtl"] .phone-status-bar {
  flex-direction: row-reverse;
}

/* Newsletter Form RTL */
[dir="rtl"] .newsletter-input-group {
  flex-direction: row-reverse;
}

/* Select and Option RTL */
[dir="rtl"] select {
  text-align: right;
  direction: rtl;
  background-position: left 12px center;
  padding-right: 16px;
  padding-left: 40px;
}

[dir="rtl"] option {
  text-align: right;
  direction: rtl;
}

/* Input Fields RTL */
[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="url"] {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] input[type="text"]::placeholder,
[dir="rtl"] input[type="email"]::placeholder,
[dir="rtl"] input[type="tel"]::placeholder,
[dir="rtl"] input[type="url"]::placeholder {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] textarea {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] textarea::placeholder {
  text-align: right;
  direction: rtl;
}

/* Pill RTL Specific */
[dir="rtl"] .pill {
  flex-direction: row;
}

[dir="rtl"] .pill--about,
[dir="rtl"] .pill--landing {
  flex-direction: row;
}

/* Form Actions RTL */
[dir="rtl"] .form-footer {
  text-align: center;
}

/* Button and Icon RTL */
[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}

[dir="rtl"] .form-submit-btn svg {
  transform: scaleX(-1);
}

[dir="rtl"] .newsletter-button svg {
  transform: scaleX(-1);
}

[dir="rtl"] .form-submit-btn:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

[dir="rtl"] .newsletter-button:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

[dir="rtl"] .send-button svg {
  transform: scaleX(-1);
}

/* Activity and Status Items RTL */
[dir="rtl"] .activity-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .status-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .testimonial-author {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-info {
  flex-direction: row-reverse;
}

/* Grid and Layout RTL */
[dir="rtl"] .grid-2 {
  direction: rtl;
}

[dir="rtl"] .form-grid {
  direction: rtl;
}

/* Feature Items RTL */
[dir="rtl"] .feature-item {
  text-align: center;
}

[dir="rtl"] .feature-item h3 {
  text-align: center;
}

[dir="rtl"] .benefit-text strong,
[dir="rtl"] .benefit-text span {
  text-align: right;
  display: block;
}

[dir="rtl"] .benefit-icon {
  text-align: center;
}

/* Stats RTL */
[dir="rtl"] .stat {
  text-align: center;
}

[dir="rtl"] .stat-item {
  text-align: center;
}

/* Logos RTL */
[dir="rtl"] .logo-item {
  text-align: center;
}

[dir="rtl"] .logo-name {
  text-align: center;
}

/* Module Labels RTL */
[dir="rtl"] .module::after,
[dir="rtl"] .dashboard-module::after {
  text-align: center;
  direction: rtl;
  font-family: 'Heebo', 'Rubik', sans-serif;
}

/* Hero Subtitle RTL */
[dir="rtl"] .hero__subtitle {
  text-align: right;
  margin: 0;
}

[dir="rtl"] .hero__title {
  text-align: right;
}

[dir="rtl"] .dashboard-section .sticky-animation__text {
  text-align: right;
}

[dir="rtl"] .dashboard-section .sticky-animation__title {
  text-align: right;
}

[dir="rtl"] .dashboard-section .sticky-animation__subtitle {
  text-align: right;
}

[dir="rtl"] .dashboard-section .sticky-animation__description {
  text-align: right;
}

@media (max-width: 900px) {
  [dir="rtl"] .hero__title {
    text-align: center;
  }
}

/* Section Titles RTL */
[dir="rtl"] .results-title,
[dir="rtl"] .results-subtitle,
[dir="rtl"] .testimonials-title,
[dir="rtl"] .testimonials-subtitle,
[dir="rtl"] .contact-form-title,
[dir="rtl"] .contact-form-subtitle,
[dir="rtl"] .faq-title,
[dir="rtl"] .faq-subtitle,
[dir="rtl"] .process-flow-title,
[dir="rtl"] .process-flow-subtitle {
  text-align: center;
}

/* Step Groups RTL */
[dir="rtl"] .step__group {
  text-align: right;
}

[dir="rtl"] .step__title {
  text-align: right;
}

/* Dashboard and Chart Labels RTL */
[dir="rtl"] .dashboard-header,
[dir="rtl"] .chart-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .metric-card {
  text-align: center;
}

[dir="rtl"] .metric-label {
  text-align: center;
  direction: rtl;
}

[dir="rtl"] .metric-value {
  text-align: center;
  direction: ltr;
  unicode-bidi: embed;
}

[dir="rtl"] .status-item span:first-of-type {
  text-align: right;
}

[dir="rtl"] .status-count {
  text-align: left;
  direction: rtl;
}

[dir="rtl"] .data-label {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .data-value {
  text-align: left;
  direction: ltr;
  unicode-bidi: embed;
}

/* Newsletter RTL */
[dir="rtl"] .newsletter-title,
[dir="rtl"] .newsletter-description {
  text-align: right;
}

[dir="rtl"] .newsletter-input {
  text-align: right;
  direction: rtl;
}

/* Footer Titles RTL */
[dir="rtl"] .footer-title {
  text-align: right;
}

[dir="rtl"] .footer-column {
  text-align: right;
}

[dir="rtl"] .footer-copyright p {
  text-align: right;
}

/* Trust Text RTL */
[dir="rtl"] .trust-label,
[dir="rtl"] .trust-number {
  text-align: center;
}

/* Author Name and Title RTL */
[dir="rtl"] .author-name,
[dir="rtl"] .author-title {
  text-align: right;
}

/* ROAS Calculator RTL */
[dir="rtl"] .roas-calculator-header {
  text-align: center;
}

[dir="rtl"] .roas-calculator-subtitle {
  text-align: center;
}

[dir="rtl"] .roas-calculator-title {
  text-align: center;
}

[dir="rtl"] .roas-calculator-description {
  text-align: center;
}

[dir="rtl"] .calc-section-title {
  text-align: right;
}

[dir="rtl"] .calc-label-text {
  text-align: right;
}

[dir="rtl"] .calc-input {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .calc-input::placeholder {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .calc-button {
  flex-direction: row-reverse;
}

[dir="rtl"] .results-label {
  text-align: center;
}

[dir="rtl"] .results-interpretation {
  text-align: center;
}

[dir="rtl"] .breakdown-title {
  text-align: right;
}

[dir="rtl"] .breakdown-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .breakdown-label {
  text-align: right;
}

[dir="rtl"] .breakdown-value {
  text-align: left;
  direction: ltr;
  unicode-bidi: embed;
}

[dir="rtl"] .results-cta-button {
  flex-direction: row-reverse;
}

[dir="rtl"] .results-cta-button svg {
  transform: scaleX(-1);
}

[dir="rtl"] .results-cta-button:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

[dir="rtl"] .metric-value {
  text-align: center;
  direction: ltr;
  unicode-bidi: embed;
}

[dir="rtl"] .metric-label {
  text-align: center;
  direction: rtl;
}

[dir="rtl"] .tips-title {
  text-align: right;
}

[dir="rtl"] .tips-list {
  padding-right: 0;
}

[dir="rtl"] .tips-list li {
  text-align: right;
  padding: 8px 32px 8px 12px;
}

[dir="rtl"] .tips-list li::before {
  right: 12px;
  left: auto;
}

[dir="rtl"] .results-cta-text {
  text-align: center;
}

[dir="rtl"] .comparison-title {
  text-align: center;
}

[dir="rtl"] .comparison-label,
[dir="rtl"] .comparison-sublabel {
  text-align: center;
}

[dir="rtl"] .comparison-value {
  text-align: center;
  direction: ltr;
  unicode-bidi: embed;
}

[dir="rtl"] .comparison-arrow svg {
  transform: scaleX(-1);
}

[dir="rtl"] .comparison-note {
  flex-direction: row-reverse;
}

[dir="rtl"] .comparison-note span {
  text-align: right;
}

/* Mobile RTL Adjustments */
@media (max-width: 900px) {
  [dir="rtl"] .comparison-arrow {
    transform: rotate(90deg);
  }
  
  [dir="rtl"] .comparison-arrow svg {
    transform: scaleX(1);
  }
}

/* SEO Section RTL */
[dir="rtl"] .seo-section .sticky-animation__text {
  text-align: right;
}

[dir="rtl"] .seo-section .sticky-animation__title {
  text-align: right;
}

[dir="rtl"] .seo-section .sticky-animation__description {
  text-align: right;
}

[dir="rtl"] .seo-section .sticky-animation__features {
  padding-right: 0;
  list-style-position: inside;
}

[dir="rtl"] .seo-section .sticky-animation__features li {
  text-align: right;
  border-right: 3px solid #34a853;
  border-left: none;
  padding-right: 18px;
  padding-left: 18px;
}

[dir="rtl"] .seo-section .sticky-animation__features li:hover {
  transform: translateX(4px);
  border-right-width: 5px;
}

[dir="rtl"] .seo-section .sticky-animation__tagline {
  text-align: center;
}

[dir="rtl"] .seo-section .search-bar {
  flex-direction: row-reverse;
}

[dir="rtl"] .seo-section .search-text {
  text-align: right;
}

[dir="rtl"] .seo-section .result-url {
  text-align: right;
}

[dir="rtl"] .seo-section .result-title {
  text-align: right;
}

[dir="rtl"] .seo-section .result-description {
  text-align: right;
}

[dir="rtl"] .seo-section .result-rank {
  right: 12px;
  left: auto;
}

[dir="rtl"] .seo-section .seo-metric .metric-value {
  text-align: center;
  direction: ltr;
  unicode-bidi: embed;
}

[dir="rtl"] .seo-section .seo-metric .metric-label {
  text-align: center;
  direction: rtl;
}

[dir="rtl"] .result-badge {
  text-align: center;
}

@media (max-width: 600px) {
  [dir="rtl"] .seo-section .result-rank {
    right: 8px;
    left: auto;
  }
  
  [dir="rtl"] .seo-section .search-result {
    padding-left: 12px;
    padding-right: 45px;
  }
}

/* PPC Section RTL */
[dir="rtl"] .ppc-section .sticky-animation__text {
  text-align: right;
}

[dir="rtl"] .ppc-section .sticky-animation__title {
  text-align: right;
}

[dir="rtl"] .ppc-section .sticky-animation__description {
  text-align: right;
}

[dir="rtl"] .ppc-section .sticky-animation__features {
  padding-right: 0;
  list-style-position: inside;
}

[dir="rtl"] .ppc-section .sticky-animation__features li {
  text-align: right;
  border-right: 3px solid #4285f4;
  border-left: none;
  padding-right: 18px;
  padding-left: 18px;
}

[dir="rtl"] .ppc-section .sticky-animation__tagline {
  text-align: center;
}

[dir="rtl"] .ads-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .dashboard-label {
  text-align: right;
}

[dir="rtl"] .ad-url {
  text-align: right;
}

[dir="rtl"] .ad-title {
  text-align: right;
}

[dir="rtl"] .ad-description {
  text-align: right;
}

[dir="rtl"] .perf-label {
  text-align: center;
  direction: rtl;
}

[dir="rtl"] .perf-value {
  text-align: center;
  direction: ltr;
  unicode-bidi: embed;
}

[dir="rtl"] .ppc-metric .metric-value {
  text-align: center;
  direction: ltr;
  unicode-bidi: embed;
}

[dir="rtl"] .ppc-metric .metric-label {
  text-align: center;
  direction: rtl;
}

/* More Mobile RTL Adjustments */
@media (max-width: 900px) {
  [dir="rtl"] .site-header__nav {
    text-align: right;
  }
  
  [dir="rtl"] .nav__list {
    text-align: right;
  }
  
  [dir="rtl"] .nav__actions {
    justify-content: flex-start;
  }
  
  [dir="rtl"] .hero__content {
    text-align: right;
  }
  
  [dir="rtl"] .sticky-animation__content {
    text-align: right;
  }
  
  [dir="rtl"] .hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  [dir="rtl"] .process-arrow {
    transform: scaleX(-1) rotate(90deg);
  }
  
  [dir="rtl"] .process-arrow:hover {
    transform: scaleX(-1) rotate(90deg) translateY(4px);
  }
  
  [dir="rtl"] .chatbot-cta {
    flex-direction: column;
  }
  
  [dir="rtl"] .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  [dir="rtl"] .footer-copyright p {
    text-align: center;
  }
  
  [dir="rtl"] .newsletter-input-group {
    flex-direction: column;
  }
  
  [dir="rtl"] .btn {
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .form-submit-btn {
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .newsletter-button {
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .hero-form {
    flex-direction: column;
  }
  
  [dir="rtl"] .sticky-animation__title {
    text-align: right;
  }
  
  [dir="rtl"] .sticky-animation__subtitle {
    text-align: right;
  }
  
  [dir="rtl"] .sticky-animation__description {
    text-align: right;
  }
}

/* ========================================
   MOBILE OPTIMIZATION FOR SMALL SCREENS (430px and below)
   ======================================== */

@media (max-width: 430px) {
  /* Landing Pages Form Section - 430px Optimizations */
  .landing-pages-section .sticky-animation__text {
    margin-right: 0;
    margin-left: 0;
  }
  
  .form-wrapper--landing {
    margin: 20px auto 0;
    padding: 18px;
    border-radius: 14px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .pill--landing {
    padding: 5px;
    gap: 6px;
  }
  
  .pill--landing input {
    padding: 10px 10px 10px 14px;
    font-size: 15px;
  }
  
  .btn--cta-landing {
    padding: 12px 18px;
    font-size: 14px;
    white-space: nowrap;
    min-width: 90px;
    border-radius: 50px;
  }
  
  .landing-pages-section .step__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .landing-pages-section .chip {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ========================================
   MOBILE OPTIMIZATION FOR SMALL SCREENS (390px and below)
   ======================================== */

@media (max-width: 390px) {
  /* Container padding optimization */
  .container {
    padding: 8px 12px;
  }

  /* Global overflow fixes */
  body {
    overflow-x: hidden;
  }

  /* Header optimizations */
  .site-header .container {
    min-height: 56px;
  }
  
  .site-header__logo-img {
    height: 24px;
  }
  
  .site-header__toggle {
    width: 36px;
    height: 36px;
  }
  
  /* Mobile nav adjustments */
  .site-header__nav {
    inset: 56px 8px auto 8px;
    padding: 12px;
  }
  
  .nav__list {
    gap: 12px;
  }

  /* Hero section */
  .hero {
    min-height: 100vh;
    padding: 20px 0;
  }
  
  .hero__layout {
    gap: 16px;
  }
  
  .hero__content {
    padding: 20px 0 10px;
  }
  
  .hero__title {
    font-size:54px;
    line-height: 1.15;
    margin-bottom: 12px;
    word-wrap: break-word;
    padding-top: 60px;
  }
  
  .hero__subtitle {
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
  }
  
  .hero__media {
    padding: 0 8px;
  }

  /* Google Ads Dashboard */
  .google-ads-dashboard {
    padding: 8px;
    border-radius: 10px;
  }
  
  .dashboard-header {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    padding: 8px;
  }
  
  .dashboard-title {
    font-size: 11px;
    gap: 4px;
  }
  
  .google-ads-icon {
    width: 16px;
    height: 16px;
  }
  
  .dashboard-date {
    font-size: 8px;
    padding: 2px 4px;
  }
  
  .metric-card {
    padding: 6px;
  }
  
  .metric-icon {
    width: 20px;
    height: 20px;
    margin: 0 auto 4px;
  }
  
  .metric-icon svg {
    width: 10px;
    height: 10px;
  }
  
  .metric-value {
    font-size: 14px;
  }
  
  .metric-label {
    font-size: 7px;
    margin-bottom: 2px;
  }
  
  .metric-change {
    font-size: 7px;
    padding: 2px 4px;
  }
  
  .chart-container {
    padding: 6px;
  }
  
  .chart-header h4 {
    font-size: 10px;
  }
  
  .chart-area {
    height: 70px;
  }
  
  .chart-legend {
    gap: 4px;
  }
  
  .legend-item {
    font-size: 7px;
  }
  
  .legend-color {
    width: 6px;
    height: 6px;
  }
  
  .campaign-status {
    gap: 4px;
  }
  
  .status-item {
    padding: 4px 6px;
    gap: 6px;
  }
  
  .status-indicator {
    width: 5px;
    height: 5px;
  }
  
  .status-item span:first-of-type {
    font-size: 8px;
  }
  
  .status-count {
    font-size: 7px;
  }

  /* Form optimizations */
  .form-wrapper {
    margin-top: 16px;
  }
  
  .form-wrapper.has-background {
    padding: 20px 16px;
    border-radius: 16px;
  }
  
  .pill {
    padding: 8px;
    gap: 8px;
  }
  
  .pill input {
    padding: 10px 10px 10px 14px;
    font-size: 15px;
  }
  
  .pill--about {
    padding: 6px;
    gap: 6px;
  }
  
  .pill--about input {
    padding: 8px 8px 8px 12px;
    font-size: 13px;
  }
  
  .btn--cta {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .btn--cta-about {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
  }
  
  .step__title {
    font-size: 14px;
  }
  
  .chip {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .field input,
  .field textarea {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .grid-2 {
    gap: 10px;
  }

  /* Logos section */
  .logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo-name {
    font-size: 11px;
  }

  /* Sticky animation sections */
  .sticky-animation {
    padding: 100px 0;
  }
  
  .sticky-animation__content {
    gap: 24px;
  }
  

  .landing-pages-section .sticky-animation__text {
    margin-right: 0;
    margin-left: 0;
  }
  
  .landing-pages-section .form-wrapper--landing {
    margin-left: 0;
    margin-right: 0;
  }
  
  .sticky-animation__title {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .sticky-animation__subtitle {
    font-size: 12px;
  }
  
  .sticky-animation__description {
    font-size: 14px;
  }
  
  .sticky-animation__features {
    gap: 8px;
  }
  
  .sticky-animation__features li {
    font-size: 13px;
    padding: 8px;
  }
  
  /* Module optimizations */
  .module {
    width: 50px;
    height: 50px;
  }
  
  .module__icon {
    width: 20px;
    height: 20px;
  }
  
  .dashboard-module {
    width: 60px;
    height: 60px;
  }
  
  .sticky-animation__diagram {
    height: 300px;
  }

  /* Dashboard section */
  .dashboard-screen {
    border-radius: 16px;
  }
  
  .dashboard-header {
    padding: 8px;
  }
  
  .dashboard-title {
    font-size: 12px;
  }
  
  .dashboard-metrics {
    padding: 8px;
    gap: 8px;
  }
  
  .metric-card {
    padding: 12px;
  }
  
  .metric-value {
    font-size: 18px;
  }
  
  .metric-label {
    font-size: 11px;
  }
  
  .dashboard-chart {
    padding: 8px;
  }
  
  .chart-bars {
    gap: 8px;
  }
  
  .chart-area {
    height: 120px;
  }

  /* Solutions section */
  .solutions-section .sticky-animation__content {
    gap: 20px;
  }
  
  /* AI Bot Capabilities Animation - Mobile */
  .solutions-section .ai-bot-capabilities {
    height: 400px;
    max-width: 400px;
  }
  
  .solutions-section .ai-orb-sticky {
    width: 140px;
    height: 140px;
  }
  
  .solutions-section .ai-orb-sticky__icon {
    width: 65%;
    height: 65%;
  }
  
  .solutions-section .capability-bubble {
    width: 150px;
    font-size: 12px;
  }
  
  .solutions-section .capability-bubble__header {
    padding: 10px 14px;
  }
  
  .solutions-section .capability-bubble__dot {
    width: 8px;
    height: 8px;
  }
  
  .solutions-section .capability-bubble__content {
    padding: 10px 14px;
  }
  
  .solutions-section .capability-bubble__message {
    padding: 8px 12px;
    font-size: 11px;
  }
  
  .solutions-section .sticky-animation__diagram {
    height: 400px;
  }

  /* About section */
  .about-section .sticky-animation__content {
    gap: 20px;
  }
  
  .form-wrapper--about {
    padding: 16px;
  }
  
  .pill--about {
    padding: 6px;
    gap: 8px;
  }
  
  .pill--about input {
    padding: 8px 8px 8px 12px;
    font-size: 14px;
  }
  
  .btn--cta-about {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Script section */
  .code-editor {
    border-radius: 8px;
    min-height: 650px;
    height: 650px;
  }
  
  .code-content {
    font-size: 11px;
    min-height: 580px;
    max-height: 580px;
    overflow-y: auto;
  }
  
  .line-number {
    font-size: 11px;
    width: 24px;
  }
  
  /* Increase diagram height in script-section for small mobile */
  .script-section .sticky-animation__diagram {
    height: 680px;
    min-height: 680px;
  }
  
  .editor-header {
    padding: 6px 8px;
  }

  /* Chatbot section */
  .chatbot-section {
    padding: 140px 0;
    z-index: 60;
  }
  
  .chatbot-section .sticky-animation__container {
    min-height: auto;
  }
  
  .chatbot-section .sticky-animation__content {
    min-height: auto;
    gap: 25px;
  }
  
  .chatbot-section .sticky-animation__text {
    padding: 10px 0 15px 0;
  }
  
  .chatbot-section .sticky-animation__title {
    font-size: 24px;
  }
  
  .chatbot-section .sticky-animation__description {
    font-size: 13px;
  }
  
  .chatbot-cta {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .btn--secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .phone-frame {
    width: 220px;
    height: 420px;
    max-width: 100%;
  }
  
  .chat-messages {
    max-height: 250px;
    height: 250px;
    padding: 8px;
  }
  
  .message-bubble {
    max-width: 85%;
    padding: 6px 10px;
  }
  
  .message-text {
    font-size: 11px;
  }
  
  .cta-buttons {
    gap: 3px;
  }
  
  .cta-button {
    padding: 5px 8px;
    font-size: 9px;
  }

  /* FAQ section */
  .faq-section {
    padding: 40px 0;
    z-index: 59;
  }
  
  .faq-header {
    margin-bottom: 20px;
  }
  
  .faq-title {
    font-size: 22px;
  }
  
  .faq-subtitle {
    font-size: 13px;
  }
  
  .faq-question {
    padding: 12px 14px;
  }
  
  .faq-question-text {
    font-size: 13px;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
  }
  
  .faq-answer-content {
    padding: 0 14px 12px;
  }
  
  .faq-answer-content p {
    font-size: 12px;
  }

  /* Results section */
  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* PPC section */
  .ppc-section {
    padding: 30px 0;
  }
  
  .ppc-section .sticky-animation__container {
    padding: 30px 0 50px;
  }
  
  .ppc-section .sticky-animation__content {
    gap: 40px;
  }
  
  .ppc-section .sticky-animation__text {
    padding-bottom: 50px;
  }
  
  .ppc-section .sticky-animation__description {
    margin-bottom: 40px;
  }
  
  .ppc-section .sticky-animation__features {
    margin-bottom: 30px;
  }
  
  .ads-header {
    padding: 8px;
  }
  
  .ad-preview {
    padding: 12px;
  }
  
  .ad-title {
    font-size: 13px;
  }
  
  .ad-description {
    font-size: 11px;
  }
  
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .perf-card {
    padding: 10px;
  }
  
  .perf-value {
    font-size: 22px;
  }

  /* SEO section */
  .seo-section {
    padding: 30px 0;
  }
  
  .seo-section .search-bar {
    padding: 10px 12px;
  }
  
  .seo-section .search-text {
    font-size: 13px;
  }
  
  .seo-section .search-result {
    padding: 10px;
  }
  
  .seo-section .result-title {
    font-size: 13px;
  }
  
  .seo-section .result-description {
    font-size: 11px;
  }

  /* Landing pages section */
  .landing-pages-section {
    padding: 30px 0;
  }
  
  .form-wrapper--landing {
    padding: 16px;
    margin: 16px auto 0;
    border-radius: 12px;
    max-width: 100%;
  }
  
  .pill--landing {
    padding: 4px;
    gap: 4px;
    border-radius: 999px;
  }
  
  .pill--landing input {
    padding: 8px 8px 8px 12px;
    font-size: 14px;
    min-width: 0;
  }
  
  .btn--cta-landing {
    padding: 12px 18px;
    font-size: 13px;
    white-space: nowrap;
    min-width: 90px;
    flex-shrink: 0;
    border-radius: 50px;
  }
  
  .landing-pages-section .step__title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .landing-pages-section .chip {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .computer-screen {
    max-width: 100%;
  }
  
  .landing-page-content {
    padding: 10px;
  }
  
  .hero-title {
    font-size: 22px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .features-section {
    padding: 20px 0;
  }
  
  .feature-item {
    padding: 16px;
  }
  
  .feature-item h3 {
    font-size: 16px;
  }

  /* ROAS Calculator */
  .roas-calculator-section {
    padding: 30px 0;
  }
  
  .roas-calculator-title {
    font-size: 26px;
  }
  
  .calculator-tabs {
    gap: 4px;
  }
  
  .calc-tab {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .calc-tab svg {
    width: 14px;
    height: 14px;
  }
  
  .calc-section-title {
    font-size: 18px;
  }
  
  .calc-label-text {
    font-size: 13px;
  }
  
  .calc-input {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .calc-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .results-roas {
    font-size: 44px;
  }
  
  .results-interpretation {
    font-size: 14px;
  }

  /* Process flow */
  .process-flow-section {
    padding: 30px 0;
  }
  
  .process-flow-title {
    font-size: 26px;
  }
  
  .process-step {
    padding: 16px;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
  }
  
  .step-title {
    font-size: 15px;
  }
  
  .step-description {
    font-size: 13px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 30px 0;
  }
  
  .testimonial-card {
    padding: 18px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
  
  .trust-item {
    padding: 10px 16px;
  }

  /* Contact form */
  .contact-form-section {
    padding: 30px 0;
  }
  
  .contact-form-container {
    padding: 18px;
  }
  
  .contact-form-title {
    font-size: 26px;
  }
  
  .form-header h4 {
    font-size: 18px;
  }
  
  .form-submit-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0 0;
  }
  
  .footer-content {
    gap: 20px;
  }
  
  .footer-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .stat-number {
    font-size: 22px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .footer-newsletter {
    padding: 20px;
  }
  
  .newsletter-title {
    font-size: 18px;
  }
  
  .newsletter-input {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .newsletter-button {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* RTL specific adjustments for mobile */
  [dir="rtl"] .hero__title {
    text-align: center;
  }
  
  [dir="rtl"] .hero__subtitle {
    text-align: center;
  }
}

/* Even smaller screens (320px) */
@media (max-width: 320px) {
  .container {
    padding: 6px 8px;
  }
  
  .hero__title {
    font-size: 24px;
  }
  
  .hero__subtitle {
    font-size: 14px;
  }
  
  .google-ads-dashboard {
    padding: 6px;
  }
  
  .metric-card {
    padding: 4px;
  }
  
  .metric-value {
    font-size: 12px;
  }
  
  .sticky-animation__title {
    font-size: 20px;
  }
}

/* ============================================
   Chatbot Widget Styles - CTR Media Design
   ============================================ */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  font-family: 'Heebo', 'Rubik', sans-serif;
}

.chatbot-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chatbot-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 6px 20px rgba(124,58,237,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 30px rgba(124,58,237,0.5);
}

.chatbot-toggle:active {
  transform: scale(0.95);
}

.chatbot-icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.chatbot-label {
  font-size: 11px;
  color: #475467;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.chatbot-container {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 400px;
  max-width: calc(100vw - 48px);
  height: 650px;
  max-height: calc(100vh - 140px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.1);
  /* Prevent text selection during drag on mobile */
  -webkit-user-select: none;
  user-select: none;
  /* Smooth transitions */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-container.active {
  display: flex;
  animation: chatbotSlideUp 0.3s ease;
}

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

.chatbot-header {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.chatbot-avatar svg {
  width: 28px;
  height: 28px;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
}

.chatbot-status {
  margin: 4px 0 0 0;
  font-size: 12px;
  opacity: 0.9;
  font-weight: 400;
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f9fafb;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #7c3aed;
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: #6d28d9;
}

/* Chatbot messages - specific to chatbot widget */
.chatbot-messages .message {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  animation: messageSlide 0.3s ease;
  opacity: 1 !important; /* Force visibility for chatbot messages */
}

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

.chatbot-messages .user-message {
  align-self: flex-end;
}

.chatbot-messages .bot-message {
  align-self: flex-start;
}

/* Chatbot message content - specific to chatbot widget */
.chatbot-messages .message-content {
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.6;
  word-wrap: break-word;
  font-size: 14px;
  font-family: 'Heebo', sans-serif;
}

.chatbot-messages .user-message .message-content {
  background: #7c3aed;
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.chatbot-messages .bot-message .message-content {
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chatbot-messages .message-time {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
  padding: 0 4px;
  font-weight: 400;
}

.chatbot-messages .user-message .message-time {
  text-align: left;
}

.chatbot-messages .bot-message .message-time {
  text-align: right;
}

.chatbot-messages .typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  align-self: flex-start;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  opacity: 1 !important; /* Force visibility for typing indicator */
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ca3af;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.chatbot-input-container {
  padding: 16px;
  background: white;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 8px;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  font-size: 14px;
  font-family: 'Heebo', sans-serif;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #f9fafb;
  color: #1f2937;
}

.chatbot-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: white;
}

.chatbot-input::placeholder {
  color: #9ca3af;
}

.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7c3aed;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 12px rgba(124,58,237,0.25);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.chatbot-send:hover {
  background: #6d28d9;
  transform: scale(1.05);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 6px 16px rgba(124,58,237,0.35);
}

.chatbot-send:active {
  transform: scale(0.95);
}

.chatbot-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
}

/* Mobile Responsive - Fullscreen Experience */
@media (max-width: 768px) {
  .chatbot-widget {
    bottom: 16px;
    left: 16px;
    right: auto;
  }
  
  /* Fullscreen container on mobile */
  .chatbot-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    width: 100dvw; /* Dynamic viewport width for modern browsers */
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for modern browsers */
    max-width: 100vw;
    max-width: 100dvw;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    margin: 0;
    z-index: 10000;
    box-shadow: none;
    border: none;
  }
  
  /* Backdrop overlay for mobile */
  .chatbot-container.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Hide toggle button when chatbot is open on mobile */
  .chatbot-container.active ~ .chatbot-toggle-wrapper {
    display: none;
  }
  
  .chatbot-toggle {
    width: 56px;
    height: 56px;
  }
  
  .chatbot-icon {
    width: 24px;
    height: 24px;
  }
  
  .chatbot-label {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  /* Enhanced header for mobile */
  .chatbot-header {
    padding: 16px 20px;
    padding-top: max(16px, env(safe-area-inset-top));
    border-radius: 0;
    position: relative;
    min-height: 64px;
  }
  
  .chatbot-header h3 {
    font-size: 18px;
  }
  
  /* Enhanced close button for mobile */
  .chatbot-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    font-size: 28px;
    font-weight: 300;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .chatbot-close:active {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0.9);
  }
  
  /* Messages area with safe area support */
  .chatbot-messages {
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    height: calc(100vh - 64px - 80px);
    height: calc(100dvh - 64px - 80px); /* Dynamic viewport height */
    max-height: calc(100vh - 64px - 80px);
    max-height: calc(100dvh - 64px - 80px);
  }
  
  .message {
    max-width: 85%;
  }
  
  /* Input container with safe area support */
  .chatbot-input-container {
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid #e5e7eb;
    background: white;
    position: relative;
  }
  
  .chatbot-input {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 18px;
  }
  
  .chatbot-send {
    width: 48px;
    height: 48px;
  }
  
  .chatbot-send svg {
    width: 22px;
    height: 22px;
  }
  
  /* Smooth slide up animation for mobile */
  .chatbot-container.active {
    animation: chatbotFullscreenSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .chatbot-container:not(.active) {
    animation: chatbotFullscreenSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  @keyframes chatbotFullscreenSlide {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes chatbotFullscreenSlideOut {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(100%);
    }
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .chatbot-header {
    padding: 12px 20px;
    padding-top: max(12px, env(safe-area-inset-top));
    min-height: 56px;
  }
  
  .chatbot-header h3 {
    font-size: 16px;
  }
  
  .chatbot-avatar {
    width: 40px;
    height: 40px;
  }
  
  .chatbot-avatar svg {
    width: 24px;
    height: 24px;
  }
  
  .chatbot-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .chatbot-messages {
    height: calc(100vh - 56px - 72px);
    height: calc(100dvh - 56px - 72px); /* Dynamic viewport height */
    max-height: calc(100vh - 56px - 72px);
    max-height: calc(100dvh - 56px - 72px);
    padding: 12px 20px;
  }
  
  .chatbot-input-container {
    padding: 12px 20px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  
  .chatbot-input {
    padding: 12px 16px;
  }
  
  .chatbot-send {
    width: 44px;
    height: 44px;
  }
}

/* RTL Support for Mobile Chatbot */
@media (max-width: 768px) {
  [dir="rtl"] .chatbot-widget {
    left: auto;
    right: 16px;
  }
  
  [dir="rtl"] .chatbot-container {
    left: auto;
    right: 0;
  }
  
  [dir="rtl"] .chatbot-header {
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .chatbot-header-info {
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .chatbot-messages .user-message {
    align-self: flex-start;
  }
  
  [dir="rtl"] .chatbot-messages .bot-message {
    align-self: flex-end;
  }
  
  [dir="rtl"] .chatbot-messages .user-message .message-time {
    text-align: right;
  }
  
  [dir="rtl"] .chatbot-messages .bot-message .message-time {
    text-align: left;
  }
  
  [dir="rtl"] .chatbot-input-container {
    flex-direction: row-reverse;
  }
  
  [dir="rtl"] .chatbot-input {
    text-align: right;
    direction: rtl;
  }
  
  [dir="rtl"] .chatbot-messages {
    direction: rtl;
  }
  
  [dir="rtl"] .chatbot-messages .message-content {
    direction: rtl;
    text-align: right;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .chatbot-widget {
    bottom: 12px;
    left: 12px;
  }
  
  [dir="rtl"] .chatbot-widget {
    left: auto;
    right: 12px;
  }
  
  .chatbot-toggle {
    width: 52px;
    height: 52px;
  }
  
  .chatbot-icon {
    width: 22px;
    height: 22px;
  }
  
  .chatbot-label {
    font-size: 9px;
    padding: 2px 5px;
  }
  
  .chatbot-header {
    padding: 14px 16px;
    padding-top: max(14px, env(safe-area-inset-top));
    min-height: 60px;
  }
  
  .chatbot-header h3 {
    font-size: 16px;
  }
  
  .chatbot-avatar {
    width: 40px;
    height: 40px;
  }
  
  .chatbot-avatar svg {
    width: 24px;
    height: 24px;
  }
  
  .chatbot-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .chatbot-messages {
    padding: 14px 16px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
  
  .chatbot-messages .message-content {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .chatbot-input-container {
    padding: 14px 16px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
  
  .chatbot-input {
    padding: 12px 16px;
    font-size: 16px;
  }
  
  .chatbot-send {
    width: 44px;
    height: 44px;
  }
  
  .message {
    max-width: 90%;
  }
}

