/* =========================================
   일등무역 공통 CSS - Premium Corporate Style
   ========================================= */

/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800&display=swap');

:root {
  --primary: #0047AB;       /* 코발트 블루 - 신뢰·전문성 */
  --primary-dark: #002f78;
  --primary-light: #2267CC;
  --accent: #FF6B00;        /* 활력 오렌지 - CTA */
  --accent-dark: #e55c00;
  --gold: #C9941A;          /* 골드 - 프리미엄 포인트 */
  --white: #FFFFFF;
  --light-bg: #F4F7FB;
  --section-bg: #EEF3FA;
  --text-dark: #1A1A2E;
  --text-mid: #444466;
  --text-light: #7A7A9A;
  --border: #DDE3EE;
  --shadow-sm: 0 2px 8px rgba(0,71,171,0.08);
  --shadow-md: 0 6px 24px rgba(0,71,171,0.13);
  --shadow-lg: 0 16px 48px rgba(0,71,171,0.18);
  --shadow-xl: 0 24px 64px rgba(0,71,171,0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gnb-height: 90px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--gnb-height);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,71,171,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 620px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-light { background: var(--light-bg); }
.section-blue { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%); }

/* =========================================
   HEADER / GNB
   ========================================= */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--gnb-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,71,171,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
#main-header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 14px; }
/* 로고 이미지 로드 실패 시 텍스트만 표시 */
.logo-wrap img {
  height: 72px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-text .brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* GNB Nav */
.gnb-nav { display: flex; align-items: center; gap: 4px; }
.gnb-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.gnb-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.gnb-nav a:hover, .gnb-nav a.active, .gnb-nav a.section-active {
  color: var(--primary);
  background: rgba(0,71,171,0.06);
}
.gnb-nav a:hover::after, .gnb-nav a.active::after, .gnb-nav a.section-active::after {
  left: 16px; right: 16px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-call:hover { background: var(--primary); color: var(--white); }
.btn-consult {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255,107,0,0.35);
  transition: var(--transition);
}
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.45); }

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--gnb-height); left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 20px 24px 32px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--primary); padding-left: 8px; }
.mobile-nav .mobile-nav-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.mobile-nav .btn-call, .mobile-nav .btn-consult { justify-content: center; padding: 12px; }

/* =========================================
   FLOATING SIDEBAR
   ========================================= */
#floating-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 700;
  gap: 3px;
}
.sidebar-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.sidebar-btn i { font-size: 1.3rem; }
.sidebar-btn.call { background: var(--primary); color: var(--white); }
.sidebar-btn.kakao { background: #FEE500; color: #3A1D1D; }
.sidebar-btn.blog { background: #03C75A; color: var(--white); }
.sidebar-btn.top { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.sidebar-top-label { font-size: 0.55rem; font-weight: 700; }

/* =========================================
   MOBILE BOTTOM CTA BAR
   ========================================= */
#mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  gap: 4px;
  transition: var(--transition);
  text-decoration: none;
}
.cta-btn i { font-size: 1.2rem; }
.cta-btn.call { background: var(--primary); color: var(--white); }
.cta-btn.kakao { background: #FEE500; color: #3A1D1D; }
.cta-btn.blog { background: #03C75A; color: var(--white); }
.cta-btn.naver { background: #FF6B00; color: var(--white); }
.cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* =========================================
   AD BANNER (Sliding)
   ========================================= */
#ad-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 890;
  width: 320px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-xl);
  color: var(--white);
  transform: translateX(-360px);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
#ad-banner.show { transform: translateX(0); }
#ad-banner .banner-close {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  color: var(--white);
  background: none; border: none;
}
#ad-banner .banner-close:hover { opacity: 1; }
#ad-banner .banner-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
#ad-banner h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
#ad-banner p { font-size: 0.82rem; opacity: 0.85; margin-bottom: 14px; }
#ad-banner .banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
#ad-banner .banner-btn:hover { background: var(--accent); color: var(--white); }

/* =========================================
   BUTTONS (Global)
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,71,171,0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,71,171,0.4); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255,107,0,0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,107,0,0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--light-bg); }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-unit { font-size: 1.1rem; color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--text-mid); font-weight: 500; }

/* =========================================
   FOOTER
   ========================================= */
#main-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
  mix-blend-mode: normal;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; }
.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-info p {
  font-size: 0.82rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-info p i { color: var(--primary-light); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* =========================================
   PAGE HERO BANNER
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.6rem; }

/* =========================================
   HIGHLIGHT BOX
   ========================================= */
.highlight-box {
  background: linear-gradient(135deg, rgba(0,71,171,0.06), rgba(0,71,171,0.02));
  border: 1px solid rgba(0,71,171,0.12);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

/* =========================================
   ICON BOX
   ========================================= */
.icon-box {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-box.blue { background: rgba(0,71,171,0.1); color: var(--primary); }
.icon-box.orange { background: rgba(255,107,0,0.1); color: var(--accent); }
.icon-box.gold { background: rgba(201,148,26,0.12); color: var(--gold); }
.icon-box.green { background: rgba(3,199,90,0.1); color: #03C75A; }

/* =========================================
   GALLERY GRID
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-bg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,30,80,0.75) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay-text {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================================
   PROCESS STEPS
   ========================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -1px;
  width: 2px; height: 60px;
  background: linear-gradient(180deg, var(--primary), transparent);
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0,71,171,0.35);
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}
.step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.82rem; color: var(--text-mid); }

/* =========================================
   FORM STYLES
   ========================================= */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group label span { color: var(--accent); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,71,171,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --gnb-height: 68px; }
  body { padding-bottom: 80px; }

  .gnb-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: block; }

  #floating-sidebar { display: none; }
  #mobile-cta-bar { display: grid; }
  #ad-banner { width: calc(100vw - 32px); left: 16px; bottom: 90px; }

  .section { padding: 64px 0; }
  .section-title { font-size: 1.6rem; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

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

  .form-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }

  .page-hero { padding: 60px 0 52px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .section-title { font-size: 1.4rem; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Highlight emphasis */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.font-heavy { font-weight: 900; }

/* Number counter styling */
.count-up { font-family: 'Montserrat', sans-serif; }
