/*
Theme Name: 연세바로치과 부천점
Theme URI: https://ysbarobc.com
Author: YS Baro Orthodontic Clinic
Description: 연세바로치과교정과치과의원 부천점 — 다크차콜 + 골드 프리미엄 테마. SEO·GEO·AEO 최적화, LocalBusiness Schema, FAQPage Schema, BreadcrumbList 내장.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: yonsei-baro
*/

/* =============================================
   CSS CUSTOM PROPERTIES — 다크차콜 + 골드
   ============================================= */
:root {
  /* Brand Colors */
  --cb1: #2C2E3A;   /* 다크차콜 메인 */
  --cb2: #3D404F;   /* 차콜 중간 */
  --cb3: #52566A;   /* 차콜 라이트 */
  --cb4: #6B7080;   /* 차콜 뮤트 */

  --gold:  #C9A84C;  /* 골드 메인 */
  --gold2: #E8C87A;  /* 골드 라이트 */
  --goldf: #F5DFA0;  /* 골드 페일 */
  --gold-bg: rgba(201,168,76,0.10);
  --gold-border: rgba(201,168,76,0.35);

  /* Neutral */
  --bg:    #F5F6F8;
  --bg2:   #ECEDF2;
  --white: #FFFFFF;
  --text:  #1E2030;
  --muted: #6B7080;
  --border: #D4D8E4;

  /* Accent Silver */
  --acc:   #A8B4C8;
  --acc2:  #C8D4E8;

  /* Typography */
  --font-head: 'Noto Serif KR', 'NanumMyeongjo', Georgia, serif;
  --font-body: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;

  /* Spacing */
  --section-pad: 72px 0;
  --container: 1160px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;

  /* Transitions */
  --trans: 0.25s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 34px); }
h3 { font-size: clamp(16px, 2vw, 22px); }
h4 { font-size: 16px; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all var(--trans);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--cb1);
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold2);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-bg);
  color: var(--goldf);
}
.btn-dark {
  background: var(--cb1);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--cb2);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cb1);
  border-bottom: 1.5px solid var(--gold);
  transition: box-shadow var(--trans);
}
#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-emblem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-emblem svg {
  fill: var(--gold);
  width: 20px;
  height: 20px;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-size: 10px;
  color: var(--acc);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* GNB */
.gnb {
  display: flex;
  align-items: center;
  gap: 36px;
}
.gnb > a {
  font-size: 14px;
  color: var(--acc);
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--trans);
}
.gnb > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}
.gnb > a:hover { color: var(--gold2); }
.gnb > a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--acc);
  transition: all var(--trans);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cb1);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--acc2);
}
.mobile-nav a:hover { color: var(--gold2); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: var(--acc);
  cursor: pointer;
}

/* =============================================
   FLOATING CTA (fixed right)
   ============================================= */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform var(--trans);
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.tel  { background: var(--gold); }
.float-btn.kakao { background: #FEE500; }
.float-btn.top  { background: var(--cb2); border: 1px solid var(--cb3); }
.float-btn svg  { width: 22px; height: 22px; }

/* =============================================
   AEO BREADCRUMB BAR
   ============================================= */
.aeo-bar {
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
  padding: 8px 0;
  margin-top: 70px;  /* header height */
}
.aeo-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.aeo-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  background: var(--bg);
  color: var(--cb3);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 2px 10px;
}
.breadcrumb-nav {
  font-size: 11px;
  color: var(--muted);
}
.breadcrumb-nav a { color: var(--muted); }
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav span { margin: 0 6px; color: var(--border); }
.schema-tag {
  margin-left: auto;
  font-size: 9px;
  color: var(--border);
}

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

