:root {
  --ink:          #142038;
  --ink-soft:     #4a4a4a;
  --ink-faint:    #9a9a9a;
  --navy:         #1a2540;
  --gold:         #b49640;
  --cream:        #faf8f5;
  --cream-d:      #f2ede6;
  --white:        #ffffff;
  --acc:          #c8602a;
  --acc-lt:       #f2e0d5;
  --acc-dk:       #a04820;
  --bdr:          #e5e0d9;
  --serif:        'DM Serif Display', Georgia, serif;
  --sans:         'DM Sans', system-ui, sans-serif;
  --r:            12px;
  --r-lg:         20px;
  --r-xl:         28px;
  --sh:           0 2px 16px rgba(0,0,0,.05);
  --sh-md:        0 6px 30px rgba(0,0,0,.09);
  --sh-lg:        0 16px 56px rgba(0,0,0,.13);
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer:  cubic-bezier(0.32, 0.72, 0, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; }
img  { max-width: 100%; display: block; height: auto; }
a    { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }

.label-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--acc); margin-bottom: 14px; }
.label-tag::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--acc); }
.display  { font-family: var(--serif); font-size: clamp(2.4rem, 5.5vw, 4.8rem); line-height: 1.06; letter-spacing: -.025em; }
.headline { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.12; letter-spacing: -.02em; }
.body-lg  { font-size: clamp(.93rem,1.5vw,1.07rem); color: var(--ink-soft); line-height: 1.75; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-weight: 600; font-size: .875rem; cursor: pointer; border: none;
  transition: background 180ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out);
  white-space: nowrap; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .btn:hover svg { transform: translateX(3px); } }
