/* =========================================================
   TOPEC FMS — Corporate Website Stylesheet
   ========================================================= */

:root{
  --navy-900:#0A1830;
  --navy-800:#0F2140;
  --navy-700:#15305C;
  --blue-700:#0B3E8F;
  --blue-600:#0B57B0;
  --blue-500:#1B72D6;
  --sky-300:#7FC4FF;
  --ink-900:#0E1113;
  --gray-900:#111827;
  --gray-700:#374151;
  --gray-600:#4B5565;
  --gray-400:#8B93A7;
  --gray-200:#E4E8F0;
  --gray-100:#F3F5F9;
  --bg-alt:#F5F8FC;
  --white:#FFFFFF;
  --radius-lg:24px;
  --radius-md:16px;
  --radius-sm:10px;
  --shadow-sm:0 2px 10px rgba(10,24,48,0.06);
  --shadow-md:0 12px 32px rgba(10,24,48,0.10);
  --shadow-lg:0 24px 60px rgba(10,24,48,0.16);
  --maxw:1180px;
  --font-kr:'Noto Sans KR','Pretendard','Malgun Gothic',sans-serif;
  --font-en:'Inter','Noto Sans KR',sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-en);
  color:var(--gray-900);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  word-break:keep-all;
}
h1,h2,h3,h4{ margin:0; line-height:1.3; letter-spacing:-0.01em; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:96px 0; }
.section-alt{ background:var(--bg-alt); }
.section-navy{ background:linear-gradient(135deg,var(--navy-900),var(--navy-700)); color:var(--white); }

.eyebrow{
  display:inline-block; font-size:13px; font-weight:800; letter-spacing:0.08em;
  color:var(--blue-600); text-transform:uppercase; margin-bottom:10px;
}
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(24px,3vw,32px); font-weight:800; color:var(--navy-900); }
.section-head p{ margin-top:14px; color:var(--gray-600); font-size:15.5px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:999px; font-weight:700; font-size:14.5px;
  border:1px solid transparent; transition:.18s;
}
.btn-primary{ background:var(--blue-600); color:var(--white); box-shadow:0 10px 24px rgba(11,87,176,0.28); }
.btn-primary:hover{ background:var(--blue-700); transform:translateY(-1px); }
.btn-outline{ border-color:var(--gray-200); color:var(--navy-900); background:var(--white); }
.btn-outline:hover{ border-color:var(--blue-500); color:var(--blue-600); }
.btn-outline.on-dark{ border-color:rgba(255,255,255,0.35); color:var(--white); background:transparent; }
.btn-outline.on-dark:hover{ border-color:var(--white); }
.btn-white{ background:var(--white); color:var(--navy-900); }
.btn-white:hover{ transform:translateY(-1px); }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:100; background:var(--white);
  border-bottom:1px solid var(--gray-100);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; height:78px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{ width:38px; height:38px; display:flex; align-items:center; justify-content:center; }
.brand-mark img{ width:100%; height:100%; object-fit:contain; }
.brand-word{ display:flex; flex-direction:column; line-height:1.15; }
.brand-word .t1{ font-weight:800; font-size:18px; color:var(--ink-900); letter-spacing:-0.01em; }
.brand-word .t1 .fms{ color:var(--blue-600); }
.brand-word .t2{ font-size:11px; color:var(--gray-400); font-weight:600; letter-spacing:0.02em; }

