/* ============================================================
   CodeScriptum – Google/Meta Ads Landing Page
   Color Palette: Google & Meta brand colors
   ============================================================ */

/* ============================================================
   VARIABLES (CSS Custom Properties)
   ============================================================ */
:root {
  /* Google colors */
  --g-blue: #4285F4;
  --g-red: #EA4335;
  --g-yellow: #FBBC05;
  --g-green: #34A853;
  /* Meta / Facebook / Instagram */
  --m-blue: #0668E1;
  --fb-blue: #1877F2;
  --ig-pink: #E4405F;
  --ig-orange: #F77737;
  --ig-purple: #833AB4;
  /* Orange accent – stronger presence */
  --orange: #FF6D00;
  --orange-light: #FF9100;
  --orange-warm: #F4511E;
  /* Primary accent – Google blue → Facebook blue → Orange */
  --primary: #4285F4;
  --primary-light: #6EA8FE;
  --secondary: #FF6D00;
  --accent: #FF9100;
  /* Darks */
  --dark-900: #030712;
  --dark-800: #0F172A;
  --dark-700: #1E293B;
  --dark-600: #334155;
  /* Lights */
  --light-100: #F8FAFC;
  --light-200: #F1F5F9;
  --light-300: #E2E8F0;
  /* Text */
  --white: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  /* Gradients – Google/Facebook/Orange flow */
  --grad-hero: linear-gradient(135deg, var(--dark-900) 0%, #0A0E1F 40%, #121020 100%);
  --grad-primary: linear-gradient(135deg, var(--g-blue) 0%, var(--fb-blue) 40%, var(--orange) 100%);
  --grad-google: linear-gradient(135deg, var(--g-blue) 0%, var(--g-green) 100%);
  --grad-meta: linear-gradient(135deg, var(--fb-blue) 0%, var(--ig-pink) 100%);
  --grad-multi: linear-gradient(135deg, var(--g-blue) 0%, var(--orange) 50%, var(--ig-pink) 100%);
  --grad-glow: linear-gradient(135deg, var(--fb-blue) 0%, var(--orange) 100%);
  --grad-orange: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--g-yellow) 100%);
  --grad-card: linear-gradient(135deg, rgba(66,133,244,0.08) 0%, rgba(255,109,0,0.05) 100%);
  --grad-dark-sec: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
  /* Layout */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--ease); }
img { max-width: 100%; display: block; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.accent { color: var(--primary); }

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

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

.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--g-green);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,168,83,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(52,168,83,0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  border: none; border-radius: 50px;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all var(--ease);
  position: relative; text-decoration: none;
}

.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
}

.btn--glow {
  box-shadow: 0 0 20px rgba(255,109,0,0.35), 0 0 60px rgba(66,133,244,0.15);
}
.btn--glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255,109,0,0.5), 0 0 80px rgba(66,133,244,0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  border-color: var(--primary-light);
  background: rgba(66,133,244,0.1);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 2rem;
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(66,133,244,0.3);
}

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

/* ============================================================
   SECTIONS – shared
   ============================================================ */
.section {
  padding: 6rem 0;
  position: relative;
}
.section--light { background: var(--light-100); }
.section--dark {
  background: var(--grad-dark-sec);
  color: var(--white);
}
.section--dark .section__subtitle { color: var(--text-light); }