.btn:active { transform: scale(0.97); }
.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover  { background: #1e3454; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn-acc   { background: var(--acc-dk); color: #fff; font-weight: 700; }
.btn-acc:hover   { background: #8a3f1c; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(160,72,32,.4); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--bdr); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: .8rem; }
.btn-lg { padding: 15px 34px; font-size: .9375rem; }

.card { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-lg); box-shadow: var(--sh); }
.section     { padding: clamp(64px,9vw,112px) 0; }
.section-alt { background: var(--white); }
.section-dk  { background: var(--ink); color: #fff; }
.section-head { margin-bottom: clamp(40px,6vw,72px); }
.section-head .body-lg { margin-top: 14px; max-width: 520px; }

#hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: 68px;
  display: flex; align-items: center;
  padding: 0 max(clamp(20px,5vw,48px), env(safe-area-inset-right, 0px)) 0 max(clamp(20px,5vw,48px), env(safe-area-inset-left, 0px));
  background: rgba(250,248,245,.9);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--bdr);
  transition: box-shadow 200ms var(--ease-out);
}
#hdr.scrolled { box-shadow: var(--sh-md); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.logo-img-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 200px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--ink-soft); position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1.5px; background: var(--acc); transform: scaleX(0); transform-origin: left; transition: transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); }
}
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-tel { padding: 8px 14px; gap: 6px; }
.nav-tel svg { width: 14px; height: 14px; }
.nav-tel-num { font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
@media (max-width: 1180px) { .nav-tel-num { display: none; } .nav-tel { padding: 8px 10px; } }

.hbg { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; cursor: pointer; border: none; background: none; -webkit-tap-highlight-color: transparent; padding: 4px; border-radius: 8px; }
.hbg span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 220ms var(--ease-out), opacity 180ms; transform-origin: center; }
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer { display: none; position: fixed; inset: 68px 0 0 0; z-index: 190; background: var(--cream); flex-direction: column; padding: 24px clamp(20px,5vw,48px) 48px; overflow-y: auto; border-top: 1px solid var(--bdr); animation: dIn 250ms var(--ease-drawer); }
.drawer.open { display: flex; }
@keyframes dIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
.drawer a { display: block; padding: 16px 0; font-size: 1.2rem; font-weight: 500; border-bottom: 1px solid var(--bdr); color: var(--ink); transition: color 160ms, padding-left 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .drawer a:hover { color: var(--acc); padding-left: 6px; } }
.drawer-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; padding-top: 12px; }
.drawer-cta .btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 1rem; font-weight: 600; border-radius: 14px; letter-spacing: -.005em; }
.drawer-cta .btn-acc { background: var(--ink); color: #fff !important; border: none; }
.drawer-cta .btn-acc:hover { background: #1e3454; }
.drawer-cta .btn-tel { background: var(--acc-lt); color: var(--acc-dk) !important; display: inline-flex; align-items: center; gap: 10px; }
.drawer-cta .btn-tel:hover { background: var(--acc); color: #fff !important; }
.drawer-cta .btn-tel svg { width: 18px; height: 18px; }

#hero { min-height: 100dvh; background: #142038; display: grid; align-items: center; padding: calc(68px + clamp(40px,8vw,80px)) clamp(20px,5vw,48px) clamp(60px,8vw,100px); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg::before { content: ''; position: absolute; top: -15%; right: -10%; width: clamp(300px,50vw,700px); height: clamp(300px,50vw,700px); border-radius: 50%; background: radial-gradient(circle, rgba(200,96,42,.22) 0%, transparent 65%); animation: orb1 14s ease-in-out 1s infinite; }
.hero-bg::after  { content: ''; position: absolute; bottom: 0%; left: -10%; width: clamp(200px,35vw,500px); height: clamp(200px,35vw,500px); border-radius: 50%; background: radial-gradient(circle, rgba(200,96,42,.1) 0%, transparent 70%); animation: orb2 18s ease-in-out 1s infinite; }
@keyframes orb1 { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-30px, 20px, 0); } }
@keyframes orb2 { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(20px,-30px,0); } }
@media (max-width: 640px) { .hero-bg::before, .hero-bg::after { animation: none; opacity: 0.6; } }
.hero-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr clamp(280px,38%,460px); gap: clamp(40px,6vw,96px); align-items: center; max-width: 1160px; margin: 0 auto; width: 100%; }
.hero-title { margin-bottom: 20px; color: #fff; }
.ht-grad { background: linear-gradient(135deg, #fff 0%, #fff 50%, #ffcd75 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub   { margin-bottom: 38px; max-width: 500px; color: rgba(255,255,255,.55); }
.hero-acts  { display: flex; flex-wrap: wrap; gap: 12px; }
#hero .btn-ghost { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); }
@media (hover:hover) and (pointer:fine) { #hero .btn-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.12); transform: translateY(-1px); } }

.gh-right { display: flex; flex-direction: column; gap: 14px; }
.gh-card { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); padding: 28px; backdrop-filter: blur(10px) saturate(140%); -webkit-backdrop-filter: blur(10px) saturate(140%); box-shadow: 0 24px 64px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.09); }
.gh-card-glow { position: absolute; top: -50px; right: -50px; width: 160px; height: 160px; border-radius: 50%; background: rgba(200,96,42,.08); pointer-events: none; }
.gh-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.gh-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gh-icon svg { width: 22px; height: 22px; color: #fff; }
.gh-num { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: #fff; line-height: 1; }
.gh-num-lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 3px; }
.gh-progress-hd { display: flex; justify-content: space-between; margin-bottom: 7px; font-size: .78rem; }
.gh-progress-hd span:first-child { color: rgba(255,255,255,.65); }
.gh-progress-hd span:last-child { color: #fff; font-weight: 600; }
.gh-progress-track { height: 5px; border-radius: 100px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 22px; }
.gh-progress-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.55) 100%); width: 0; transition: width 1.4s cubic-bezier(0.23,1,0.32,1); }
.gh-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 18px; }
.gh-mini { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; text-align: center; margin-bottom: 20px; }
.gh-mini-sep { background: rgba(255,255,255,.08); }
.gh-mini-val { font-size: 1rem; font-weight: 700; color: #fff; display: block; }
.gh-mini-lbl { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.58); margin-top: 2px; display: block; }
.gh-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.gh-pill { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); padding: 4px 12px; border-radius: 100px; font-size: .65rem; font-weight: 700; letter-spacing: .07em; color: rgba(255,255,255,.6); }
.gh-dot { position: relative; width: 7px; height: 7px; flex-shrink: 0; }
.gh-dot::after  { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #22c55e; }
.gh-dot::before { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: rgba(34,197,94,.3); animation: gPing 1.5s cubic-bezier(0,0,.2,1) infinite; }
@keyframes gPing { 75%,100% { transform: scale(2.2); opacity: 0; } }

.gh-mcard { overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); padding: 22px 0 20px; backdrop-filter: blur(10px) saturate(140%); -webkit-backdrop-filter: blur(10px) saturate(140%); }
.gh-mcard-lbl { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.35); margin-bottom: 14px; padding: 0 24px; }
.gh-mtrack-wrap { position: relative; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.gh-mtrack { display: flex; gap: 32px; width: max-content; animation: ghTick 26s linear infinite; will-change: transform; padding: 0 16px; }
@keyframes ghTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gh-mitem { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; opacity: .38; cursor: default; transition: opacity 200ms; }
@media (hover:hover) and (pointer:fine) { .gh-mitem:hover { opacity: 1; } }
.gh-mitem svg { width: 15px; height: 15px; color: #fff; flex-shrink: 0; }
.gh-mitem span { font-size: .85rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }

@keyframes ghIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.gh-in { animation: ghIn 0.75s var(--ease-out) both; }
.gh-d1 { animation-delay: .1s; } .gh-d2 { animation-delay: .22s; } .gh-d3 { animation-delay: .34s; } .gh-d4 { animation-delay: .46s; } .gh-d5 { animation-delay: .58s; }

.ticker { background: var(--ink); overflow: hidden; padding: 14px 0; user-select: none; }
.ticker-track { display: flex; width: max-content; animation: tick 30s linear infinite; will-change: transform; }
.ticker-item { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); padding: 0 36px; border-right: 1px solid rgba(255,255,255,.12); white-space: nowrap; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.features-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--bdr); border-radius: var(--r-xl); overflow: hidden; }
.feature { padding: clamp(30px,4vw,52px) clamp(22px,3.5vw,44px); border-right: 1px solid var(--bdr); transition: background 180ms; }
.feature:last-child { border-right: none; }
@media (hover: hover) and (pointer: fine) { .feature:hover { background: var(--cream); } }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--acc-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 24px; height: 24px; color: var(--acc); }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.feature-desc  { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }

.svc-header { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,40px); align-items: end; margin-bottom: clamp(36px,5vw,64px); }
.svc-grid   { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(14px,2vw,22px); }
.svc-card   { padding: clamp(26px,3.5vw,44px) clamp(22px,3vw,40px); border-radius: var(--r-xl); display: flex; flex-direction: column; gap: 13px; position: relative; overflow: hidden; transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out); }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--acc), var(--acc-dk)); transform: scaleX(0); transform-origin: left; transition: transform 280ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
  .svc-card:hover::before { transform: scaleX(1); }
}
.svc-tag  { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 100px; background: var(--acc-lt); color: var(--acc-dk); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; width: fit-content; }
.svc-name { font-family: var(--serif); font-size: clamp(1.2rem,2.2vw,1.65rem); }
.svc-desc { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; flex: 1; }
.svc-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cream-d); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.svc-icon svg { width: 22px; height: 22px; color: var(--acc); }
.svc-price { font-size: .82rem; font-weight: 600; color: var(--acc); margin-top: 8px; letter-spacing: .01em; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 600; color: var(--ink); margin-top: auto; transition: color 160ms, gap 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .svc-link:hover { color: var(--acc); gap: 10px; } }

.stats-section { background: var(--navy); color: #fff; padding: clamp(48px,7vw,80px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-num { font-family: var(--serif); font-size: clamp(2rem,4vw,3.5rem); color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: .875rem; color: rgba(255,255,255,.7); }

.proc-header { max-width: 640px; margin-bottom: clamp(28px,4vw,48px); }
.proc-shell { display: grid; grid-template-columns: 96px 1fr; gap: clamp(24px,3vw,48px); align-items: start; }
.proc-progress-vert { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; align-self: start; height: fit-content; }
.proc-progress-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.proc-progress-percent { font-family: var(--serif); font-size: clamp(1.5rem,2.5vw,2.2rem); font-weight: 400; color: var(--acc); line-height: 1; letter-spacing: -.015em; }
.proc-progress-track { width: 4px; height: clamp(280px,38vh,520px); background: var(--bdr); border-radius: 100px; overflow: hidden; position: relative; margin-top: 12px; }
.proc-progress-fill { --p: 0%; position: absolute; inset: 0 0 auto 0; width: 100%; height: var(--p); background: linear-gradient(180deg, var(--acc) 0%, var(--acc-dk) 100%); border-radius: 100px; transition: height 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.proc-list { display: flex; flex-direction: column; gap: clamp(14px,2vw,22px); }
.proc-step-card { --scale: 0.94; --op: 0; display: grid; grid-template-columns: clamp(70px,8vw,110px) 1fr; gap: clamp(16px,2.5vw,32px); align-items: start; padding: clamp(22px,3vw,38px); background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-xl); box-shadow: var(--sh); opacity: var(--op); transform: scale(var(--scale)); transform-origin: center; transition: border-color 360ms var(--ease-out), box-shadow 420ms var(--ease-out), filter 360ms var(--ease-out); filter: saturate(.55); }
.proc-step-card.current { border-color: var(--acc); box-shadow: 0 22px 60px rgba(20,32,56,.14), 0 4px 18px rgba(200,96,42,.16); filter: none; z-index: 2; }
.proc-step-card.current .proc-num { color: var(--acc); }
.proc-step-card:not(.current) .proc-num { color: var(--ink-faint); }
.proc-step-card .proc-num { font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,3.4rem); line-height: 1; letter-spacing: -.02em; }
.proc-step-card .proc-body { display: flex; flex-direction: column; gap: 10px; }
.proc-step-card .proc-name { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.15; letter-spacing: -.018em; color: var(--ink); }
.proc-step-card .proc-desc { font-size: clamp(.95rem,1.5vw,1.07rem); color: var(--ink-soft); line-height: 1.7; max-width: 560px; }
@media (max-width: 768px) {
  .proc-shell { grid-template-columns: 1fr; gap: 24px; }
  .proc-progress-vert { position: relative; top: auto; flex-direction: row; align-items: center; gap: 14px; width: 100%; }
  .proc-progress-label { order: 1; flex-shrink: 0; }
  .proc-progress-percent { order: 2; flex-shrink: 0; font-size: 1.4rem; }
  .proc-progress-track { order: 3; width: 100%; height: 4px; margin-top: 0; flex: 1; }
  .proc-progress-fill { width: var(--p); height: 100%; inset: 0 auto 0 0; transition: width 700ms cubic-bezier(0.22, 1, 0.36, 1); background: linear-gradient(90deg, var(--acc) 0%, var(--acc-dk) 100%); }
  .proc-step-card { grid-template-columns: 1fr; padding: 22px; gap: 10px; }
  .proc-step-card .proc-num { font-size: 2rem; }
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,2vw,22px); margin-top: clamp(36px,5vw,64px); }
.port-card { border-radius: var(--r-xl); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--cream-d); border: 1px solid var(--bdr); transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .port-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); } }
.port-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; }
.port-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-md); }
.port-icon svg { width: 28px; height: 28px; color: var(--acc); }
.port-label { font-size: .875rem; font-weight: 700; text-align: center; color: var(--ink-soft); }
.port-tag { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--acc); background: var(--acc-lt); padding: 3px 10px; border-radius: 100px; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,2vw,22px); margin-top: clamp(36px,5vw,64px); }
.testi-card { padding: clamp(24px,3vw,36px); border-radius: var(--r-xl); display: flex; flex-direction: column; gap: 16px; }
.testi-stars { display: flex; gap: 4px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testi-text { font-size: .9375rem; color: var(--ink-soft); line-height: 1.75; font-style: italic; flex: 1; }
.testi-text::before { content: '\201C'; }
.testi-text::after  { content: '\201D'; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--acc-lt); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: var(--acc-dk); flex-shrink: 0; }
.testi-name  { font-weight: 700; font-size: .875rem; }
.testi-role  { font-size: .78rem; color: var(--ink-faint); }