.nav-desktop{ display:flex; align-items:center; gap:36px; }
.nav-desktop a{ font-size:14.5px; font-weight:600; color:var(--gray-700); position:relative; padding:4px 0; }
.nav-desktop a:hover, .nav-desktop a.active{ color:var(--blue-600); }
.header-actions{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none; background:none; border:none; width:40px; height:40px; border-radius:10px;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{ content:""; display:block; width:20px; height:2px; background:var(--navy-900); margin:4px auto; border-radius:2px; transition:.2s; }

.nav-mobile{
  display:none; flex-direction:column; gap:2px; background:var(--white);
  border-top:1px solid var(--gray-200); padding:10px 24px 18px;
}
.nav-mobile a{ padding:12px 4px; font-weight:600; color:var(--gray-700); border-bottom:1px solid var(--gray-100); }
.nav-mobile a.active{ color:var(--blue-600); }
.nav-mobile.open{ display:flex; }

@media (max-width:920px){
  .nav-desktop{ display:none; }
  .header-actions .btn-primary{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  background:radial-gradient(1200px 600px at 80% -10%, rgba(27,114,214,0.35), transparent 60%),
             linear-gradient(160deg,var(--navy-900) 0%, #0E2A54 55%, var(--navy-700) 100%);
  color:var(--white);
  padding:120px 0 100px;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse at 70% 20%, black, transparent 72%);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border-radius:999px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16);
  font-size:13px; font-weight:700; color:var(--sky-300); margin-bottom:22px;
}
.hero-badge .dot{ width:7px; height:7px; border-radius:50%; background:var(--sky-300); box-shadow:0 0 0 4px rgba(127,196,255,0.18); }
.hero h1{ font-size:clamp(34px,4.6vw,58px); font-weight:800; letter-spacing:-0.02em; }
.hero h1 em{ font-style:normal; background:linear-gradient(90deg,var(--sky-300),var(--blue-500)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lead{ margin-top:22px; font-size:18px; color:rgba(255,255,255,0.78); max-width:560px; }
.hero-actions{ display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; }

.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero-visual .glow-card{
  position:relative; width:100%; max-width:360px; aspect-ratio:1/1;
  border-radius:32px;
  background:rgba(255,255,255,0.95);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 30px 80px rgba(0,0,0,0.35);
}
.hero-visual .glow-card img{ width:58%; filter:drop-shadow(0 16px 30px rgba(11,87,176,0.25)); animation:float 5s ease-in-out infinite; }
.hero-visual .glow-card-full{
  aspect-ratio:auto; width:100%; max-width:500px; padding:38px 34px;
  background:linear-gradient(165deg, rgba(255,255,255,0.98), rgba(240,246,252,0.97));
  border-radius:34px;
  border:1px solid rgba(255,255,255,0.6);
  box-shadow:0 30px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(27,114,214,0.18);
  backdrop-filter:none;
}
.hero-visual .glow-card-full::before{
  content:''; position:absolute; inset:-14% -6%;
  background:radial-gradient(closest-side, rgba(27,114,214,0.4), rgba(27,114,214,0) 72%);
  filter:blur(34px); z-index:-1;
}
.hero-visual .glow-card-full img{
  width:100%; filter:drop-shadow(0 10px 20px rgba(11,87,176,0.18));
  animation:float 5s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }

.stat-strip{
  position:relative; z-index:2;
  margin-top:72px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:var(--radius-md);
  overflow:hidden;
}
.stat-item{ background:rgba(255,255,255,0.04); padding:24px 20px; text-align:center; }
.stat-item .num{ font-size:clamp(22px,2.6vw,32px); font-weight:800; color:var(--white); }
.stat-item .num span{ color:var(--sky-300); }
.stat-item .label{ margin-top:6px; font-size:13px; color:rgba(255,255,255,0.62); }

@media (max-width:900px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; }
  .stat-strip{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- Cards ---------- */
.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:920px){ .grid-3,.grid-4{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr;} }

.card{
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg);
  padding:28px 26px; transition:.2s;
}
.card:hover{ box-shadow:var(--shadow-md); transform:translateY(-2px); }
.card h3{ margin-top:14px; font-size:18px; font-weight:800; color:var(--navy-900); }
.card p{ margin-top:10px; color:var(--gray-600); font-size:14.5px; }
.icon-badge{
  width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  font-size:24px; background:var(--bg-alt);
}
.tag{
  display:inline-block; padding:5px 12px; border-radius:999px; background:rgba(11,87,176,0.08);
  color:var(--blue-600); font-size:12.5px; font-weight:800; margin-bottom:12px;
}

.pill-row{ display:flex; flex-wrap:wrap; gap:12px; }
.pill{
  display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border-radius:999px;
  background:var(--white); border:1px solid var(--gray-200); font-size:13.5px; font-weight:600; color:var(--gray-700);
}
.pill b{ color:var(--navy-900); }

.center{ text-align:center; }

/* ---------- Timeline ---------- */
.timeline{ position:relative; padding-left:28px; border-left:2px solid var(--gray-200); display:grid; gap:36px; }
.timeline-item{ position:relative; }
.timeline-item::before{
  content:""; position:absolute; left:-34px; top:4px; width:12px; height:12px; border-radius:50%;
  background:var(--blue-600); box-shadow:0 0 0 4px rgba(11,87,176,0.14);
}
.timeline-item .when{ font-size:13px; font-weight:800; color:var(--blue-600); margin-bottom:6px; }
.timeline-item h4{ font-size:16.5px; font-weight:800; color:var(--navy-900); }
.timeline-item p{ margin-top:8px; color:var(--gray-600); font-size:14.5px; max-width:640px; }

/* ---------- CEO block ---------- */
.ceo-block{ display:grid; grid-template-columns:0.8fr 1.6fr; gap:48px; align-items:start; }
.ceo-photo{ width:100%; aspect-ratio:3/4; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); background:var(--gray-100); }
.ceo-name{ font-weight:700; color:var(--gray-700); font-size:14.5px; }
.ceo-quote{ font-size:22px; font-weight:800; color:var(--navy-900); line-height:1.5; margin-bottom:20px; }
.ceo-bio-list{ margin-top:22px; display:grid; gap:10px; }
.ceo-bio-list li{ font-size:14px; color:var(--gray-600); padding-left:20px; position:relative; }
.ceo-bio-list li::before{ content:"—"; position:absolute; left:0; color:var(--blue-500); font-weight:800; }
@media (max-width:820px){ .ceo-block{ grid-template-columns:1fr; } .ceo-photo{ max-width:260px; } }

/* ---------- Info grid ---------- */
.info-grid{ display:grid; grid-template-columns:120px 1fr; gap:14px 18px; }
.info-grid .k{ font-size:13.5px; font-weight:700; color:var(--gray-400); padding-bottom:14px; border-bottom:1px solid var(--gray-100); }
.info-grid .v{ font-size:14.5px; font-weight:600; color:var(--navy-900); padding-bottom:14px; border-bottom:1px solid var(--gray-100); }
.info-grid .v .note{ font-weight:500; color:var(--gray-400); font-size:12.5px; }
@media (max-width:640px){ .info-grid{ grid-template-columns:1fr; } .info-grid .k{ padding-bottom:2px; border-bottom:none; } .info-grid .v{ padding-top:2px; } }

.divider{ height:1px; background:var(--gray-200); margin:56px 0; }

/* ---------- Org chart ---------- */
.org-top{ display:flex; justify-content:center; margin-bottom:24px; }
.org-card{
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg);
  padding:28px 26px; text-align:center;
}
.org-card-lead{ max-width:420px; border:2px solid var(--blue-500); box-shadow:var(--shadow-md); }
.org-photo{
  width:104px; height:104px; border-radius:50%; overflow:hidden; margin:0 auto 16px;
  box-shadow:var(--shadow-sm); border:3px solid var(--bg-alt);
}
.org-card-lead .org-photo{ width:128px; height:128px; }
.org-photo img{ width:100%; height:100%; object-fit:cover; }
.org-role{
  display:inline-block; padding:5px 14px; border-radius:999px; background:var(--navy-900); color:var(--white);
  font-size:12.5px; font-weight:700; letter-spacing:.02em; margin-bottom:8px;
}
.org-card-lead .org-role{ background:linear-gradient(135deg,var(--navy-900),var(--blue-600)); }
.org-name{ font-size:17px; font-weight:800; color:var(--navy-900); margin-bottom:14px; }
.org-card ul{ text-align:left; display:grid; gap:8px; }
.org-card ul li{ font-size:13.3px; color:var(--gray-600); padding-left:18px; position:relative; }
.org-card ul li::before{ content:"✓"; position:absolute; left:0; color:var(--blue-500); font-weight:800; font-size:11px; top:2px; }
.org-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; max-width:640px; margin:0 auto; }
@media (max-width:640px){ .org-grid{ grid-template-columns:1fr; } }