.section--gradient {
  background: var(--grad-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--results {
  background: var(--dark-900);
  color: var(--white);
  overflow: hidden;
}
.section--results .section__title { color: var(--white); }
.section--results .section__subtitle { color: var(--text-light); }

.section--contact {
  background: var(--grad-hero);
  color: var(--white);
}

.section__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section__title--light { color: var(--white); }

.section__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}
.section__subtitle--light { color: rgba(255,255,255,0.6); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(3,7,18,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--ease);
}
.header.scrolled {
  background: rgba(3,7,18,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); display: flex; align-items: center; gap: 0.4rem;
}
.nav__logo-icon { color: var(--primary-light); }
.nav__logo img { height: 30px; }

.nav__menu {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}

.nav__link {
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transition: all var(--ease);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav__link--cta {
  background: var(--grad-primary);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.nav__link--cta:hover {
  box-shadow: 0 0 20px rgba(255,109,0,0.4);
}

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav__toggle-bar {
  width: 24px; height: 2.5px;
  background: var(--white); border-radius: 4px;
  transition: all var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 20% 50%, rgba(66,133,244,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 30%, rgba(255,109,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 60% 80%, rgba(24,119,242,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 350px 350px at 40% 20%, rgba(255,145,0,0.06) 0%, transparent 70%);
  animation: meshMove 12s ease-in-out infinite alternate;
}

.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -100px; right: -100px;
  animation-duration: 10s;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: var(--fb-blue);
  bottom: -80px; left: -80px;
  animation-duration: 8s; animation-delay: -3s;
}
.hero__orb--3 {
  width: 250px; height: 250px;
  background: var(--orange-light);
  top: 50%; left: 40%;
  opacity: 0.2;
  animation-duration: 12s; animation-delay: -5s;
}

@keyframes meshMove {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(3deg); }
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 7rem 0 4rem;
}

.hero__text { max-width: 600px; }

.hero__badge-top {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__title-small {
  font-size: 0.55em;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 0.5rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Hero Stats */
.hero__stats {
  display: flex; gap: 2rem;
  margin-bottom: 2rem;
}
.hero__stat {
  text-align: center;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Platform logos */
.hero__platforms {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap;
}
.hero__platforms > span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.hero__platform-logos {
  display: flex; gap: 0.6rem; align-items: center;
}
.hero__platform-logos img {
  width: 26px; height: 26px;
  opacity: 0.6;
  transition: opacity var(--ease), transform var(--ease);
}
.hero__platform-logos img:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Hero visual / canvas */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__canvas {
  width: 100%; height: 580px;
  max-width: 620px;
}

/* ============================================================
   WHY ADS – Google vs Meta cards
   ============================================================ */
.why-ads__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66,133,244,0.25);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card--google::before { background: var(--grad-google); }
.why-card--google:hover { border-color: rgba(66,133,244,0.3); }

.why-card--meta::before { background: var(--grad-meta); }
.why-card--meta:hover { border-color: rgba(228,64,95,0.3); }

.why-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.why-card--google .why-card__icon {
  background: rgba(66,133,244,0.15);
  color: var(--g-blue);
}
.why-card--meta .why-card__icon {
  background: rgba(24,119,242,0.15);
  color: var(--fb-blue);
}

.why-card h3 {
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 0.75rem; color: var(--white);
}
.why-card > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.why-card__perks {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.why-card__perks li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.why-card--google .why-card__perks li i { color: var(--orange); }
.why-card--meta .why-card__perks li i { color: var(--ig-pink); }

/* ============================================================
   RESULTS – Big Numbers
   ============================================================ */
.results__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.results__content {
  position: relative;
  z-index: 1;
}

/* Results chart canvas */
.results__chart-wrapper {
  margin: 0 auto 3rem;
  max-width: 900px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.results__chart-canvas {
  width: 100%;
  height: 280px;
  display: block;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.result-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: var(--grad-glow);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  filter: blur(40px);
}
.result-card:hover {
  border-color: rgba(66,133,244,0.3);
  transform: translateY(-6px);
}
.result-card:hover::before { opacity: 0.08; }

.result-card__icon {
  position: relative; z-index: 1;
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(255,109,0,0.15);
  color: var(--orange);
  font-size: 1.3rem;
}

.result-card__number {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.result-card__label {
  position: relative; z-index: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.result-card__desc {
  position: relative; z-index: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   CAMPAIGN TYPES – Cards
   ============================================================ */
.campaigns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.campaign-card {
  background: var(--white);
  border: 1px solid var(--light-300);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.campaign-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: center;
}
.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(66,133,244,0.1);
  border-color: rgba(66,133,244,0.2);
}
.campaign-card:hover::before { transform: scaleX(1); }

.campaign-card--google::before { background: var(--grad-google); }
.campaign-card--meta::before { background: var(--grad-meta); }
.campaign-card--mixed::before { background: var(--grad-multi); }

/* Badge */
.campaign-card__badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  background: rgba(66,133,244,0.1);
  color: var(--g-blue);
}
.badge--meta {
  background: rgba(228,64,95,0.1);
  color: var(--ig-pink);
}
.badge--mixed {
  background: rgba(251,188,5,0.12);
  color: #D4940A;
}

.campaign-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.campaign-card--google .campaign-card__icon {
  background: var(--grad-card);
  border: 1px solid rgba(66,133,244,0.1);
  color: var(--g-blue);
}
.campaign-card--meta .campaign-card__icon {
  background: linear-gradient(135deg, rgba(24,119,242,0.08) 0%, rgba(228,64,95,0.05) 100%);
  border: 1px solid rgba(228,64,95,0.1);
  color: var(--ig-pink);
}
.campaign-card--mixed .campaign-card__icon {
  background: linear-gradient(135deg, rgba(66,133,244,0.08) 0%, rgba(251,188,5,0.08) 100%);
  border: 1px solid rgba(251,188,5,0.15);
  color: var(--accent);
}

.campaign-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.6rem;
}

.campaign-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.campaign-card ul {
  list-style: none;
  padding: 0;
}
.campaign-card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.campaign-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.campaign-card--google ul li::before { background: var(--g-blue); }
.campaign-card--meta ul li::before { background: var(--ig-pink); }
.campaign-card--mixed ul li::before { background: var(--accent); }

/* ============================================================
   PROCESS – Timeline
   ============================================================ */
.process__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.process__content {
  position: relative;
  z-index: 1;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process__line { display: none; }

.process-step {
  text-align: center;
  position: relative;
}
.process-step__marker {
  width: 52px; height: 52px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 25px rgba(66,133,244,0.4);
  transition: all var(--ease);
}
.process-step__marker span {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--white);
}
.process-step:hover .process-step__marker {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(66,133,244,0.6);
}

.process-step__body {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  transition: all var(--ease);
}
.process-step:hover .process-step__body {
  border-color: rgba(66,133,244,0.25);
  background: rgba(66,133,244,0.06);
}

.process-step__icon {
  font-size: 1.6rem;
  color: var(--orange-light);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--white);
}
.process-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.process-step__cta {
  text-align: center;
  margin: 40px 0 0 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--light-300);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--ease);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(66,133,244,0.1);
}

.pricing-card--popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 20px 40px rgba(255,109,0,0.15);
  transform: scale(1.03);
}
.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-5px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: var(--white);
  padding: 0.3rem 1.25rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-300);
}
.pricing-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-card__price strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
}
.pricing-card--popular .pricing-card__price strong {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card__header p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-card__features li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--light-200);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li i { color: var(--g-green); font-size: 0.85rem; flex-shrink: 0; }

