/* =============================================
   BLUEZENITO — Premium Agency Website
   ============================================= */

:root {
  --bg: #04060f;
  --bg-2: #080d1a;
  --bg-card: #0d1425;
  --bg-card-hover: #111b30;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-bright: #60a5fa;
  --blue-glow: rgba(37, 99, 235, 0.2);
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.07);
  --white-5: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-blue: rgba(37, 99, 235, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', sans-serif;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --shadow-blue: 0 0 60px rgba(37, 99, 235, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILS ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid var(--border-blue);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--white-70);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #818cf8 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover::before { opacity: 1; }

.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white-70);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--blue-light);
  color: var(--white);
  background: var(--white-10);
}

.btn-nav {
  display: inline-flex;
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* =============================================
   NAV
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(4, 6, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo .dot { color: var(--blue-bright); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  color: var(--white-70);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(4, 6, 15, 0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}

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

.mobile-menu a {
  color: var(--white-70);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn-nav { margin-top: 16px; text-align: center; border-bottom: none; }

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 60px;
}

.hero-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border-blue);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

#hero h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: 18px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  color: var(--white-40);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  flex: 0 0 400px;
  position: relative;
  height: 480px;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  animation: orbPulse 4s ease-in-out infinite;
}

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

.card-float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  backdrop-filter: blur(10px);
  animation: floatCard 6s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card-1 { top: 30px; left: -20px; animation-delay: 0s; }
.card-2 { top: 50%; right: -20px; transform: translateY(-50%); animation-delay: -2s; }
.card-3 { bottom: 40px; left: 10px; animation-delay: -4s; }

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

.card-2 {
  animation-name: floatCard2;
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 12px)); }
}

.card-icon { font-size: 24px; }

.card-title {
  font-size: 11px;
  color: var(--white-40);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

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

/* =============================================
   TRUSTED
   ============================================= */
#trusted {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white-5);
}

.trusted-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trusted-logos span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white-40);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.trusted-logos span:hover { color: var(--white-70); }

/* =============================================
   SERVICES
   ============================================= */
#services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--border-blue);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

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

.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, var(--bg-card) 60%);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-icon { font-size: 32px; margin-bottom: 16px; }

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.service-list li {
  font-size: 14px;
  color: var(--white-70);
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 600;
}

/* =============================================
   WHY US
   ============================================= */
#why {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-left .section-sub { max-width: 380px; }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }

.why-item:hover { padding-left: 8px; }

.why-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-bright);
  letter-spacing: 1px;
  flex-shrink: 0;
  padding-top: 4px;
}

.why-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.why-item p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
#how { padding: 120px 0; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.step-icon { font-size: 28px; margin-bottom: 16px; }

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
}

.step-arrow {
  flex-shrink: 0;
  align-self: center;
  font-size: 20px;
  color: var(--blue-bright);
  padding: 0 16px;
  margin-top: -20px;
}

.steps-cta { text-align: center; }

/* =============================================
   RESULTS
   ============================================= */
#results {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.result-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.result-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border-blue);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.result-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.result-card p {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 28px;
}

.result-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.r-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
  padding-right: 16px;
  margin-right: 16px;
}

.r-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.r-stat span {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.r-stat small {
  font-size: 11px;
  color: var(--white-40);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { padding: 120px 0; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}

.stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: 14px; }
.testi-author small { font-size: 12px; color: var(--white-40); }

/* =============================================
   FAQ
   ============================================= */
#faq {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#faq .container { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--blue-bright); }

.faq-icon {
  font-size: 22px;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  padding-bottom: 24px;
}

/* =============================================
   CONTACT
   ============================================= */
#contact { padding: 120px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-sub { max-width: 360px; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 12px; }

.contact-detail {
  font-size: 15px;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-detail a {
  color: var(--white-70);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--blue-bright); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group select option { background: var(--bg-card); }

.form-note {
  font-size: 12px;
  color: var(--white-40);
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand .logo { font-size: 24px; display: inline-block; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 20px; }

.social-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover { color: var(--blue-bright); }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--white-40);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  #hero { flex-direction: column; padding-top: 120px; gap: 60px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  #hero { padding: 100px 20px 60px; }
  #hero h1 { font-size: 40px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 22px; }

  #services, #why, #how, #results, #testimonials, #faq, #contact { padding: 80px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .service-list { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }

  .results-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .section-title { font-size: 30px; }
}