/* ---------- Org tree (hierarchy diagram) ---------- */
.org-tree-wrap{
  background:radial-gradient(120% 140% at 50% 0%, var(--bg-alt) 0%, var(--white) 62%);
  border:1px solid var(--gray-200); border-radius:var(--radius-lg);
  padding:72px 24px 64px; overflow-x:auto;
}
.org-tree{ display:flex; flex-direction:column; align-items:center; min-width:max-content; margin:0 auto; }
.org-tree-node{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.org-tree-photo{
  width:126px; height:126px; border-radius:50%; overflow:hidden; margin-bottom:16px;
  box-shadow:var(--shadow-md); border:5px solid var(--white); outline:1px solid var(--gray-200);
}
.org-tree-node.is-ceo .org-tree-photo{
  width:164px; height:164px; border:6px solid var(--white);
  box-shadow:0 20px 40px rgba(11,87,176,0.28); outline:2px solid var(--blue-500);
}
.org-tree-photo img{ width:100%; height:100%; object-fit:cover; }
.org-tree-role{
  display:inline-block; padding:7px 22px; border-radius:999px; background:var(--navy-900); color:var(--white);
  font-size:14px; font-weight:800; letter-spacing:.02em; margin-bottom:10px;
}
.org-tree-node.is-ceo .org-tree-role{
  background:linear-gradient(135deg,var(--navy-900),var(--blue-600)); font-size:16px; padding:9px 28px;
  box-shadow:0 10px 22px rgba(11,87,176,0.32);
}
.org-tree-name{ font-size:20px; font-weight:800; color:var(--navy-900); letter-spacing:-0.01em; }
.org-tree-node.is-ceo .org-tree-name{ font-size:25px; }
.org-tree-line{ width:3px; height:52px; background:linear-gradient(180deg, var(--blue-500), var(--sky-300)); border-radius:2px; }
.org-tree-branch{
  position:relative; display:flex; justify-content:space-between;
  width:600px; max-width:100%; padding-top:52px;
}
.org-tree-branch::before{
  content:''; position:absolute; top:0; left:150px; right:150px; height:3px;
  background:linear-gradient(90deg, var(--sky-300), var(--blue-500), var(--sky-300)); border-radius:2px;
}
.org-tree-dept{
  position:relative; width:270px; padding:30px 22px 26px; text-align:center;
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); transition:.2s ease;
}
.org-tree-dept:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--blue-500); }
.org-tree-dept .org-tree-dept-icon{
  width:56px; height:56px; border-radius:50%; margin:0 auto 14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--blue-600), var(--sky-300)); font-size:26px; box-shadow:0 10px 20px rgba(11,87,176,0.22);
}
.org-tree-dept .org-tree-dept-label{ font-size:17px; font-weight:800; color:var(--navy-900); }
.org-tree-dept::before{
  content:''; position:absolute; top:-52px; left:50%; transform:translateX(-50%);
  width:3px; height:52px; background:linear-gradient(180deg, var(--sky-300), var(--blue-500)); border-radius:2px;
}
@media (max-width:720px){
  .org-tree-wrap{ padding:56px 16px 48px; }
  .org-tree-branch{ flex-direction:column; align-items:center; width:auto; gap:32px; }
  .org-tree-branch::before{ display:none; }
  .org-tree-dept{ width:240px; }
  .org-tree-dept::before{ height:32px; top:-32px; }
  .org-tree-node.is-ceo .org-tree-photo{ width:130px; height:130px; }
  .org-tree-node.is-ceo .org-tree-name{ font-size:21px; }
}

