/* ============================================================
   거상마케팅센터 랜딩페이지 — style.css
   파란색(로열블루 + 네이비) / 신뢰감·기업형
   ============================================================ */

:root {
  --blue: #1a56db;
  --blue-dark: #0b2f8f;
  --navy: #0b1f4d;
  --navy-deep: #06122e;
  --teal: #2dd4bf;
  --light-blue: #7fb0ff;
  --tint: #f5f8ff;
  --ink: #0f172a;
  --ink-2: #0b1f4d;
  --muted: #5b6b8c;
  --border: #eef1f6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.container { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 840px; }

@keyframes floatUp { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulseRing {
  0% { box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(255,255,255,.4); }
  70% { box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(255,255,255,0); }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { height: 74px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(26,86,219,.28);
}
.brand-mark.sm { width: 32px; height: 32px; border-radius: 9px; }
.brand-ring { width: 15px; height: 15px; border-radius: 50%; border: 3px solid #fff; display: block; }
.brand-mark.sm .brand-ring { width: 12px; height: 12px; border-width: 2.5px; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; display: block; }
.brand-logo.sm { width: 32px; height: 32px; }
.brand-text { line-height: 1.1; }
.brand-name { display: block; font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-2); }
.brand-sub { display: block; font-size: 13.5px; font-weight: 600; color: var(--blue); letter-spacing: .06em; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 20px; font-weight: 600; color: #3a4660; text-decoration: none; transition: color .15s; }
.nav a:hover { color: var(--blue); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: #fff !important; font-size: 19px; font-weight: 700;
  padding: 11px 20px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 6px 16px rgba(26,86,219,.25);
}
.btn-nav:hover { background: #1749bd; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink-2); border-radius: 2px; transition: .2s; }
.nav-mobile { display: none; flex-direction: column; padding: 8px 28px 20px; gap: 4px; border-top: 1px solid var(--border); background: #fff; }
.nav-mobile a { padding: 12px 4px; font-size: 21px; font-weight: 600; color: #3a4660; text-decoration: none; border-bottom: 1px solid #f4f6fa; }
.nav-mobile .btn-nav { justify-content: center; margin-top: 8px; border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; padding: 16px 28px;
  border-radius: 12px; text-decoration: none; transition: transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink-2); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.btn-white.pulse { animation: pulseRing 2.6s infinite; }
.btn-ghost { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(170deg, #0a1d4d 0%, #0d2a6e 55%, #1746b8 100%);
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 { top: -160px; right: -140px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(59,130,246,.45), transparent 65%); }
.hero-orb-2 { bottom: -200px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(45,212,191,.18), transparent 65%); }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 80%);
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-inner {
  position: relative; padding-top: 74px; padding-bottom: 88px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}
.hero-copy { }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 10px 18px; border-radius: 999px; font-size: 22.5px; font-weight: 600; margin-bottom: 26px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(45,212,191,.25); }
.hero-title { font-size: 58px; line-height: 1.18; font-weight: 800; letter-spacing: -.035em; margin: 0 0 22px; text-wrap: balance; }
.accent-light { color: var(--light-blue); }
.hero-desc { font-size: 30px; line-height: 1.65; color: #c4d2f0; margin: 0 0 34px; max-width: 520px; text-wrap: pretty; }
.hero-desc b { color: #fff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 18px; color: #9fb3df; font-size: 21.5px; font-weight: 600; flex-wrap: wrap; }
.hero-trust .sep { opacity: .4; }

.hero-card-wrap { position: relative; }
.search-card { background: #fff; border-radius: 20px; padding: 20px; box-shadow: 0 30px 70px rgba(3,12,40,.45); color: var(--ink); }
.search-bar { display: flex; align-items: center; gap: 10px; background: #f1f4f9; border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; }
.search-bar span:last-child { font-size: 15.5px; color: #475569; font-weight: 600; }
.search-icon { width: 16px; height: 16px; border-radius: 50%; border: 2.5px solid var(--blue); position: relative; flex-shrink: 0; }
.search-icon::after { content: ""; position: absolute; right: -4px; bottom: -4px; width: 8px; height: 2.5px; background: var(--blue); transform: rotate(45deg); }
.search-label { font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: .04em; margin-bottom: 11px; }
.result-list { display: flex; flex-direction: column; gap: 10px; }
.result { display: flex; align-items: center; gap: 12px; padding: 11px; border: 1px solid var(--border); border-radius: 13px; }
.result-top { padding: 12px; border: 1.5px solid var(--blue); background: var(--tint); }
.result-dim { opacity: .6; }
.result-dim.dimmer { opacity: .45; }
.result-thumb { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; }
.result-top .result-thumb { width: 46px; height: 46px; }
.striped { background: repeating-linear-gradient(45deg, #dbe6fb, #dbe6fb 6px, #eaf0fc 6px, #eaf0fc 12px); }
.gray { background: #eef1f6; }
.result-body { flex: 1; min-width: 0; }
.result-name { display: flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 700; }
.tag-blue { font-size: 11px; font-weight: 800; color: #fff; background: var(--blue); padding: 2px 7px; border-radius: 6px; }
.result-meta { font-size: 13px; color: #64748b; margin-top: 3px; }
.result-rank { font-size: 19px; font-weight: 700; color: #94a3b8; }
.result-rank.rank-1 { font-size: 24px; font-weight: 800; color: var(--blue); }
.bar { border-radius: 4px; }
.bar-lg { height: 10px; width: 60%; background: #e2e8f0; }
.bar-md { height: 10px; width: 55%; background: #e2e8f0; }
.bar-sm { height: 8px; width: 40%; background: var(--border); margin-top: 7px; }
.bar-xs { height: 8px; width: 35%; background: var(--border); margin-top: 7px; }

.float-stat {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--navy); color: #fff; border: 1px solid rgba(127,176,255,.35);
  border-radius: 14px; padding: 13px 18px; box-shadow: 0 16px 36px rgba(3,12,40,.5);
}
.float-stat-label { font-size: 12px; color: #9fb3df; font-weight: 600; }
.float-stat-value { font-size: 26px; font-weight: 800; color: var(--teal); }

/* ============ STATS BAR ============ */
.stats-bar { background: var(--navy); color: #fff; border-top: 1px solid rgba(255,255,255,.07); }
.stats-grid { padding-top: 34px; padding-bottom: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: none; }
.stat-value { font-size: 42px; font-weight: 800; letter-spacing: -.03em; color: var(--light-blue); }
.stat-label { font-size: 16px; color: #aebbdb; font-weight: 600; margin-top: 4px; }

/* ============ SECTIONS ============ */
.section { padding: 104px 0; }
.section-tint { background: var(--tint); border-top: 1px solid var(--border); }
.section-dark { background: linear-gradient(180deg, #0a1d4d, #0d2a6e); color: #fff; }
.section-head { text-align: center; margin-bottom: 58px; }
.eyebrow { font-size: 30px; font-weight: 800; color: var(--blue); letter-spacing: .1em; margin-bottom: 14px; }
.eyebrow.light { color: var(--light-blue); }
.section-title { font-size: 44px; font-weight: 800; letter-spacing: -.03em; margin: 0 0 16px; color: var(--ink-2); line-height: 1.25; }
.section-title.invert { color: #fff; }
.section-title.left { text-align: left; }
.section-sub { font-size: 29px; color: var(--muted); margin: 0; line-height: 1.6; }
.section-sub.invert { color: #aebbdb; }

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

/* ============ SERVICE ============ */
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 34px 30px;
  box-shadow: 0 4px 18px rgba(15,23,42,.04); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(26,86,219,.13); border-color: #cdddfb; }
.svc-icon { width: 58px; height: 58px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 28px; font-weight: 800; }
.svc-tag { font-size: 14px; font-weight: 800; color: var(--blue); letter-spacing: .06em; margin-bottom: 7px; }
.svc-title { font-size: 24px; font-weight: 800; margin: 0 0 12px; color: var(--ink-2); letter-spacing: -.02em; }
.svc-desc { font-size: 25px; color: var(--muted); line-height: 1.66; margin: 0 0 20px; text-wrap: pretty; }
.svc-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.svc-points li { display: flex; align-items: center; gap: 9px; font-size: 24px; font-weight: 600; color: #384258; }
.check { width: 20px; height: 20px; border-radius: 50%; background: #e8f0fe; color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.check.teal { background: rgba(45,212,191,.18); color: #0d9488; }

/* ============ AEO / GEO ============ */
.aeo-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.aeo-lead { font-size: 27px; color: var(--muted); line-height: 1.7; margin: 0 0 26px; text-wrap: pretty; }
.aeo-defs { display: flex; flex-direction: column; gap: 16px; }
.aeo-def { display: flex; gap: 15px; align-items: flex-start; }
.aeo-abbr { width: 48px; height: 48px; border-radius: 12px; background: #fff; border: 1px solid #d9e4fb; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--blue); font-size: 14px; flex-shrink: 0; }
.aeo-def b { font-size: 17px; color: var(--ink-2); }
.aeo-def p { font-size: 23px; color: var(--muted); margin: 4px 0 0; line-height: 1.55; }
.ai-demo { background: var(--navy); border-radius: 22px; padding: 30px; box-shadow: 0 24px 60px rgba(11,31,77,.28); color: #fff; }
.ai-demo-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-weight: 700; font-size: 16.5px; }
.ai-spark { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), #3b82f6); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.ai-question { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 15px 17px; font-size: 25px; color: #dbe5fb; margin-bottom: 14px; }
.ai-answer { background: #13306f; border: 1px solid rgba(127,176,255,.3); border-radius: 14px; padding: 17px 18px; }
.ai-answer-label { font-size: 14px; color: #9fb3df; margin-bottom: 10px; font-weight: 600; }
.ai-answer-text { font-size: 25px; line-height: 1.7; color: #eef3ff; }
.ai-answer-text mark { background: rgba(45,212,191,.22); color: #7ff0dd; padding: 1px 6px; border-radius: 5px; }
.ai-foot { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 14px; color: #9fb3df; }
.dot-teal { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

/* ============ PROCESS ============ */
.step { position: relative; background: #f7f9fe; border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px; }
.step-no { font-size: 14px; font-weight: 800; color: var(--blue); letter-spacing: .05em; }
.step-icon { width: 50px; height: 50px; border-radius: 12px; background: #fff; border: 1px solid #d9e4fb; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 14px 0 16px; }
.step h3 { font-size: 20px; font-weight: 800; margin: 0 0 9px; color: var(--ink-2); letter-spacing: -.02em; }
.step p { font-size: 24px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============ CASE / RESULTS ============ */
.case-grid { margin-bottom: 54px; }
.case-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 28px; }
.case-head { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.case-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(127,176,255,.18); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.case-name { font-weight: 800; font-size: 17px; }
.case-region { font-size: 14px; color: #9fb3df; }
.case-change { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 14px; }
.cc-label { display: block; font-size: 13px; color: #9fb3df; margin-bottom: 3px; }
.cc-label.teal { color: #7ff0dd; }
.cc-before { font-size: 19px; font-weight: 700; color: #c4d2f0; }
.cc-arrow { font-size: 22px; color: var(--light-blue); padding-bottom: 1px; }
.cc-after { font-size: 26px; font-weight: 800; color: var(--teal); }
.case-note { font-size: 23px; color: #c4d2f0; line-height: 1.55; border-top: 1px solid rgba(255,255,255,.1); padding-top: 13px; }

.review-card { background: #fff; color: var(--ink); border-radius: 18px; padding: 26px; }
.stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; margin-bottom: 13px; }
.review-card p { font-size: 24px; line-height: 1.7; color: #384258; margin: 0 0 18px; text-wrap: pretty; }
.reviewer { display: flex; align-items: center; gap: 11px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; }
.r-name { font-weight: 700; font-size: 15.5px; }
.r-biz { font-size: 13.5px; color: #94a3b8; }

/* ============ PRICING ============ */
.price-grid { align-items: stretch; }
.plan { position: relative; background: #fff; border: 1px solid #e7edf7; border-radius: 22px; padding: 34px 30px; box-shadow: 0 4px 18px rgba(15,23,42,.04); display: flex; flex-direction: column; }
.plan-featured { background: var(--navy); border: 1px solid var(--blue); box-shadow: 0 24px 50px rgba(11,31,77,.32); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #06302a; font-size: 13.5px; font-weight: 800; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 20px; font-weight: 800; color: var(--ink-2); margin-bottom: 8px; }
.plan-featured .plan-name { color: #fff; }
.plan-tagline { font-size: 23px; color: #8a98b8; margin-bottom: 20px; line-height: 1.5; }
.plan-featured .plan-tagline { color: #aebbdb; }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 24px; }
.plan-price .amount { font-size: 38px; font-weight: 800; color: var(--ink-2); letter-spacing: -.02em; }
.plan-featured .plan-price .amount { color: #fff; }
.plan-price .unit { font-size: 16px; color: #8a98b8; }
.plan-featured .plan-price .unit { color: #aebbdb; }
.plan-features { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 24px; color: #475569; line-height: 1.45; }
.plan-featured .plan-features li { color: #dbe5fb; }
.plan-features .check { background: none; width: auto; height: auto; color: var(--blue); font-size: 16px; }
.plan-features .check.teal { color: var(--teal); }
.plan-btn { display: block; text-align: center; font-size: 16px; font-weight: 800; padding: 14px; border-radius: 11px; text-decoration: none; transition: opacity .15s; }
.plan-btn:hover { opacity: .9; }
.plan-btn-soft { background: #eef3fc; color: var(--blue); }
.plan-btn-primary { background: var(--blue); color: #fff; }
.plan-btn-dark { background: var(--navy); color: #fff; }
.price-note { text-align: center; margin-top: 24px; font-size: 14.5px; color: #8a98b8; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 13px; }
.faq-item { border: 1px solid var(--border); border-radius: 15px; overflow: hidden; background: #fff; transition: background .2s; }
.faq-item.open { background: #f7f9fe; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 21px 24px; background: transparent; border: none; cursor: pointer; text-align: left; font-size: 27px; font-weight: 700; color: var(--ink-2); font-family: inherit; }
.faq-plus { font-size: 24px; color: var(--blue); font-weight: 700; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 25px; line-height: 1.7; color: var(--muted); margin: 0; text-wrap: pretty; }

/* ============ CONTACT ============ */
.section-contact { background: linear-gradient(160deg, #0a1d4d, #13306f); color: #fff; padding: 100px 0; }
.contact-grid { max-width: 1000px; display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.contact-lead { font-size: 27px; color: #c4d2f0; line-height: 1.7; margin: 0 0 30px; text-wrap: pretty; }
.contact-lead b { color: #fff; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-row { display: flex; align-items: center; gap: 13px; font-size: 17px; }
.ci-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.ci-muted { color: #9fb3df; font-size: 15px; }

.form-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 24px 60px rgba(3,12,40,.4); color: var(--ink); }
.form-head { font-size: 21px; font-weight: 800; color: var(--ink-2); margin-bottom: 6px; }
.form-sub { font-size: 15px; color: #8a98b8; margin-bottom: 22px; }
.form-card label { display: block; font-size: 14px; font-weight: 700; color: #475569; margin: 14px 0 7px; }
.form-card label:first-of-type { margin-top: 0; }
.form-card input { width: 100%; padding: 13px 15px; border: 1.5px solid #e2e8f0; border-radius: 11px; font-size: 16px; font-family: inherit; outline: none; transition: border-color .15s; }
.form-card input:focus { border-color: var(--blue); }
.form-submit { margin-top: 18px; width: 100%; background: var(--blue); color: #fff; font-size: 17px; font-weight: 800; padding: 15px; border: none; border-radius: 12px; cursor: pointer; box-shadow: 0 10px 24px rgba(26,86,219,.3); transition: background .15s; }
.form-submit:hover { background: #1749bd; }
.form-note { font-size: 13px; color: #94a3b8; text-align: center; line-height: 1.5; margin-top: 12px; }
.form-success { text-align: center; padding: 34px 8px; }
.success-ic { width: 62px; height: 62px; border-radius: 50%; background: #e8f7f2; color: #10b981; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 18px; }
.success-title { font-size: 23px; font-weight: 800; color: var(--ink-2); margin-bottom: 9px; }
.success-desc { font-size: 17px; color: var(--muted); line-height: 1.6; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); color: #8ea0c8; padding: 50px 0 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 18px; font-weight: 800; color: #fff; }
.footer-meta { font-size: 22px; line-height: 1.75; color: #7e90b8; margin: 0; }
.footer-cols { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col span { font-size: 22px; color: #8ea0c8; text-decoration: none; }
.fc-title { font-size: 13px; font-weight: 800; color: #fff !important; letter-spacing: .05em; margin-bottom: 3px; }
.footer-copy { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13.5px; color: #5e6f96; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 44px; }
  .hero-card-wrap { max-width: 460px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat:nth-child(2) { border-right: none; }
  .grid-3, .grid-4, .price-grid { grid-template-columns: 1fr; }
  .grid-4 { gap: 16px; }
  .aeo-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 36px; }
  .section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 18px; }
  .float-stat { right: 8px; bottom: -18px; }
  .section-title { font-size: 29px; }
  .hero-trust { gap: 10px; font-size: 14px; }
  .hero-trust .sep { display: none; }
}
