/* =========================================================
   Home Care website — v2 (editorial · sculptural · interactive)
   Concept A (hero) + C (services) + D (metric wall) language,
   plus matching nav, about, coverage, CTA, form, footer.
   ========================================================= */

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--hc-bg); color: var(--hc-fg-2); font-family: var(--hc-font-sans); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
section { padding: 120px 0; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hc-primary); margin-bottom: 20px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--hc-primary); }
.section-head { margin-bottom: 72px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: flex-end; }
.section-head .left { max-width: 720px; }
.section-head h2 { font-size: clamp(40px, 4.6vw, 64px); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; color: var(--hc-ink); margin: 0; }
.section-head h2 em { font-style: normal; color: var(--hc-primary); font-family: var(--hc-font-serif); font-weight: 600; }
.section-head .lead { font-size: 18px; line-height: 1.6; color: var(--hc-fg-3); margin: 20px 0 0; max-width: 560px; }

/* ---------- scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- buttons ---------- */
.btn { font-family: inherit; font-size: 15px; font-weight: 600; padding: 16px 28px; border-radius: 999px; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all 240ms cubic-bezier(.2,.7,.2,1); line-height: 1; text-decoration: none; }
.btn svg { width: 16px; height: 16px; transition: transform 200ms; }
.btn-primary { background: var(--hc-primary); color: #fff; }
.btn-primary:hover { background: var(--hc-primary-700); padding-right: 40px; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:active { background: var(--hc-primary-600); }
.btn-outline { background: transparent; color: var(--hc-ink); border: 1.5px solid var(--hc-ink); }
.btn-outline:hover { background: var(--hc-ink); color: #fff; }
.btn-on-dark { background: #fff; color: var(--hc-ink); }
.btn-on-dark:hover { background: var(--hc-primary); color: #fff; }
.btn-ghost-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- header ---------- */
.site-hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 300ms; }
.site-hdr.scrolled { background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--hc-border); }
.hdr-main { display: flex; align-items: center; gap: 40px; padding: 22px 0; transition: padding 300ms; }
.site-hdr.scrolled .hdr-main { padding: 14px 0; }
.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; display: block; transition: height 300ms; }
.site-hdr.scrolled .logo img { height: 34px; }
.nav { display: flex; gap: 36px; margin-left: auto; align-items: center; }
.nav > a, .nav-dd > a { color: var(--hc-ink); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 0; position: relative; cursor: pointer; }
.nav > a::after, .nav-dd > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 1.5px; background: var(--hc-primary); transform: scaleX(0); transform-origin: left; transition: transform 350ms cubic-bezier(.2,.7,.2,1); }
.nav > a:hover::after, .nav-dd:hover > a::after { transform: scaleX(1); }
.nav-dd { position: relative; }
.nav-dd > a svg { width: 10px; height: 10px; margin-left: 6px; transition: transform 200ms; }
.nav-dd:hover > a svg { transform: rotate(180deg); }
.mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); margin-top: 16px; width: 780px; background: #fff; border: 1px solid var(--hc-border); border-radius: 16px; box-shadow: 0 24px 56px rgba(43,31,69,0.16); padding: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; opacity: 0; visibility: hidden; transition: all 250ms cubic-bezier(.2,.7,.2,1); }
.nav-dd:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-item { display: flex; gap: 14px; padding: 16px; border-radius: 10px; transition: background 160ms; }
.mega-item:hover { background: var(--hc-bg-soft); }
.mega-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--hc-primary-100); color: var(--hc-primary); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 40px; transition: all 200ms; }
.mega-ic svg { width: 20px; height: 20px; }
.mega-item:hover .mega-ic { background: var(--hc-primary); color: #fff; }
.mega-t { font-size: 15px; font-weight: 700; color: var(--hc-ink); }
.mega-d { font-size: 13px; color: var(--hc-fg-3); margin-top: 3px; line-height: 1.45; }
.cta-hdr { padding: 12px 22px; background: var(--hc-ink); color: #fff; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; transition: all 200ms; }
.cta-hdr:hover { background: var(--hc-primary); padding-right: 28px; }
.cta-hdr::after { display: none !important; }

/* ---------- hero (Concept A) ---------- */
.hero { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 100vh; padding: 0; background: var(--hc-bg); position: relative; overflow: hidden; }
.hero-L { padding: 140px 64px 48px; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 2; }
.hero-eyebrow { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hc-ink); font-weight: 700; display: inline-flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--hc-primary); animation: drawLine 1.4s cubic-bezier(.2,.7,.2,1) .3s both; }
@keyframes drawLine { from { width: 0; opacity: 0; } to { width: 32px; opacity: 1; } }
.hero h1 { font-size: clamp(56px, 6.4vw, 96px); font-weight: 800; line-height: 0.96; letter-spacing: -0.035em; color: var(--hc-ink); margin: 28px 0 24px; }
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(28px); animation: wordUp .75s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 .word.coral { color: var(--hc-primary); }
.hero h1 .word:nth-child(1) { animation-delay: .15s; }
.hero h1 .word:nth-child(2) { animation-delay: .25s; }
.hero h1 .word:nth-child(3) { animation-delay: .35s; }
.hero h1 .word:nth-child(4) { animation-delay: .50s; }
.hero h1 .word:nth-child(5) { animation-delay: .60s; }
@keyframes wordUp { to { opacity: 1; transform: translateY(0); } }
.hero-sub { font-size: 19px; line-height: 1.55; color: var(--hc-fg-2); max-width: 480px; margin: 0; opacity: 0; animation: fadeIn .8s ease .9s forwards; }
.hero-cta { display: flex; gap: 14px; margin-top: 40px; opacity: 0; animation: fadeIn .8s ease 1.05s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero-metrics { display: flex; gap: 48px; padding-top: 36px; border-top: 1px solid var(--hc-border); opacity: 0; animation: fadeIn 1s ease 1.2s forwards; }
.hero-m-num { font-size: 44px; font-weight: 800; color: var(--hc-primary); line-height: 1; letter-spacing: -0.02em; font-feature-settings: 'tnum'; }
.hero-m-lbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hc-fg-3); margin-top: 8px; font-weight: 600; }
.hero-R { position: relative; overflow: hidden; background: var(--hc-ink); }
.hero-R img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; animation: imgIn 1.6s cubic-bezier(.2,.7,.2,1) both; }
@keyframes imgIn { from { transform: scale(1.18); opacity: 0; } to { transform: scale(1); opacity: 0.9; } }
.hero-R::after { content: ''; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(240,112,80,0.12) 0%, rgba(43,31,69,0.55) 100%); }
.hero-badge { position: absolute; right: 48px; top: 140px; background: #fff; padding: 14px 22px; border-radius: 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hc-ink); box-shadow: 0 24px 48px rgba(43,31,69,0.3); animation: badgeDrop .9s cubic-bezier(.2,.7,.2,1) 1.4s both; transform-origin: top right; z-index: 3; }
.hero-badge span { color: var(--hc-primary); }
@keyframes badgeDrop { from { opacity: 0; transform: translateY(-16px) rotate(-2deg); } to { opacity: 1; transform: translateY(0) rotate(-2deg); } }
.hero-ticker { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 48px; background: rgba(0,0,0,0.3); backdrop-filter: blur(14px); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; overflow: hidden; z-index: 3; }
.hero-ticker-track { display: flex; gap: 56px; white-space: nowrap; animation: tickerScroll 28s linear infinite; width: max-content; }
.hero-ticker-track span { display: inline-flex; align-items: center; gap: 14px; }
.hero-ticker-track span::before { content: '●'; color: var(--hc-primary); font-size: 8px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero-watermark { position: absolute; right: -80px; top: 45%; transform: translateY(-50%); font-size: 520px; font-weight: 800; color: var(--hc-primary); opacity: 0.06; letter-spacing: -0.08em; line-height: 0.8; pointer-events: none; z-index: 0; }

/* ---------- about snippet ---------- */
.about-snip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap .img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: var(--hc-bg-soft); }
.about-img-wrap .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.about-img-wrap:hover .img img { transform: scale(1.05); }
.about-seal { position: absolute; right: -24px; bottom: -24px; width: 160px; height: 160px; border-radius: 50%; background: var(--hc-ink); color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 20px; line-height: 1.35; animation: spin 22s linear infinite; }
.about-seal .dot { color: var(--hc-primary); }
@keyframes spin { to { transform: rotate(360deg); } }
.about-snip .txt h2 { font-size: clamp(36px, 3.8vw, 52px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: var(--hc-ink); margin: 0 0 24px; }
.about-snip .txt h2 em { font-style: normal; color: var(--hc-primary); font-family: var(--hc-font-serif); font-weight: 600; }
.about-snip .lead { font-size: 19px; line-height: 1.6; color: var(--hc-fg-2); margin: 0 0 20px; }
.about-snip .body { font-size: 16px; line-height: 1.7; color: var(--hc-fg-3); margin: 0 0 32px; }

/* ---------- metric wall (Concept D) — dark ---------- */
.metric-wall { background: var(--hc-ink); color: #fff; padding: 100px 0 0; overflow: hidden; }
.metric-wall .container { position: relative; }
.metric-wall .eyebrow { color: var(--hc-primary); position: relative; z-index: 1; }
.metric-wall .eyebrow::before { display: none; }
.metric-wall .eyebrow .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hc-primary); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(240,112,80,0.6); } 70% { box-shadow: 0 0 0 10px rgba(240,112,80,0); } }
.metric-wall h2 { font-size: clamp(40px, 4.4vw, 60px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; color: #fff; margin: 0 0 80px; max-width: 760px; position: relative; z-index: 1; }
.metric-wall h2 em { font-style: normal; color: var(--hc-primary); font-family: var(--hc-font-serif); font-weight: 600; }
.metric-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; opacity: 0.6; }
.metric-watermark { position: absolute; top: 40px; right: -80px; font-size: 460px; font-weight: 800; color: rgba(255,255,255,0.03); line-height: 0.8; letter-spacing: -0.06em; pointer-events: none; z-index: 0; }
.metric-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; position: relative; z-index: 1; }
.metric-stat { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.12); }
.metric-stat:last-child { border-right: 0; }
.metric-stat-num { font-size: clamp(72px, 8vw, 112px); font-weight: 800; line-height: 0.9; letter-spacing: -0.04em; color: #fff; font-feature-settings: 'tnum'; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 6px; }
.metric-stat-num .unit { font-size: 0.36em; color: var(--hc-primary); margin-top: 0.08em; font-weight: 700; }
.metric-stat-lbl strong { color: #fff; font-weight: 700; display: block; margin-bottom: 6px; font-size: 15px; letter-spacing: -0.005em; }
.metric-stat-lbl { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); font-weight: 500; }
.metric-wall-ftr { margin-top: 80px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 36px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; position: relative; z-index: 1; }
.metric-wall-ftr .sep { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.metric-wall-ftr-track { display: flex; gap: 48px; overflow: hidden; }
.metric-wall-ftr-track span { font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.35); font-family: var(--hc-font-serif); font-style: italic; text-transform: none; letter-spacing: 0; white-space: nowrap; }

/* ---------- services (Concept C) ---------- */
.services { background: var(--hc-bg-soft); }
.services .section-head h2 em { display: block; }
.services-nav { display: flex; gap: 10px; }
.services-nav button { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--hc-ink); background: transparent; color: var(--hc-ink); cursor: pointer; transition: all 220ms; display: flex; align-items: center; justify-content: center; }
.services-nav button:hover { background: var(--hc-ink); color: #fff; }
.services-nav button:disabled { opacity: 0.3; cursor: not-allowed; }
.services-nav svg { width: 18px; height: 18px; }
.services-track-wrap { overflow: hidden; margin: 0 -48px; padding: 0 48px; }
.services-track { display: grid; grid-template-columns: repeat(6, minmax(320px, 1fr)); gap: 20px; height: 560px; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.svc { position: relative; border-radius: 24px; overflow: hidden; cursor: pointer; background: var(--hc-ink); }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); opacity: 0.9; }
.svc:hover img { transform: scale(1.08); opacity: 1; }
.svc::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,31,69,0.15) 30%, rgba(43,31,69,0.85) 100%); transition: background 400ms; }
.svc:hover::after { background: linear-gradient(180deg, rgba(240,112,80,0.1) 20%, rgba(43,31,69,0.9) 100%); }
.svc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; color: #fff; z-index: 2; }
.svc-num { font-family: var(--hc-font-mono); font-size: 12px; opacity: 0.7; margin-bottom: 10px; display: block; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); }
.svc-t { font-size: 26px; font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 10px; color: #fff; transition: color 280ms; }
.svc:hover .svc-t { color: var(--hc-primary); }
.svc-sub { font-size: 14px; opacity: 0.85; line-height: 1.55; max-height: 0; overflow: hidden; transition: max-height 450ms cubic-bezier(.2,.7,.2,1), margin 450ms cubic-bezier(.2,.7,.2,1); margin: 0; color: rgba(255,255,255,0.95); }
.svc:hover .svc-sub { max-height: 160px; margin-top: 4px; }
.svc-arr { position: absolute; top: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 280ms cubic-bezier(.2,.7,.2,1); z-index: 3; }
.svc-arr svg { width: 18px; height: 18px; transition: transform 280ms; }
.svc:hover .svc-arr { background: var(--hc-primary); border-color: var(--hc-primary); transform: rotate(-45deg) scale(1.08); }
.svc-progress { display: flex; gap: 6px; margin-top: 48px; justify-content: center; }
.svc-progress span { width: 48px; height: 3px; background: var(--hc-border); border-radius: 3px; transition: background 300ms; }
.svc-progress span.active { background: var(--hc-primary); }

/* ---------- why ---------- */
.why { background: var(--hc-bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid var(--hc-border); border-radius: 20px; overflow: hidden; background: var(--hc-border); }
.why-item { padding: 40px; background: #fff; transition: all 300ms; position: relative; }
.why-item:hover { background: var(--hc-bg-soft); }
.why-num { font-family: var(--hc-font-mono); font-size: 12px; color: var(--hc-primary); letter-spacing: 0.12em; margin-bottom: 24px; font-weight: 700; }
.why-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--hc-primary-100); color: var(--hc-primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 300ms; }
.why-item:hover .why-ic { background: var(--hc-primary); color: #fff; transform: rotate(-8deg); }
.why-ic svg { width: 26px; height: 26px; }
.why-item h3 { font-size: 22px; font-weight: 700; color: var(--hc-ink); margin: 0 0 12px; letter-spacing: -0.015em; }
.why-item p { font-size: 15px; color: var(--hc-fg-3); line-height: 1.65; margin: 0; }

/* ---------- coverage ---------- */
.coverage { background: var(--hc-bg-soft); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coverage-map { background: var(--hc-ink); border-radius: 24px; aspect-ratio: 1.1/1; position: relative; overflow: hidden; padding: 32px; color: #fff; }
.coverage-map .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.coverage-map .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hc-primary); font-weight: 700; position: relative; z-index: 1; }
.coverage-map .country { position: absolute; inset: 18% 12% 12% 10%; z-index: 1; }
.coverage-map svg { width: 100%; height: 100%; }
.coverage-map .pin { position: absolute; opacity: 0; animation: pinIn .6s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes pinIn { to { opacity: 1; } }
.pin-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--hc-primary); box-shadow: 0 0 0 6px rgba(240,112,80,0.25); position: relative; }
.pin-dot::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--hc-primary); opacity: 0.3; animation: pinPulse 2s infinite; }
@keyframes pinPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2.2); opacity: 0; } }
.pin-name { font-size: 13px; font-weight: 600; margin-top: 6px; white-space: nowrap; color: #fff; }
.coverage-txt h2 { font-size: clamp(36px, 3.8vw, 52px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: var(--hc-ink); margin: 0 0 24px; }
.coverage-txt h2 em { font-style: normal; color: var(--hc-primary); font-family: var(--hc-font-serif); font-weight: 600; }
.coverage-txt p { font-size: 18px; line-height: 1.65; color: var(--hc-fg-2); margin: 0 0 32px; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; margin: 0 0 36px; padding: 0; list-style: none; }
.coverage-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--hc-ink); font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--hc-border); }
.coverage-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--hc-primary); }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--hc-ink); color: #fff; position: relative; overflow: hidden; border-radius: 24px; padding: 80px 64px; margin: 0 auto; max-width: 1360px; }
.cta-banner::before { content: ''; position: absolute; top: -160px; right: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(240,112,80,0.35), transparent 65%); }
.cta-banner .eyebrow { color: var(--hc-primary); }
.cta-banner .inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.cta-banner h2 { font-size: clamp(36px, 3.8vw, 52px); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; color: #fff; margin: 0 0 20px; }
.cta-banner h2 em { font-style: normal; color: var(--hc-primary); font-family: var(--hc-font-serif); font-weight: 600; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0 0 32px; max-width: 520px; }
.cta-banner .phone { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hc-primary); font-weight: 700; margin-bottom: 10px; }
.cta-banner .phone-num { font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 28px; display: block; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-side { padding: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; backdrop-filter: blur(10px); }

/* ---------- form ---------- */
.form-sec { background: var(--hc-bg); }
.form-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.form-wrap .txt h2 { font-size: clamp(36px, 3.6vw, 52px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: var(--hc-ink); margin: 0 0 24px; }
.form-wrap .txt h2 em { font-style: normal; color: var(--hc-primary); font-family: var(--hc-font-serif); font-weight: 600; }
.form-wrap .txt p { font-size: 17px; line-height: 1.65; color: var(--hc-fg-2); margin: 0 0 32px; }
.contact-list { display: grid; gap: 20px; }
.contact-row { display: flex; gap: 16px; font-size: 15px; color: var(--hc-fg-2); line-height: 1.55; }
.contact-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--hc-primary-100); color: var(--hc-primary); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 44px; }
.contact-row svg { width: 20px; height: 20px; }
.contact-row strong { display: block; color: var(--hc-ink); font-weight: 700; font-size: 15px; margin-bottom: 3px; letter-spacing: 0.01em; }

