/* ============ 변수 / 리셋 ============ */
:root {
  --green: #03c75a;          /* 네이버 그린 */
  --green-dark: #029e48;
  --green-light: #2de37e;
  --teal: #06b6a4;
  --green-soft: #e8f9ef;
  --grad: linear-gradient(135deg, #03c75a 0%, #06b6a4 100%);
  --grad-soft: linear-gradient(135deg, #e8f9ef 0%, #e4f6f7 100%);
  --ink: #1a1d1f;
  --gray: #5b6168;
  --line: #e6e8eb;
  --bg-alt: #f6f8f7;
  --bg-dark: #0f1f17;
  --radius: 18px;
  --maxw: 1120px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 60px rgba(3, 199, 90, 0.18);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ============ 키프레임 ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes rankPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }
@keyframes arrowNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(3,199,90,.45); } 70% { box-shadow: 0 0 0 12px rgba(3,199,90,0); } 100% { box-shadow: 0 0 0 0 rgba(3,199,90,0); } }

/* ============ 스크롤 진행바 ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 100; transition: width .1s linear;
}

/* ============ 버튼 ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 16px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(3,199,90,.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(3,199,90,.42); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4), transparent 70%);
  background-size: 200% 100%; animation: shimmer 3.5s ease-in-out infinite;
}
.btn-arrow { transition: transform .2s; }
.btn-primary:hover .btn-arrow { animation: arrowNudge .7s ease-in-out infinite; }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--green-dark); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.btn-block { width: 100%; }

/* ============ 헤더 ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 900; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 9px; background: var(--grad);
  position: relative; box-shadow: 0 4px 10px rgba(3,199,90,.35);
}
.logo-mark::after {
  content: ""; position: absolute; inset: 7px 7px auto auto;
  width: 9px; height: 9px; border-radius: 2px; background: #fff;
}
.logo-text { font-size: 22px; letter-spacing: -.5px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--gray); transition: color .15s; position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--green); border-radius: 2px; transition: width .2s;
}
.nav a:not(.nav-cta):hover { color: var(--ink); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--grad); color: #fff !important; padding: 10px 20px;
  border-radius: 999px; font-weight: 700 !important; box-shadow: 0 6px 16px rgba(3,199,90,.3);
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ 히어로 ============ */
.hero { position: relative; padding: 100px 0 96px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  animation: blobFloat 18s ease-in-out infinite;
}
.blob-1 { width: 460px; height: 460px; background: #b6f0cf; top: -120px; right: -80px; }
.blob-2 { width: 360px; height: 360px; background: #c6f3ee; bottom: -120px; left: -60px; animation-delay: -6s; }
.blob-3 { width: 280px; height: 280px; background: #d9f8e4; top: 40%; left: 45%; animation-delay: -11s; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(3,199,90,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(3,199,90,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero-copy > * { animation: fadeUp .7s ease both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .15s; }
.hero-copy > *:nth-child(3) { animation-delay: .25s; }
.hero-copy > *:nth-child(4) { animation-delay: .35s; }
.hero-copy > *:nth-child(5) { animation-delay: .45s; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--green-dark);
  font-weight: 700; font-size: 14px; padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
  box-shadow: var(--shadow); border: 1px solid var(--green-soft);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulseRing 2s infinite; }
.hero-title { font-size: clamp(34px, 5.5vw, 58px); font-weight: 900; line-height: 1.18; letter-spacing: -1.8px; }
.hero-title .accent {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-desc { margin: 22px 0 34px; color: var(--gray); font-size: clamp(16px, 2.5vw, 19px); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges {
  list-style: none; display: flex; gap: 12px 26px; flex-wrap: wrap;
  margin-top: 44px; color: var(--gray); font-weight: 600; font-size: 15px;
}
.hero-badges li { position: relative; padding-left: 24px; }
.hero-badges li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px;
  background: var(--green-soft); color: var(--green-dark); border-radius: 50%;
  font-size: 11px; font-weight: 900; display: grid; place-items: center;
}

/* 히어로 비주얼 (마케팅 성과 대시보드 목업) */
.hero-visual { position: relative; animation: fadeUp .8s .35s ease both; }
.mock-card {
  background: #fff; border-radius: 20px; padding: 22px; box-shadow: var(--shadow-lg);
  border: 1px solid #eef1f0; animation: floatY 6s ease-in-out infinite;
}
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock-title { font-weight: 800; font-size: 15px; }
.mock-tag { background: var(--green-soft); color: var(--green-dark); font-size: 12px; font-weight: 800; padding: 4px 11px; border-radius: 999px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.mock-kpis div { background: var(--bg-alt); border-radius: 12px; padding: 12px 8px; text-align: center; }
.mock-kpis strong { display: block; font-size: 20px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock-kpis span { font-size: 12px; color: var(--gray); }
.mock-chart { display: flex; align-items: flex-end; gap: 10px; height: 124px; }
.mock-chart span { flex: 1; background: var(--grad); border-radius: 8px 8px 0 0; transform: scaleY(0); transform-origin: bottom; animation: growBar .9s cubic-bezier(.2,.8,.2,1) forwards; }
.mock-chart span:nth-child(1) { animation-delay: .5s; }
.mock-chart span:nth-child(2) { animation-delay: .62s; }
.mock-chart span:nth-child(3) { animation-delay: .74s; }
.mock-chart span:nth-child(4) { animation-delay: .86s; }
.mock-chart span:nth-child(5) { animation-delay: .98s; }
.mock-chart span:nth-child(6) { animation-delay: 1.1s; }
@keyframes growBar { to { transform: scaleY(1); } }
.float-chip {
  position: absolute; background: #fff; padding: 10px 16px; border-radius: 14px; font-weight: 700;
  font-size: 14px; box-shadow: var(--shadow); border: 1px solid #eef1f0; animation: floatY 5s ease-in-out infinite;
}
.chip-1 { top: -18px; left: -22px; animation-delay: -1s; }
.chip-2 { bottom: -16px; right: -18px; animation-delay: -3s; }

/* ============ 키워드 마퀴 ============ */
.marquee { background: var(--bg-dark); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 40px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { color: #cdd8d1; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; }
.marquee-track span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ============ 섹션 공통 ============ */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow { color: var(--green); font-weight: 800; letter-spacing: 2px; font-size: 13px; text-align: center; }
.section-title { text-align: center; font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -1.2px; margin-top: 10px; }
.section-title .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-sub { text-align: center; color: var(--gray); margin-top: 14px; font-size: 17px; }

/* ============ 서비스 카드 ============ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 58px; height: 58px; display: grid; place-items: center; font-size: 27px;
  background: var(--grad-soft); border-radius: 16px; margin-bottom: 20px; transition: transform .3s;
}
.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); }
.card h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -.5px; }
.card p { color: var(--gray); font-size: 15px; }

/* ============ 강점 ============ */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.feature {
  background: #fff; border-radius: var(--radius); padding: 32px 34px;
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 4px; border-radius: 4px; background: var(--grad); }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -.5px; padding-left: 14px; }
.feature p { color: var(--gray); padding-left: 14px; }

/* ============ 진행 과정 ============ */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.steps li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px;
  position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.steps li:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  font-size: 22px; font-weight: 900; color: #fff; background: var(--grad); letter-spacing: -1px;
  box-shadow: 0 8px 18px rgba(3,199,90,.3);
}
.steps h3 { font-size: 18px; margin: 16px 0 8px; }
.steps p { color: var(--gray); font-size: 15px; }

/* ============ 성과 (다크) ============ */
.section-dark { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(3,199,90,.25), transparent 70%); top: -150px; right: -100px;
}
.section-dark .section-eyebrow { color: var(--green-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; position: relative; }
.stat { text-align: center; padding: 28px 12px; border-radius: var(--radius); background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); transition: transform .25s, background .25s; }
.stat:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); }
.stat strong { display: block; font-size: clamp(34px, 5vw, 50px); font-weight: 900; letter-spacing: -1px; background: linear-gradient(135deg, #2de37e, #06b6a4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: #b9c4bd; font-size: 15px; margin-top: 8px; display: block; }

/* ============ FAQ ============ */
.faq { margin-top: 44px; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--green); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 24px; font-weight: 700; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { color: var(--gray); padding: 0 0 20px; }

/* ============ 마케팅 프로그램 제작 ============ */
.program { background: var(--grad-soft); }
.program-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.program-eyebrow { text-align: left; }
.program-title { font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -1.2px; margin: 8px 0 16px; }
.program-title .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.program-lead { color: var(--gray); font-size: 17px; }
.program-lead strong { color: var(--ink); }
.program-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 12px; }
.program-list li { position: relative; padding-left: 34px; font-weight: 600; }
.program-list li::before {
  content: "</>"; position: absolute; left: 0; top: 0; color: var(--green-dark);
  font-family: ui-monospace, Consolas, monospace; font-weight: 800; font-size: 13px;
  background: #fff; padding: 1px 5px; border-radius: 6px; box-shadow: var(--shadow);
}

/* 터미널 목업 */
.terminal { background: #0f1f17; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.terminal-bar { display: flex; align-items: center; gap: 7px; padding: 14px 16px; background: #16271d; }
.terminal-bar i { width: 11px; height: 11px; border-radius: 50%; background: #2f4438; }
.terminal-bar i:nth-child(1) { background: #ff5f57; }
.terminal-bar i:nth-child(2) { background: #febc2e; }
.terminal-bar i:nth-child(3) { background: #28c840; }
.terminal-bar span { margin-left: auto; color: #6f8478; font-size: 12px; font-weight: 600; }
.terminal-body { padding: 22px; font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 14px; color: #cfe9d8; line-height: 2; }
.terminal-body p { margin: 0; }
.terminal-body .pmt { color: var(--green-light); font-weight: 700; }
.terminal-body .ok { color: var(--green-light); }
.terminal-body .mut { color: #7d8f84; }
.cursor { display: inline-block; width: 9px; height: 16px; background: var(--green-light); vertical-align: middle; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ============ CTA 배너 ============ */
.cta-banner { background: var(--grad); color: #fff; padding: 72px 0; position: relative; overflow: hidden; }
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.12);
}
.cta-banner::before { width: 320px; height: 320px; top: -140px; left: -60px; }
.cta-banner::after { width: 240px; height: 240px; bottom: -120px; right: -40px; }
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; letter-spacing: -1px; }
.cta-inner p { margin: 14px 0 28px; font-size: 18px; opacity: .95; }

/* ============ 상담 폼 ============ */
.contact-form { margin-top: 44px; display: grid; gap: 16px; background: #fff; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; font-size: 15px; }
.contact-form label span { color: var(--green); }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 15px; padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: 12px; transition: border-color .15s, box-shadow .15s; font-weight: 400; background: #fcfdfc;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(3,199,90,.12); background: #fff; }
.form-note { text-align: center; font-weight: 700; min-height: 22px; }
.form-note.ok { color: var(--green-dark); }
.form-note.err { color: #d33; }
.contact-direct { display: flex; gap: 14px 30px; justify-content: center; flex-wrap: wrap; margin-top: 28px; font-weight: 700; }
.contact-direct a { transition: color .15s; }
.contact-direct a:hover { color: var(--green-dark); }

/* ============ 푸터 ============ */
.site-footer { background: #11171c; color: #aab2b9; padding-top: 60px; font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; }
.footer-brand .logo-text { color: #fff; font-size: 24px; }
.footer-brand p { margin-top: 8px; }
.footer-info p { margin: 3px 0; }
.footer-bottom { border-top: 1px solid #232b31; padding-top: 22px; padding-bottom: 28px; text-align: center; }

/* ============ 맨 위로 버튼 ============ */
.to-top {
  position: fixed; right: 24px; bottom: 24px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad); color: #fff; border: none; font-size: 20px; cursor: pointer; z-index: 60;
  box-shadow: 0 10px 24px rgba(3,199,90,.4); opacity: 0; transform: translateY(20px) scale(.8);
  transition: opacity .25s, transform .25s; pointer-events: none;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ============ 스크롤 등장 애니메이션 ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ============ 반응형 ============ */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow, .hero-actions, .hero-badges { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 12px auto 0; }
  .program-inner { grid-template-columns: 1fr; gap: 36px; }
  .card-grid, .steps, .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0;
    transform: translateY(-130%); transition: transform .28s ease; align-items: stretch;
  }
  .nav.open { transform: none; }
  .nav a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 10px 24px; text-align: center; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
@media (max-width: 480px) {
  .card-grid, .steps, .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 64px; }
  .section { padding: 64px 0; }
  .float-chip { font-size: 12px; padding: 8px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