/* ---------- Executive bios ---------- */
.exec-bio-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:stretch; }
@media (max-width:820px){ .exec-bio-grid{ grid-template-columns:1fr; } }
.exec-bio-card{
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg);
  padding:34px 30px; box-shadow:var(--shadow-sm);
}
.exec-bio-head{ display:flex; align-items:center; gap:16px; margin-bottom:18px; }
.exec-bio-photo{
  width:72px; height:72px; border-radius:50%; overflow:hidden; flex-shrink:0;
  box-shadow:var(--shadow-sm); border:3px solid var(--bg-alt);
}
.exec-bio-photo img{ width:100%; height:100%; object-fit:cover; }
.exec-bio-role{ font-size:12.5px; font-weight:800; color:var(--blue-600); letter-spacing:.03em; text-transform:uppercase; }
.exec-bio-name{ font-size:19px; font-weight:800; color:var(--navy-900); margin-top:2px; }
.exec-bio-quote{
  font-size:14.5px; font-weight:700; color:var(--navy-900); line-height:1.65;
  padding-left:14px; border-left:3px solid var(--blue-500); margin-bottom:14px;
}
.exec-bio-desc{ font-size:14px; color:var(--gray-600); line-height:1.75; margin-bottom:16px; }
.exec-bio-edu{
  display:inline-block; font-size:12.5px; font-weight:700; color:var(--navy-900);
  background:var(--bg-alt); padding:6px 14px; border-radius:999px; margin-bottom:18px;
}
.exec-bio-list{ display:grid; gap:9px; }
.exec-bio-list li{ font-size:13.3px; color:var(--gray-600); padding-left:17px; position:relative; line-height:1.55; }
.exec-bio-list li::before{ content:"•"; position:absolute; left:0; top:0; color:var(--blue-500); font-weight:900; }

