/* ===== Design tokens — Toss Blue 브랜드 컬러 기준 ===== */
:root{
  --ink:#202632;         /* Toss Gray */
  --ink-soft:#5B6472;
  --ink-faint:#97A0AD;
  --blue:#0064FF;        /* Toss Blue (공식 브랜드 컬러) */
  --blue-deep:#0050CC;
  --blue-tint:#EAF1FF;
  --sky:#EEF4FF;
  --sky-line:#D6E6FF;
  --white:#FFFFFF;
  --line:#E7EAEF;
  --good:#12B886;
  --moderate:#FFB020;
  --bad:#FF8A3D;
  --verybad:#FF4D4F;

  --mono:'JetBrains Mono', ui-monospace, monospace;
  --sans:'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:12px;
  --r-md:20px;
  --r-lg:28px;
  --r-pill:100px;

  --section-pad:clamp(64px, 10vw, 128px);
  --container-w:1120px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--white);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  word-break:keep-all;
  overflow-wrap:break-word;
}
img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}
ul{list-style:none;}

:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:3px;
  border-radius:4px;
}

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

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.02em;
  color:var(--blue);
  background:var(--sky);
  padding:7px 14px;
  border-radius:var(--r-pill);
}
.eyebrow-solid{
  color:var(--white);
  background:var(--blue);
}
.eyebrow-inverse{
  color:var(--white);
  background:rgba(255,255,255,0.16);
}

.section-pad{padding:var(--section-pad) 0;}
.section-tint{border-top:1px solid var(--line);}

h1,h2,h3{
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.2;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:15px 28px;
  border-radius:var(--r-pill);
  font-weight:700;
  font-size:15.5px;
  border:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--blue);
  color:var(--white);
  box-shadow:0 10px 24px -8px rgba(0,100,255,0.45);
}
.btn-primary:hover{background:var(--blue-deep); transform:translateY(-1px);}
.btn-ghost{
  background:var(--white);
  color:var(--ink);
  border:1px solid var(--line);
}
.btn-soft{
  background:var(--sky);
  color:var(--blue);
  border:1px solid transparent;
}
.btn-soft:hover{background:var(--sky-line); transform:translateY(-1px);}
.btn-ghost:hover{border-color:var(--ink-faint); transform:translateY(-1px);}

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

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1; transform:none; transition:none;}
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

/* ===== Header ===== */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.logo{
  font-weight:800; font-size:19px; letter-spacing:-0.02em;
  display:flex; align-items:center; gap:8px;
}
.logo-img{
  height:28px;
  width:auto;
  display:block;
}
.footer-col .logo-img{height:26px;}
.nav-links{
  display:flex; align-items:center; gap:36px;
  font-size:14.5px; font-weight:600; color:var(--ink-soft);
}
.nav-links a:hover{color:var(--ink);}
.nav-links a.active{color:var(--blue);}
.nav-cta{display:flex; align-items:center; gap:20px;}
.nav-cta .btn{padding:11px 22px; font-size:14.5px;}
.nav-toggle{display:none; background:none; border:none; padding:8px;}
.nav-toggle span{display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px;}

@media (max-width:860px){
  .nav-links{
    position:fixed; top:72px; left:0; right:0;
    background:var(--white); border-bottom:1px solid var(--line);
    flex-direction:column; align-items:flex-start; gap:0;
    padding:8px 24px 20px;
    transform:translateY(-8px);
    opacity:0; visibility:hidden;
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
    max-height:calc(100vh - 72px);
    overflow-y:auto;
  }
  .nav-links.open{opacity:1; transform:translateY(0); visibility:visible;}
  .nav-links a{padding:12px 0; width:100%; border-bottom:1px solid var(--line);}
  .nav-toggle{display:block;}
}

/* ===== Nav dropdown (서비스) ===== */
.nav-dropdown{position:relative;}
.dropdown-menu a{
  display:block;
  padding:10px 14px;
  border-radius:var(--r-sm);
  font-size:14px;
  font-weight:600;
  color:var(--ink-soft);
  white-space:nowrap;
}
.dropdown-menu a:hover{background:var(--sky); color:var(--blue);}

@media (min-width:861px){
  .dropdown-menu{
    position:absolute;
    top:100%; left:50%;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--r-md);
    box-shadow:0 20px 40px -16px rgba(32,38,50,0.18);
    padding:8px;
    min-width:220px;
    opacity:0; visibility:hidden;
    transform:translateX(-50%) translateY(4px);
    transition:opacity .18s ease, transform .18s ease, visibility .18s;
    z-index:110;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu{
    opacity:1; visibility:visible;
    transform:translateX(-50%) translateY(0);
  }
}