.testi-single-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(14px,2vw,22px); align-items: stretch; }
.testi-featured { padding: clamp(28px,4vw,44px); }
.testi-featured-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.testi-site-link { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 600; color: var(--acc); transition: color 160ms; }
@media (hover: hover) and (pointer: fine) { .testi-site-link:hover { color: var(--acc-dk); } }
.testi-featured-text { font-size: 1rem; line-height: 1.8; color: var(--ink-soft); font-style: italic; margin-bottom: 24px; }
.testi-featured-text::before { content: '\201C'; }
.testi-featured-text::after  { content: '\201D'; }
.testi-avatar-lg { width: 48px; height: 48px; font-size: 1rem; }
.testi-placeholder { display: flex; align-items: center; justify-content: center; border: 2px dashed var(--bdr) !important; background: transparent !important; box-shadow: none !important; }
.testi-placeholder-inner { text-align: center; padding: 32px 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.testi-ph-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--acc-lt); display: grid; place-items: center; }
.testi-ph-icon svg { width: 24px; height: 24px; color: var(--acc); }
.testi-ph-text { font-weight: 700; font-size: 1rem; color: var(--ink); }
.testi-ph-sub { font-size: .875rem; color: var(--ink-faint); max-width: 200px; }

.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, #0d0d0d 100%); color: #fff; border-radius: var(--r-xl); padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -40%; right: -10%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(200,96,42,.18) 0%, transparent 70%); }
.cta-banner .headline { color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner .body-lg  { color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto 32px; position: relative; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; }

.port-featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-xl); padding: clamp(32px, 4vw, 56px); box-shadow: var(--sh-md); }
.port-client-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #16a34a; background: #d4f4e8; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.port-featured-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 4px; }
.port-client-name { font-size: .875rem; color: var(--acc); font-weight: 600; margin-bottom: 16px; }
.port-featured-desc { font-size: .9375rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 20px; }
.port-tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.port-pill { padding: 5px 13px; background: var(--cream-d); border-radius: 100px; font-size: .78rem; font-weight: 600; color: var(--ink-soft); }
.port-results { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.port-result-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.port-result-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.port-btn { align-self: flex-start; }

.mockup-browser { background: var(--white); border: 1px solid var(--bdr); border-radius: 14px; overflow: hidden; box-shadow: var(--sh-lg); }
.mockup-bar { display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: var(--cream-d); border-bottom: 1px solid var(--bdr); }
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mockup-url { flex: 1; background: var(--white); border-radius: 6px; padding: 4px 10px; font-size: .72rem; color: var(--ink-faint); font-family: monospace; border: 1px solid var(--bdr); }
.mockup-page { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mp-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mp-logo-bar { width: 80px; height: 10px; background: var(--navy); border-radius: 4px; }
.mp-nav-links { display: flex; align-items: center; gap: 8px; }
.mp-link { width: 36px; height: 8px; background: var(--bdr); border-radius: 3px; }
.mp-btn-sm { width: 52px; height: 20px; background: var(--acc); border-radius: 100px; }
.mp-hero { display: flex; flex-direction: column; gap: 8px; padding: 12px 0; }
.mp-badge { width: 100px; height: 16px; background: var(--acc-lt); border-radius: 100px; }
.mp-h1-a { width: 85%; height: 14px; background: var(--ink); border-radius: 4px; opacity: .85; }
.mp-h1-b { width: 60%; height: 14px; background: var(--acc); border-radius: 4px; }
.mp-body { width: 95%; height: 8px; background: var(--bdr); border-radius: 3px; }
.mp-body-short { width: 70%; }
.mp-ctas { display: flex; gap: 8px; margin-top: 4px; }
.mp-cta-primary { width: 90px; height: 24px; background: var(--acc); border-radius: 100px; }
.mp-cta-ghost { width: 80px; height: 24px; background: transparent; border: 1.5px solid var(--bdr); border-radius: 100px; }
.mp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mp-card { background: var(--cream-d); border-radius: 8px; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.mp-card-icon { width: 24px; height: 24px; background: var(--acc-lt); border-radius: 6px; }
.mp-card-text { width: 100%; height: 7px; background: var(--bdr); border-radius: 3px; }
.mp-card-text.mp-short { width: 60%; }
.mockup-rating { position: absolute; bottom: -18px; right: 16px; background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r); padding: 10px 16px; box-shadow: var(--sh-md); display: flex; flex-direction: column; gap: 2px; }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-text { font-size: .72rem; color: var(--ink-soft); font-weight: 600; }

.port-next-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 64px); background: linear-gradient(135deg, var(--navy) 0%, #0d1a38 100%); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 36px); color: #fff; }
.port-next-left { display: flex; align-items: center; gap: 18px; }
.port-next-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.port-next-icon svg { width: 24px; height: 24px; color: var(--gold); }
.port-next-label { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.port-next-sub { font-size: .875rem; color: rgba(255,255,255,.65); }

.faq-layout { display: grid; grid-template-columns: 320px 1fr; gap: clamp(36px,6vw,80px); align-items: start; margin-top: clamp(40px,5vw,64px); }
.faq-sticky { position: sticky; top: 86px; }
.faq-sticky .body-lg { margin-top: 12px; margin-bottom: 26px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r); overflow: hidden; }
.faq-q { padding: 19px 21px; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: .9375rem; font-weight: 600; cursor: pointer; transition: background 160ms; user-select: none; }
.faq-q-btn { width: 100%; text-align: left; background: none; border: none; font-family: var(--sans); color: var(--ink); min-height: 44px; }
@media (hover: hover) and (pointer: fine) { .faq-q:hover { background: var(--cream); } }
.faq-tog { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; background: var(--cream-d); border: 1px solid var(--bdr); display: grid; place-items: center; font-size: .85rem; transition: background 200ms var(--ease-out), border-color 200ms, color 180ms, transform 220ms var(--ease-out); }
.faq-item.open .faq-tog { background: var(--acc); border-color: var(--acc); color: #fff; transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms cubic-bezier(0.4,0,0.2,1), padding 180ms cubic-bezier(0.4,0,0.2,1); font-size: .9rem; color: var(--ink-soft); line-height: 1.75; padding: 0 21px; }
.faq-a-inner { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; padding: 0 21px 20px; }

.bk-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.bk-label { color: var(--acc); }
.bk-title { color: #fff; margin-bottom: 14px; }
.bk-body  { color: rgba(255,255,255,.62); max-width: 400px; }
.bk-chips { display: flex; flex-direction: column; gap: 11px; margin-top: 34px; }
.bk-chip  { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--r); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); font-size: .875rem; color: rgba(255,255,255,.82); transition: background 160ms; }
@media (hover: hover) and (pointer: fine) { .bk-chip:hover { background: rgba(255,255,255,.1); } }
.ci svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }

.bk-form { background: var(--white); border-radius: var(--r-xl); padding: clamp(26px,4vw,52px); box-shadow: var(--sh-lg); color: var(--ink); }
.step-ind { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.sdot { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; font-size: .76rem; font-weight: 700; background: var(--cream-d); color: var(--ink-faint); border: 2px solid var(--bdr); transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), color 180ms; flex-shrink: 0; }
.sdot.active { background: var(--acc); color: #fff; border-color: var(--acc); }
.sdot.done   { background: var(--ink); color: #fff; border-color: var(--ink); }
.sline { flex: 1; height: 2px; background: var(--bdr); transition: background 300ms var(--ease-out); }
.sline.done { background: var(--ink); }
.fstep { display: none; animation: stepIn 220ms var(--ease-out); }
.fstep.active { display: block; }
@keyframes stepIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
.fstep-title { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 5px; }
.fstep-sub   { font-size: .875rem; color: var(--ink-soft); margin-bottom: 22px; }
.chip-grp { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.chip { padding: 8px 17px; border-radius: 100px; border: 1.5px solid var(--bdr); font-size: .8rem; font-weight: 500; cursor: pointer; transition: border-color 160ms, color 160ms, background 160ms; background: transparent; color: var(--ink); -webkit-tap-highlight-color: transparent; min-height: 44px; }
.chip:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .chip:hover { border-color: var(--acc); color: var(--acc); } }
.chip.sel { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip-unsure { font-size: .78rem; padding: 7px 14px; min-height: 38px; opacity: .85; }
.opt { color: var(--ink-faint); font-weight: 400; font-size: .78rem; }
.fg-cond label { display: block; margin-bottom: 6px; font-size: .8rem; font-weight: 500; color: var(--ink-soft); }
.fg-consent { margin-bottom: 16px; }
.consent-lbl { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--ink-soft); line-height: 1.5; cursor: pointer; }
.consent-lbl input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--acc); cursor: pointer; }
.consent-lbl a { color: var(--acc); text-decoration: underline; }
.consent-lbl a:hover { color: var(--acc-dk); }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: 6px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fi, .ft, .fs { width: 100%; padding: 12px 15px; border: 1.5px solid var(--bdr); border-radius: var(--r); font-family: var(--sans); font-size: .9375rem; color: var(--ink); background: var(--cream); transition: border-color 160ms, box-shadow 160ms; outline: none; -webkit-appearance: none; appearance: none; }
.fi:focus, .ft:focus, .fs:focus { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(200,96,42,.12); background: var(--white); }
.ft { resize: none; height: 110px; }
.fs { cursor: pointer; }
.budget-labels { display: flex; justify-content: space-between; font-size: .72rem; color: var(--ink-soft); margin-top: 8px; }
.budget-val  { font-weight: 700; color: var(--ink); }
input[type=range] { width: 100%; height: 4px; border-radius: 4px; cursor: pointer; -webkit-appearance: none; appearance: none; margin-top: 10px; background: linear-gradient(to right, var(--acc) 0%, var(--acc) var(--pct,0%), var(--bdr) var(--pct,0%), var(--bdr) 100%); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--acc); box-shadow: 0 2px 8px rgba(0,0,0,.14); cursor: pointer; }
input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--acc); cursor: pointer; }
.fnav { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin-top: 22px; }
.fnote { font-size: .75rem; color: var(--ink-faint); text-align: center; margin-top: 10px; }
.success { display: none; text-align: center; padding: clamp(30px,5vw,60px) 20px; flex-direction: column; align-items: center; gap: 14px; }
.suc-icon { width: 68px; height: 68px; border-radius: 50%; background: #d4f4e8; display: grid; place-items: center; animation: pop 380ms cubic-bezier(.34,1.56,.64,1); }
.suc-icon svg { width: 32px; height: 32px; color: #16a34a; }
@keyframes pop { from { transform:scale(0); opacity:0; } to { transform:scale(1); opacity:1; } }
.success h3 { font-family: var(--serif); font-size: 1.55rem; }
.success p  { color: var(--ink-soft); font-size: .9375rem; max-width: 300px; }

footer { background: rgba(250,248,245,0.97); color: var(--ink-soft); padding: clamp(48px,7vw,80px) 0 clamp(24px,3vw,36px); border-top: 1px solid var(--bdr); }
.ft-top { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: clamp(28px,4vw,64px); padding-bottom: clamp(36px,5vw,56px); border-bottom: 1px solid var(--bdr); }
.ft-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 14px; }
.ft-brand p { font-size: .875rem; line-height: 1.7; }
.ft-col h3 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 15px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col a { font-size: .875rem; transition: color 160ms; }
@media (hover: hover) and (pointer: fine) { .ft-col a:hover { color: var(--ink); } }
.ft-social-wrap { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 16px; }
.ft-social { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--ink-soft); transition: color 160ms, border-color 160ms; text-decoration: none; padding: 6px 12px; border: 1px solid var(--bdr); border-radius: 100px; }
.ft-social svg { flex-shrink: 0; }
@media (hover: hover) and (pointer: fine) { .ft-social:hover { color: var(--ink); border-color: var(--ink); } }
.ft-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: clamp(18px,3vw,30px); font-size: .78rem; color: var(--ink-soft); }
.ft-legal { display: flex; gap: 18px; }
@media (hover: hover) and (pointer: fine) { .ft-legal a:hover { color: var(--ink); } }