/* Decorative grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Gold radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-left { padding: 40px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 0.5px solid var(--gold-border);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 11px;
  color: var(--gold2);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold2);
}
.hero-desc {
  font-size: 15px;
  color: var(--acc);
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 0.5px solid rgba(201,168,76,0.2);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  color: var(--acc);
  margin-top: 4px;
}

/* Hero right — doctor card */
.hero-doctor-card {
  background: rgba(61,64,79,0.5);
  border: 0.5px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-doc-img {
  width: 100%;
  height: 260px;
  background: var(--cb2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.hero-doc-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-doc-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cb2) 0%, var(--cb3) 100%);
  font-size: 72px;
  color: var(--cb4);
}
.doc-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.doc-title {
  font-size: 12px;
  color: var(--gold2);
  margin-bottom: 16px;
}
.doc-certs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doc-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--acc2);
}
.doc-cert::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
  padding: var(--section-pad);
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { color: var(--text); margin-bottom: 12px; }
.section-header p { font-size: 15px; color: var(--muted); max-width: 480px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.feature-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--cb1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(201,168,76,0.3);
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.feature-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* =============================================
   TREATMENT SECTION
   ============================================= */
.treatment-section {
  padding: var(--section-pad);
  background: var(--white);
}
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.treatment-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.treatment-card.dark {
  background: var(--cb1);
  border: 0.5px solid var(--cb3);
}
.treatment-card.light {
  background: var(--bg);
  border: 0.5px solid var(--border);
}
.treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.treatment-card.dark:hover { border-color: var(--gold-border); }
.treatment-card.light:hover { border-color: var(--gold-border); }

.treat-kicker {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1px;
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 12px;
  font-weight: 500;
}
.treatment-card.dark .treat-kicker {
  background: var(--gold-bg);
  color: var(--gold2);
  border: 0.5px solid var(--gold-border);
}
.treatment-card.light .treat-kicker {
  background: var(--bg2);
  color: var(--cb3);
  border: 0.5px solid var(--border);
}
.treatment-card h3 { font-size: 17px; margin-bottom: 8px; }
.treatment-card.dark h3 { color: var(--white); }
.treatment-card.light h3 { color: var(--text); }
.treatment-card p { font-size: 12px; line-height: 1.7; }
.treatment-card.dark p { color: var(--acc); }
.treatment-card.light p { color: var(--muted); }
.treat-num {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.treatment-card.dark .treat-num { color: rgba(201,168,76,0.08); }
.treatment-card.light .treat-num { color: rgba(44,46,58,0.05); }
.treat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 14px;
  font-weight: 500;
}
.treatment-card.dark .treat-arrow { color: var(--gold2); }
.treatment-card.light .treat-arrow { color: var(--cb3); }

/* =============================================
   GEO / INFO SECTION
   ============================================= */
.geo-section {
  padding: var(--section-pad);
  background: var(--cb2);
}
.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.geo-section .section-kicker { color: var(--gold2); }
.geo-section .section-kicker::before { background: var(--gold2); }
.geo-section h2 { color: var(--white); margin-bottom: 24px; }

.info-map {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cb3);
  border-radius: var(--radius);
  border: 0.5px solid rgba(201,168,76,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--acc);
  font-size: 14px;
}
.info-map svg { fill: var(--gold); width: 36px; height: 36px; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.hour-card {
  background: var(--cb1);
  border: 0.5px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.hour-day { font-size: 11px; color: var(--gold2); margin-bottom: 4px; font-weight: 500; }
.hour-time { font-size: 13px; color: var(--acc2); }
.hour-note { font-size: 11px; color: var(--cb4); margin-top: 4px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(201,168,76,0.1);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-bg);
  border: 0.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { fill: var(--gold); width: 16px; height: 16px; }
.contact-label { font-size: 10px; color: var(--cb4); }
.contact-value { font-size: 14px; color: var(--white); font-weight: 500; }

/* =============================================
   FAQ / AEO SECTION
   ============================================= */
.faq-section {
  padding: var(--section-pad);
  background: var(--bg);
}
.faq-section .section-header { text-align: left; margin-bottom: 0; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.aeo-note {
  margin-top: 24px;
  padding: 16px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item:hover { border-color: var(--gold-border); }
.faq-item.open { border-color: var(--gold-border); }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.faq-q-mark {
  width: 26px;
  height: 26px;
  background: var(--cb1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-q-text { font-size: 14px; font-weight: 500; color: var(--text); flex: 1; line-height: 1.5; }
.faq-toggle {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px 60px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: var(--cb1);
  border-top: 1.5px solid var(--gold-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-kicker { justify-content: center; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { font-size: 15px; color: var(--acc); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #111318;
  padding: 48px 0 24px;
  border-top: 0.5px solid rgba(201,168,76,0.2);
}
.footer-gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 40px;
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-name { color: var(--acc2); margin-bottom: 12px; }
.footer-brand p { font-size: 12px; color: var(--cb4); line-height: 1.9; }
.footer-col h4 { font-size: 13px; color: var(--acc2); margin-bottom: 16px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: var(--cb4); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-bottom {
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 11px; color: var(--cb4); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 11px; color: var(--cb4); }
.footer-legal a:hover { color: var(--gold2); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-doctor-card { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .gnb { display: none; }
  .hamburger { display: flex; }
  :root { --section-pad: 56px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { gap: 20px; }
  .float-cta { right: 14px; bottom: 20px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