@media (max-width:860px){
  .nav-dropdown{width:100%;}
  .dropdown-menu{
    position:static;
    width:100%;
    opacity:1; visibility:visible; transform:none;
    box-shadow:none; border:none; border-radius:0;
    padding:0 0 0 16px;
    min-width:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
  }
  .dropdown-menu.open{max-height:260px; padding-bottom:4px;}
  .dropdown-menu a{
    padding:10px 0;
    font-size:13.5px;
    font-weight:500;
    color:var(--ink-soft);
    border-bottom:1px solid var(--line);
  }
  .dropdown-menu a:last-child{border-bottom:none;}
  .dropdown-overview-link{color:var(--blue); font-weight:700;}
}

/* ===== Hero (home) ===== */
.hero{
  padding:clamp(56px,9vw,110px) 0 var(--section-pad);
  background:var(--white);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
.hero h1{
  font-weight:900;
  font-size:clamp(36px, 4.8vw, 58px);
  letter-spacing:-0.04em;
  margin:22px 0 22px;
}
.hero-sub{
  font-size:clamp(16px,1.6vw,18.5px);
  color:var(--ink-soft);
  max-width:480px;
  margin-bottom:34px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap;}

/* Signature element: live-feeling measurement card */
.readout-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:28px 26px;
  box-shadow:0 30px 60px -24px rgba(32,38,50,0.16);
}
.readout-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:22px;
}
.readout-title{font-size:13.5px; font-weight:700; color:var(--ink-soft);}
.live-dot{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--mono); font-size:11.5px; font-weight:600;
  color:var(--good);
}
.live-dot::before{
  content:''; width:7px; height:7px; border-radius:50%;
  background:var(--good);
  animation:pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{opacity:1; box-shadow:0 0 0 0 rgba(18,184,134,0.35);}
  50%{opacity:0.55; box-shadow:0 0 0 6px rgba(18,184,134,0);}
}
.readout-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
  margin-bottom:20px;
}
.readout-item{
  background:var(--sky);
  border-radius:var(--r-md);
  padding:16px 16px 14px;
}
.readout-label{font-size:12px; color:var(--ink-soft); font-weight:600; margin-bottom:8px;}
.readout-value{
  font-family:var(--mono); font-weight:700;
  font-size:23px; color:var(--ink);
  letter-spacing:-0.02em;
}
.readout-value span{font-size:12.5px; font-weight:500; color:var(--ink-faint); margin-left:3px;}
.readout-status{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:16px; border-top:1px dashed var(--line);
}
.status-badge{
  font-family:var(--mono); font-size:12.5px; font-weight:700;
  color:var(--good); background:rgba(18,184,134,0.1);
  padding:5px 11px; border-radius:var(--r-sm);
}
.gauge{
  display:flex; gap:3px; height:6px; width:110px; border-radius:4px; overflow:hidden;
}
.gauge span{flex:1;}
.gauge .g1{background:var(--good);}
.gauge .g2{background:var(--moderate); opacity:0.35;}
.gauge .g3{background:var(--bad); opacity:0.35;}
.gauge .g4{background:var(--verybad); opacity:0.35;}
.readout-note{font-size:11px; color:var(--ink-faint); margin-top:14px;}

/* ===== Hero slide rotation (readout ↔ reference) ===== */
.hero-visual{display:grid;}
.hero-visual > .hero-slide{grid-area:1 / 1;}
.hero-visual .hero-slide{transition:opacity .5s ease;}
.hero-visual .hero-slide.is-hidden{opacity:0; pointer-events:none;}
.ref-quote{font-size:14.5px; color:var(--ink-soft); line-height:1.6; margin-bottom:20px;}
.ref-photo{
  width:100%; height:140px; border-radius:var(--r-md);
  margin-bottom:18px; overflow:hidden;
  background:var(--sky);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; color:var(--ink-faint);
}
.ref-photo img{width:100%; height:100%; object-fit:cover;}
.ref-photo span{font-size:12px; font-weight:600;}
.hero-dots{display:flex; justify-content:center; gap:8px; margin-top:18px;}
.hero-dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--line); border:none; padding:0; cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.hero-dot.active{background:var(--blue); transform:scale(1.3);}