.form-card { background: #fff; border: 1px solid var(--hc-border); border-radius: 20px; padding: 44px; box-shadow: 0 18px 48px rgba(43,31,69,0.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--hc-ink); letter-spacing: 0.02em; }
.field .req { color: var(--hc-primary); margin-left: 2px; }
.inp, .sel, .txa { font-family: inherit; font-size: 15px; height: 52px; padding: 0 16px; background: #fff; border: 1.5px solid var(--hc-border); border-radius: 10px; color: var(--hc-ink); transition: all 200ms; outline: none; }
.txa { height: auto; min-height: 128px; padding: 14px 16px; line-height: 1.55; resize: vertical; }
.inp::placeholder, .txa::placeholder { color: var(--hc-fg-4); }
.inp:focus, .sel:focus, .txa:focus { border-color: var(--hc-primary); box-shadow: 0 0 0 4px rgba(240,112,80,0.12); }
.sel { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.chk { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--hc-fg-2); line-height: 1.55; cursor: pointer; margin-top: 8px; }
.chk input { appearance: none; width: 20px; height: 20px; border: 1.5px solid var(--hc-border-strong); border-radius: 5px; margin-top: 1px; cursor: pointer; position: relative; flex: 0 0 20px; transition: all 180ms; }
.chk input:checked { background: var(--hc-primary); border-color: var(--hc-primary); }
.chk input:checked::after { content: ''; position: absolute; left: 5px; top: 1px; width: 6px; height: 11px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.chk a { color: var(--hc-primary); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { margin-top: 16px; width: 100%; justify-content: center; padding: 18px 28px; font-size: 16px; }

/* ---------- footer ---------- */
.site-ftr { background: var(--hc-bg-dark); color: rgba(255,255,255,0.7); padding: 96px 0 32px; position: relative; overflow: hidden; }
.ftr-watermark { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); font-size: 360px; font-weight: 800; color: rgba(255,255,255,0.02); line-height: 0.8; letter-spacing: -0.06em; pointer-events: none; white-space: nowrap; }
.ftr-main { padding-bottom: 56px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; position: relative; z-index: 1; }
.ftr-main h4 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 22px; }
.ftr-main ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ftr-main a { color: rgba(255,255,255,0.65); font-size: 14px; transition: all 160ms; }
.ftr-main a:hover { color: var(--hc-primary); padding-left: 6px; }
.ftr-brand .logo img { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 22px; }
.ftr-brand p { font-size: 14px; line-height: 1.65; max-width: 360px; }
.ftr-social { display: flex; gap: 10px; margin-top: 24px; }
.ftr-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: all 220ms; }
.ftr-social a:hover { background: var(--hc-primary); border-color: var(--hc-primary); transform: translateY(-3px); padding-left: 0; }
.ftr-social svg { width: 16px; height: 16px; }
.ftr-contact .line { display: flex; gap: 12px; font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
.ftr-contact .line svg { width: 16px; height: 16px; color: var(--hc-primary); flex: 0 0 16px; margin-top: 3px; }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0 0; display: flex; gap: 24px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; position: relative; z-index: 1; }
.ftr-bottom .spacer { flex: 1; }
.ftr-bottom a { color: rgba(255,255,255,0.45); font-size: 13px; }
.ftr-bottom a:hover { color: var(--hc-primary); }

/* ---------- floating CTA ---------- */
.float-cta { position: fixed; right: 24px; bottom: 24px; z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.float-cta a { width: 56px; height: 56px; border-radius: 50%; background: var(--hc-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 16px 32px rgba(240,112,80,0.4); transition: all 220ms; }
.float-cta a:hover { background: var(--hc-primary-700); transform: translateY(-3px) scale(1.05); }
.float-cta svg { width: 22px; height: 22px; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  section { padding: 80px 0; }
  .container { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-R { min-height: 400px; }
  .hero-L { padding: 120px 32px 60px; }
  .hero-watermark { display: none; }
  .about-snip, .coverage-grid, .cta-banner .inner, .form-wrap { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; }
  .metric-stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .metric-stat:nth-child(2) { border-right: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .ftr-main { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 56px 40px; border-radius: 20px; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav > a:not(.cta-hdr):not(.nav-dd-a), .nav-dd { display: none; }
  .form-grid, .ftr-main, .coverage-list { grid-template-columns: 1fr; }
  .metric-stats { grid-template-columns: 1fr; gap: 32px; }
  .metric-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 32px; }
  .metric-stat:last-child { border-bottom: 0; }
  .form-card { padding: 28px; }
  .services-track { height: 480px; }
  .about-seal { width: 120px; height: 120px; right: -12px; bottom: -12px; font-size: 10px; }
  .hero-badge { top: 110px; right: 20px; padding: 10px 14px; font-size: 11px; }
  .hero-metrics { gap: 24px; }
  .hero-m-num { font-size: 32px; }
}