/* ============================================================
   TOOLS – Marquee
   ============================================================ */
.tools__marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.tools__track {
  display: flex; gap: 1rem;
  width: max-content;
  animation: marquee 45s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tool-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-width: 110px;
  transition: all var(--ease);
}
.tool-item:hover {
  border-color: rgba(66,133,244,0.3);
  box-shadow: 0 0 20px rgba(66,133,244,0.1);
  transform: translateY(-2px);
}
.tool-item img {
  width: 36px; height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.tool-item span {
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-300);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--ease);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 4rem;
  color: rgba(66,133,244,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66,133,244,0.2);
  box-shadow: 0 10px 30px rgba(66,133,244,0.08);
}

.testimonial-card__stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex; gap: 0.15rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex; align-items: center; gap: 0.75rem;
}
.testimonial-card__author strong { display: block; font-size: 0.95rem; color: var(--text); }
.testimonial-card__author span { font-size: 0.82rem; color: var(--text-light); }

.testimonial-card__avatar {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white); font-size: 1rem;
  flex-shrink: 0;
}

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

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: all var(--ease);
}
.faq-item:hover { border-color: rgba(66,133,244,0.3); }

.faq-item__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: var(--white); text-align: left;
  transition: color var(--ease);
}
.faq-item__question:hover { color: var(--primary-light); }

.faq-item__icon {
  font-size: 0.85rem;
  color: var(--orange);
  transition: transform var(--ease);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.faq-item.active {
  border-color: rgba(66,133,244,0.3);
  box-shadow: 0 4px 20px rgba(66,133,244,0.08);
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item.active .faq-item__answer { max-height: 400px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__group {
  margin-bottom: 1.25rem;
}
.contact-form__group label {
  display: block; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.85);
}
.contact-form__group label small { font-weight: 400; color: rgba(255,255,255,0.4); }

.contact-form__group input,
.contact-form__group textarea,
.contact-form__group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--font); font-size: 0.95rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form__group input:focus,
.contact-form__group textarea:focus,
.contact-form__group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(66,133,244,0.15);
}
.contact-form__group textarea { resize: vertical; }

.contact-form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form__group select option {
  background: var(--dark-800);
  color: var(--white);
}