/* ---------- Service / BM steps ---------- */
.bm-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.bm-step{
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg);
  padding:30px 26px; position:relative;
}
.bm-step .step-no{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:44px; padding:0 20px; border-radius:999px;
  background:linear-gradient(135deg,var(--navy-900),var(--blue-600)); color:var(--white);
  font-weight:800; font-size:15px; letter-spacing:0.04em; white-space:nowrap; margin-bottom:20px;
}
.bm-step h3{ font-size:19px; font-weight:800; color:var(--navy-900); }
.bm-step .when{ margin-top:4px; font-size:12.5px; font-weight:700; color:var(--blue-600); }
.bm-step p{ margin-top:12px; color:var(--gray-600); font-size:14.5px; }
.bm-step ul{ margin-top:14px; display:grid; gap:8px; }
.bm-step ul li{ font-size:13.5px; color:var(--gray-600); padding-left:18px; position:relative; }
.bm-step ul li::before{ content:"·"; position:absolute; left:4px; color:var(--blue-500); font-weight:900; }
@media (max-width:920px){ .bm-steps{ grid-template-columns:1fr; } }

/* ---------- Table ---------- */
.table-wrap{ overflow-x:auto; border:1px solid var(--gray-200); border-radius:var(--radius-md); }
table{ width:100%; border-collapse:collapse; font-size:13.5px; }
table th, table td{ padding:14px 16px; text-align:left; border-bottom:1px solid var(--gray-100); white-space:nowrap; }
table th{ background:var(--bg-alt); color:var(--navy-900); font-weight:800; }
table td{ color:var(--gray-600); }
table tr:last-child td{ border-bottom:none; }

/* ---------- CTA band ---------- */
.cta-band{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  background:linear-gradient(135deg,var(--navy-900),var(--blue-700));
  color:var(--white); border-radius:var(--radius-lg); padding:44px 48px;
}
.cta-band h3{ font-size:22px; font-weight:800; }
.cta-band p{ margin-top:8px; color:rgba(255,255,255,0.75); font-size:14.5px; }
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Location ---------- */
.loc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.loc-card{ display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--gray-100); }
.loc-card .icon{ width:44px; height:44px; border-radius:12px; background:var(--bg-alt); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.loc-card h4{ font-size:15px; font-weight:800; color:var(--navy-900); margin-bottom:4px; }
.loc-card p{ font-size:14px; color:var(--gray-600); }
.loc-card a.email{ color:var(--blue-600); font-weight:700; }
.map-frame{ width:100%; aspect-ratio:4/3; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--gray-200); box-shadow:var(--shadow-sm); }
.map-frame iframe{ width:100%; height:100%; border:0; }
@media (max-width:900px){ .loc-grid{ grid-template-columns:1fr; } }

.form-card{ background:var(--bg-alt); border-radius:var(--radius-lg); padding:36px; }
.form-row{ display:grid; gap:8px; margin-bottom:18px; }
.form-row label{ font-size:13px; font-weight:700; color:var(--gray-700); }
.form-row input, .form-row textarea{
  width:100%; padding:13px 16px; border-radius:var(--radius-sm); border:1px solid var(--gray-200);
  font-family:inherit; font-size:14.5px; background:var(--white); resize:vertical;
}
.form-row input:focus, .form-row textarea:focus{ outline:2px solid var(--blue-500); outline-offset:1px; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-900); color:rgba(255,255,255,0.72); padding:64px 0 28px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ width:32px; height:32px; }
.footer-brand .name{ font-weight:800; color:var(--white); font-size:16px; }
.footer-desc{ font-size:13.5px; line-height:1.7; max-width:320px; }
.footer-col h5{ color:var(--white); font-size:13.5px; font-weight:800; margin-bottom:16px; }
.footer-col ul{ display:grid; gap:10px; }
.footer-col a{ font-size:13.5px; }
.footer-col a:hover{ color:var(--white); }
.footer-bottom{ padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:12.5px; color:rgba(255,255,255,0.45); }
@media (max-width:820px){ .footer-top{ grid-template-columns:1fr; } }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