@media (max-width:860px){
  .hero-grid{grid-template-columns:1fr; gap:40px;}
  .readout-card{max-width:420px;}
}

/* ===== Sub hero (inner pages) ===== */
.subhero{
  padding:clamp(48px,7vw,80px) 0 clamp(40px,6vw,64px);
  background:var(--sky);
  border-bottom:1px solid var(--line);
}
.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:var(--ink-faint); font-weight:600;
  margin-bottom:18px;
}
.breadcrumb a:hover{color:var(--blue);}
.breadcrumb .sep{color:var(--ink-faint);}
.breadcrumb .current{color:var(--ink-soft);}
.subhero h1{
  font-size:clamp(30px,4vw,44px);
  margin:14px 0 16px;
}
.subhero p{
  font-size:clamp(15px,1.4vw,17px);
  color:var(--ink-soft);
  max-width:640px;
}

/* ===== Section heading ===== */
.section-head{max-width:560px; margin-bottom:52px;}
.section-head h2{font-size:clamp(27px,3.2vw,38px); margin-top:14px;}
.section-head p{color:var(--ink-soft); font-size:16px; margin-top:12px;}
.section-head.center{max-width:640px; margin-left:auto; margin-right:auto; text-align:center;}

/* ===== Services ===== */
.services-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
}
.service-card{
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:32px 28px;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  border-color:var(--sky-line);
  box-shadow:0 20px 40px -24px rgba(32,38,50,0.18);
  transform:translateY(-2px);
}
a.service-card{display:block;}
.service-icon{
  width:46px; height:46px; border-radius:50%;
  background:var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.service-card h3{font-size:19px; margin-bottom:10px; font-weight:700; letter-spacing:-0.01em;}
.service-card p{color:var(--ink-soft); font-size:14.5px; line-height:1.6;}
.service-card .card-link{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:16px; font-size:13.5px; font-weight:700; color:var(--blue);
}

@media (max-width:720px){
  .services-grid{grid-template-columns:1fr;}
}

.services-grid-3{grid-template-columns:repeat(3,1fr);}
@media (max-width:960px){
  .services-grid-3{grid-template-columns:1fr 1fr;}
}
@media (max-width:720px){
  .services-grid-3{grid-template-columns:1fr;}
}

/* ===== Service finder (home only) ===== */
.finder-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
}
.finder-card{
  display:flex; flex-direction:column; gap:18px;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:28px;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.finder-card:hover{
  border-color:var(--blue);
  box-shadow:0 20px 40px -24px rgba(0,100,255,0.25);
  transform:translateY(-2px);
}
.finder-q{font-size:17px; font-weight:700; color:var(--ink); line-height:1.5;}
.finder-sub{display:block; margin-top:8px; font-size:13.5px; font-weight:500; color:var(--ink-faint);}
.finder-answer{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:700; color:var(--blue);
  margin-top:auto;
}
.finder-answer .arrow{transition:transform .2s ease;}
.finder-card:hover .finder-answer .arrow{transform:translateX(3px);}

@media (max-width:720px){
  .finder-grid{grid-template-columns:1fr;}
}

/* ===== Philosophy band — full-bleed Toss Blue signature section ===== */
.brand-band{
  background:var(--blue);
  color:var(--white);
}
.about-blurb{
  font-size:clamp(22px,2.6vw,30px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.5;
  max-width:760px;
  margin:18px 0 60px;
}
.about-blurb .accent{color:#CFE0FF;}
.about-grid{
  display:grid; grid-template-columns:1.1fr 0.9fr;
  gap:56px; align-items:center;
}
.about-illustration{display:flex; justify-content:center;}
.about-illustration svg{width:100%; max-width:380px; height:auto;}

@media (max-width:900px){
  .about-grid{grid-template-columns:1fr; gap:8px;}
  .about-illustration{order:-1; max-width:280px; margin:0 auto;}
}
.values-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border-top:1px solid rgba(255,255,255,0.18);
}
.value-card{
  padding:28px 26px 4px 0;
  border-left:1px solid rgba(255,255,255,0.18);
  padding-left:22px;
}
.value-card:first-child{border-left:none; padding-left:0;}
.value-num{
  font-family:var(--mono); font-size:12.5px; font-weight:600;
  color:#8FB8FF; margin-bottom:16px; display:block;
}
.value-card h3{font-size:17px; margin-bottom:8px; color:var(--white); font-weight:700;}
.value-card p{font-size:13.5px; color:rgba(255,255,255,0.78); line-height:1.6;}
.value-lead{font-size:14.5px; font-weight:700; color:var(--white); line-height:1.55; margin-bottom:10px;}

/* ===== Values list (editorial, Toss-style) ===== */
.values-list{border-top:1px solid rgba(255,255,255,0.18); margin-top:8px;}
.value-row{
  display:grid; grid-template-columns:56px 1fr;
  gap:28px;
  padding:48px 0;
  border-bottom:1px solid rgba(255,255,255,0.18);
}
.value-row-icon{
  width:56px; height:56px; border-radius:50%;
  background:rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.value-row-icon svg{width:24px; height:24px;}
.value-row-body .value-num{
  font-family:var(--mono); font-size:12.5px; font-weight:700;
  color:#8FB8FF; margin-bottom:10px; display:block;
}
.value-row-body h3{font-size:23px; color:var(--white); font-weight:800; margin-bottom:12px; letter-spacing:-0.02em;}
.value-row-body .value-lead{font-size:16.5px; font-weight:600; color:rgba(255,255,255,0.92); max-width:640px; margin-bottom:12px; line-height:1.6;}
.value-row-body p:not(.value-lead){font-size:14.5px; color:rgba(255,255,255,0.65); line-height:1.75; max-width:620px;}

@media (max-width:720px){
  .value-row{grid-template-columns:1fr; gap:14px; padding:36px 0;}
  .value-row-icon{width:48px; height:48px;}
  .value-row-icon svg{width:20px; height:20px;}
}

@media (max-width:860px){
  .values-grid{grid-template-columns:repeat(2,1fr); row-gap:28px;}
  .value-card:nth-child(3){border-left:none; padding-left:0;}
}
@media (max-width:540px){
  .values-grid{grid-template-columns:1fr; row-gap:26px;}
  .value-card{border-left:none !important; padding-left:0 !important; border-top:1px solid rgba(255,255,255,0.18); padding-top:24px;}
  .value-card:first-child{border-top:none; padding-top:0;}
}

/* ===== Process ===== */
.process-list{border-top:1px solid var(--line);}
.process-item{
  display:grid; grid-template-columns:56px 1fr;
  gap:24px; padding:32px 0;
  border-bottom:1px solid var(--line);
}
.process-num{
  font-family:var(--mono); font-size:15px; font-weight:700; color:var(--white);
  background:var(--blue); width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.process-item h3{font-size:18px; margin-bottom:8px;}
.process-item p{color:var(--ink-soft); font-size:14.5px; max-width:520px;}
.process-item .process-detail{
  margin-top:14px; display:flex; flex-wrap:wrap; gap:8px;
}
.process-item .process-detail span{
  font-size:12.5px; font-weight:600; color:var(--blue);
  background:var(--sky); padding:5px 12px; border-radius:var(--r-pill);
}

/* ===== Checklist grid (legal target facilities) ===== */
.checklist-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.checklist-card{
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:28px;
}
.checklist-card h3{font-size:17px; margin-bottom:18px; color:var(--blue); font-weight:800; letter-spacing:-0.01em;}
.checklist-card ul{display:flex; flex-direction:column; gap:13px;}
.checklist-card li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--ink-soft); line-height:1.5;
}
.checklist-card li svg{flex-shrink:0; margin-top:2px;}

@media (max-width:960px){
  .checklist-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .checklist-grid{grid-template-columns:1fr;}
}

/* ===== Info cards (about / contact) ===== */
.info-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
}
.info-card{
  border:1px solid var(--line); border-radius:var(--r-lg);
  padding:28px;
}
.info-card h3{font-size:16px; margin-bottom:14px; display:flex; align-items:center; gap:8px;}
.info-card dl{display:flex; flex-direction:column; gap:8px; font-size:14.5px;}
.info-card dl div{display:flex; gap:10px;}
.info-card dt{color:var(--ink-faint); width:56px; flex-shrink:0; font-weight:600;}
.info-card dd{color:var(--ink-soft);}
@media (max-width:720px){
  .info-grid{grid-template-columns:1fr;}
}
.info-grid-3{grid-template-columns:repeat(3,1fr);}
@media (max-width:860px){
  .info-grid-3{grid-template-columns:1fr;}
}

/* ===== Bullet list (info-card supplement) ===== */
.bullet-list{display:flex; flex-direction:column; gap:12px; font-size:14.5px; color:var(--ink-soft); line-height:1.6;}
.bullet-list li{position:relative; padding-left:16px;}
.bullet-list li::before{
  content:''; position:absolute; left:0; top:9px;
  width:5px; height:5px; border-radius:50%;
  background:var(--blue);
}

/* ===== FAQ accordion ===== */
.faq-list{border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%; text-align:left; background:none; border:none;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 2px; font-size:16px; font-weight:700; color:var(--ink);
}
.faq-q .plus{
  font-family:var(--mono); font-size:18px; color:var(--blue);
  transition:transform .2s ease; flex-shrink:0; margin-left:16px;
}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}
.faq-a{
  max-height:0; overflow:hidden;
  transition:max-height .25s ease;
}
.faq-a p{padding:0 2px 22px; color:var(--ink-soft); font-size:14.5px; line-height:1.7; max-width:680px;}
.faq-item.open .faq-a{max-height:1200px;}