/* Form validation */
.contact-form__error {
  display: block;
  font-size: 0.8rem;
  color: #F87171;
  margin-top: 0.35rem;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.contact-form__error.visible {
  max-height: 2rem;
  opacity: 1;
  margin-top: 0.35rem;
}

.input--error {
  border-color: #F87171 !important;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.15) !important;
}

/* RODO */
.contact-form__rodo { margin-bottom: 1.5rem; }
.contact-form__checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer; position: relative;
}
.contact-form__checkbox input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.contact-form__checkmark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  margin-top: 2px;
  position: relative;
  transition: all var(--ease);
}
.contact-form__checkmark::after {
  content: '';
  position: absolute; top: 2px; left: 6px;
  width: 5px; height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
.contact-form__checkbox input:checked ~ .contact-form__checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.contact-form__checkbox input:checked ~ .contact-form__checkmark::after {
  transform: rotate(45deg) scale(1);
}
.contact-form__checkbox input:focus-visible ~ .contact-form__checkmark {
  box-shadow: 0 0 0 3px rgba(66,133,244,0.25);
}
.contact-form__checkbox-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.contact-form__checkbox-text strong { color: rgba(255,255,255,0.75); }
.contact-form__checkbox-text a {
  color: var(--primary-light);
  text-decoration: underline;
}
.contact-form__checkbox-text a:hover { color: var(--white); }

/* Toast */
.form-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex; align-items: center; gap: 1rem;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(66,133,244,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  min-width: 340px; max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(66,133,244,0.15);
  z-index: 9999;
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.form-toast.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.form-toast__icon {
  font-size: 1.8rem;
  color: #22C55E;
  flex-shrink: 0;
  animation: toastPop 0.5s 0.3s ease both;
}
.form-toast--error .form-toast__icon { color: #F87171; }
.form-toast__content strong {
  display: block; font-size: 1rem;
  color: var(--white); margin-bottom: 0.2rem;
}
.form-toast__content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5; margin: 0;
}
.form-toast__close {
  background: none; border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1rem; cursor: pointer;
  padding: 0.25rem; margin-left: auto;
  flex-shrink: 0;
  transition: color var(--ease);
}
.form-toast__close:hover { color: var(--white); }

@keyframes toastPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Contact info sidebar */
.contact-info { color: var(--white); }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; margin-bottom: 1rem;
}
.contact-info > p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem; line-height: 1.7;
}
.contact-info__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info__list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem;
}
.contact-info__list li i {
  font-size: 1.15rem; color: var(--orange);
  width: 20px; text-align: center;
}
.contact-info__list li a:hover { color: var(--orange); }

.contact-info__social {
  display: flex; gap: 0.75rem;
  margin-bottom: 2rem;
}
.contact-info__social a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-size: 1.1rem;
  transition: all var(--ease);
}
.contact-info__social a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}