.skip-link { position: absolute; top: -48px; left: 16px; background: var(--acc); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 8px; font-weight: 600; font-size: .875rem; z-index: 9999; text-decoration: none; transition: top 200ms var(--ease-out); }
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out); }
.reveal.v { opacity: 1; transform: none; }
.d1 { transition-delay: 60ms; }
.d2 { transition-delay: 120ms; }
.d3 { transition-delay: 180ms; }
.d4 { transition-delay: 240ms; }

.hero-launch-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; border-radius: 100px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.07); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 24px; cursor: default; transition: background 200ms var(--ease-out), transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .hero-launch-badge:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); } }
.hlb-dot { width: 22px; height: 22px; border-radius: 50%; background: rgba(200,96,42,.25); border: 1px solid rgba(200,96,42,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hlb-dot svg { width: 11px; height: 11px; color: var(--acc); }
.hlb-arrow { color: rgba(255,255,255,.3); font-size: .9rem; margin-left: 2px; }

.hw-wrap { display: inline-block; position: relative; color: var(--acc); vertical-align: bottom; }
.hw-spacer { display: inline-block; visibility: hidden; pointer-events: none; user-select: none; }
.hw { position: absolute; top: 0; left: 0; white-space: nowrap; opacity: 0; transform: translateY(0.55em) scale(0.96); transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out); }
.hw.hw-in { opacity: 1; transform: translateY(0) scale(1); }
.hw.hw-out { opacity: 0; transform: translateY(-0.55em) scale(0.96); transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out); }

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hbg { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .hero-acts { margin-inline: auto; }
  .hero-acts { justify-content: center; }
  .gh-right { max-width: 480px; margin: 0 auto; width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--bdr); }
  .feature:last-child { border-bottom: none; }
  .svc-header { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .bk-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .port-featured-grid { grid-template-columns: 1fr; }
  .testi-single-wrap { grid-template-columns: 1fr; }
  .port-next-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .gh-right { display: none; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-bot { flex-direction: column; align-items: flex-start; }
  .bk-form { padding: 22px 18px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  #hero { min-height: 100svh; padding: calc(68px + 56px) 18px 80px; }
  .hero-inner { gap: 32px; max-width: 100%; }
  #hero .hero-title { font-size: clamp(2.4rem, 9.5vw, 3rem); }
  .hero-sub { font-size: 1rem !important; line-height: 1.6; margin-bottom: 28px; max-width: 100%; }
  .hero-launch-badge { margin-bottom: 20px; font-size: .72rem; padding: 7px 14px; }
  .hero-acts { gap: 10px; }
  .hero-acts .btn-lg { padding: 11px 18px; font-size: .85rem; flex: 1; min-width: 0; }
  .port-featured-mockup { display: none; }
  .testi-featured-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  #hero { min-height: 100svh; padding: calc(68px + 40px) 16px 60px; }
  #hero .hero-title { font-size: clamp(2.2rem, 9.5vw, 2.8rem); }
  .hero-sub { font-size: .95rem !important; margin-bottom: 24px; }
  .hero-acts { flex-direction: row; gap: 8px; }
  .hero-acts .btn-lg { width: auto; padding: 10px 16px; font-size: .8rem; }
}
@media (pointer: coarse) { .btn-sm { min-height: 44px; padding: 11px 20px; } }
@media (min-width: 1400px) { .container { max-width: 1280px; } }
@media (prefers-reduced-motion: reduce) { *, .reveal, .ticker-track { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; } }