/* ===== CTA / Contact ===== */
.cta-section{
  background:var(--ink);
  border-radius:var(--r-lg);
  color:var(--white);
  padding:clamp(48px,7vw,80px) clamp(28px,6vw,64px);
  margin:0 24px;
  display:flex; align-items:center; justify-content:space-between; gap:32px;
  flex-wrap:wrap;
}
.cta-section h2{font-size:clamp(24px,3vw,32px); color:var(--white); max-width:440px;}
.cta-section p{color:#A9B2C3; margin-top:12px; font-size:15px;}
.cta-contacts{display:flex; flex-direction:column; gap:10px; margin-top:22px; font-family:var(--mono); font-size:14px; color:#C7CEDB;}
.cta-contacts a{display:flex; align-items:center; gap:10px;}
.cta-contacts a:hover{color:#FFFFFF;}
.cta-contacts svg{flex-shrink:0;}
.cta-right{display:flex; flex-direction:column; gap:12px; align-items:flex-start;}
.cta-right .btn-primary{box-shadow:none;}
.cta-right .btn-ghost{background:transparent; color:var(--white); border-color:rgba(255,255,255,0.25);}
.cta-right .btn-ghost:hover{border-color:rgba(255,255,255,0.5);}

@media (max-width:720px){
  .cta-section{margin:0 16px; flex-direction:column; align-items:flex-start;}
}

/* ===== Contact form ===== */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.contact-form{
  display:flex; flex-direction:column; gap:16px;
}
.form-success{background:#EEF9F1; color:#1E8E4E; font-size:14px; font-weight:600; padding:14px 16px; border-radius:var(--r-sm);}
.form-error{background:#FFF1F0; color:var(--verybad); font-size:14px; font-weight:600; padding:14px 16px; border-radius:var(--r-sm);}
.form-row{display:flex; flex-direction:column; gap:8px;}
.form-row label{font-size:13.5px; font-weight:700; color:var(--ink);}
.form-row input, .form-row select, .form-row textarea{
  font-family:inherit; font-size:14.5px; color:var(--ink);
  border:1px solid var(--line); border-radius:var(--r-sm);
  padding:13px 16px; background:var(--white);
  transition:border-color .15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color:var(--blue);
}
.form-row textarea{resize:vertical; min-height:120px;}
.form-note{font-size:12.5px; color:var(--ink-faint); margin-top:4px;}
.form-consent{
  display:flex; align-items:flex-start; gap:10px;
  font-size:13.5px; color:var(--ink-soft); line-height:1.5;
}
.form-consent input{margin-top:3px; flex-shrink:0; width:16px; height:16px; accent-color:var(--blue);}
.form-consent a{color:var(--blue); font-weight:600;}

@media (max-width:860px){
  .contact-grid{grid-template-columns:1fr; gap:40px;}
}

/* ===== Footer ===== */
footer{padding:72px 0 40px; font-size:13.5px;}
.footer-grid{
  display:grid; grid-template-columns:1.4fr repeat(3,1fr);
  gap:32px; padding-bottom:40px; border-bottom:1px solid var(--line);
}
.footer-col h4{font-size:13px; color:var(--ink-faint); font-weight:700; margin-bottom:16px; letter-spacing:0.02em;}
.footer-col a, .footer-col li{color:var(--ink-soft); line-height:2;}
.footer-col a:hover{color:var(--ink);}
.footer-legal{
  padding-top:28px; color:var(--ink-faint); line-height:1.8; font-size:12.5px;
}
.placeholder{color:var(--blue);}

@media (max-width:720px){
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;}
}