/* Partner badges */
.contact-info__badges {
  display: flex; gap: 1rem;
}
.badge-card {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.badge-card i { font-size: 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-900);
  padding: 0;
  color: var(--text-light);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer__brand .nav__logo { outline: none; text-decoration: none; }
.footer__brand .nav__logo img { height: 32px; }
.footer__seo { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: var(--text-light);
  font-size: 0.9rem; transition: all 0.3s ease;
}
.footer__social a:hover { background: var(--electric); color: var(--white); transform: translateY(-2px); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.footer__col a { font-size: 0.82rem; color: var(--text-light); transition: color 0.3s; text-decoration: none; }
.footer__col a:hover { color: var(--white); }
.footer__col a i { margin-right: 6px; font-size: 0.75rem; }
.footer__col p { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.footer__col p i { color: var(--electric); font-size: 0.8rem; flex-shrink: 0; }
.footer__col p a { color: var(--text-light); }
.footer__col p a:hover { color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 0.78rem; color: rgba(148,163,184,0.6);
}
.footer__bottom p { margin: 0; }
.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: rgba(148,163,184,0.6); transition: color 0.3s; text-decoration: none; }
.footer__bottom-links a:hover { color: var(--white); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9998;
  transform: translateY(100%); opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0); opacity: 1;
  pointer-events: auto;
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  background: rgba(3,7,18,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(66,133,244,0.2);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex; align-items: flex-start;
  gap: 1rem; flex: 1; min-width: 280px;
}
.cookie-banner__text strong {
  display: block; color: var(--white);
  font-size: 0.95rem; margin-bottom: 0.2rem;
}
.cookie-banner__text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5; margin: 0;
}
.cookie-banner__icon {
  font-size: 1.5rem; color: var(--orange);
  flex-shrink: 0; margin-top: 2px;
}
.cookie-banner__actions {
  display: flex; gap: 0.6rem;
  flex-shrink: 0; flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner__btn {
  padding: 0.6rem 1.2rem;
  border: none; border-radius: 50px;
  font-family: var(--font);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--ease);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.cookie-banner__btn--accept {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 0 15px rgba(66,133,244,0.3);
}
.cookie-banner__btn--accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(66,133,244,0.5);
}
.cookie-banner__btn--reject {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner__btn--reject:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.cookie-banner__btn--settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-banner__btn--settings:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}

/* ============================================================
   COOKIE SETTINGS MODAL
   ============================================================ */
.cookie-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cookie-modal.visible {
  opacity: 1; pointer-events: auto;
}
.cookie-modal.visible .cookie-modal__panel {
  transform: translateY(0) scale(1);
}
.cookie-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.cookie-modal__panel {
  position: relative;
  width: 90%; max-width: 540px; max-height: 85vh;
  background: var(--dark-800);
  border: 1px solid rgba(66,133,244,0.15);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(66,133,244,0.08);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-modal__header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-modal__header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--white);
  display: flex; align-items: center; gap: 0.6rem;
}
.cookie-modal__header h3 i { color: var(--primary-light); }
.cookie-modal__close {
  background: none; border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem; cursor: pointer;
  padding: 0.25rem; transition: color var(--ease);
}
.cookie-modal__close:hover { color: var(--white); }
.cookie-modal__body {
  padding: 1.5rem; overflow-y: auto; flex: 1;
}
.cookie-modal__intro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6; margin-bottom: 1.5rem;
}
.cookie-modal__intro strong { color: rgba(255,255,255,0.75); }
.cookie-modal__intro a {
  color: var(--primary-light);
  text-decoration: underline;
}
.cookie-modal__intro a:hover { color: var(--white); }
.cookie-modal__category {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 0.75rem;
}
.cookie-modal__category p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5; margin-top: 0.6rem;
}
.cookie-modal__cat-header {
  display: flex; align-items: center;
  justify-content: space-between;
}
.cookie-modal__cat-header strong {
  display: block; font-size: 0.92rem; color: var(--white);
}
.cookie-modal__cat-header span {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.cookie-modal__footer {
  display: flex; justify-content: flex-end;
  gap: 0.6rem; padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-toggle__slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 24px; cursor: pointer;
  transition: all var(--ease);
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--ease);
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--primary);
}
.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}
.cookie-toggle--locked {
  opacity: 0.5;
}
.cookie-toggle--locked .cookie-toggle__slider {
  cursor: not-allowed;
  background: rgba(66,133,244,0.5);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { max-width: 100%; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__platforms { justify-content: center; }
  .hero__visual { display: none; }

  .why-ads__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .campaigns__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(3, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--popular { grid-column: span 2; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 72px; right: -100%;
    width: 100%; height: calc(100vh - 72px);
    background: rgba(3,7,18,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem; gap: 14px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }
  .nav__menu--open { right: 0; }

  .nav__link {
    padding: 0.75rem 1rem; font-size: 18px; width: 100%;
  }
  .nav__link--cta { margin: 0.5rem 0 0; text-align: center; }

  .nav__toggle--active .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle--active .nav__toggle-bar:nth-child(2) { opacity: 0; }
  .nav__toggle--active .nav__toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .section { padding: 4rem 0; }
  .section__title { font-size: 1.85rem; }

  .hero__stats { gap: 1rem; flex-direction: row; }
  .hero__stat-number { font-size: 1.4rem; }

  .results__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .campaigns__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__timeline { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--popular { grid-column: span 1; max-width: none; transform: none; }
  .pricing-card--popular:hover { transform: translateY(-5px); }

  .contact__grid { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
  .contact-form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; text-align: center; gap: 32px; padding: 32px 0; }
  .footer__brand { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__col { align-items: center; }
  .footer__col p { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cookie-banner__inner {
    flex-direction: column; align-items: stretch;
    padding: 1.25rem; gap: 1rem;
  }
  .cookie-banner__text { min-width: 0; }
  .cookie-banner__actions {
    flex-shrink: 1; justify-content: stretch; width: 100%;
  }
  .cookie-banner__actions .cookie-banner__btn {
    flex: 1; justify-content: center;
    text-align: center; white-space: nowrap;
  }

  .cookie-modal__panel { width: 95%; max-height: 90vh; }
  .cookie-modal__footer {
    flex-direction: column; gap: 0.5rem;
  }
  .cookie-modal__footer .cookie-banner__btn {
    width: 100%; justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 0.75rem; }
  .contact-form { padding: 1.5rem; }
  .contact-info__badges { flex-direction: column; }

  .form-toast {
    left: 1rem; right: 1rem;
    bottom: 1rem; min-width: auto;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__actions .cookie-banner__btn { width: 100%; }
  .cookie-banner__text {
    flex-direction: column; align-items: center; justify-content: center;
  }
  .cookie-banner__text strong { font-size: 0.88rem; text-align: center; }
  .cookie-banner__text p { font-size: 0.78rem; text-align: center; }
  .cookie-banner__icon { display: none; }


  .container 
  {
    width:98%;
  }

  .hero 
  {
    padding:0 10px;
  }
}
