:root {
  --bg: #0a1410;
  --bg-2: #0c1712;
  --card: #111e18;
  --card-2: #16241d;
  --green: #22c47e;
  --green-deep: #06231a;
  --em: #1b7f5f;
  --gold: #FFB800;
  --gold-soft: #ffd166;
  --text: #e8efe9;
  --text-dim: #8fa89d;
  --text-dimmer: #859e91;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(34, 196, 126, 0.2);
  --display: 'Unbounded', system-ui, sans-serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); font-weight: 400; font-size: 1.0625rem; line-height: 1.65;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--green); color: var(--green-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }

.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); display: inline-block;
}
.accent { color: var(--green); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-weight: 600;
  font-size: 0.98rem; line-height: 1; padding: 0.95rem 1.6rem; border-radius: 100px; border: 1.5px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn-primary { background: var(--green); color: var(--green-deep); }
.btn-primary:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-link { font-family: var(--sans); font-weight: 600; font-size: 0.98rem; color: var(--text); border-bottom: 2px solid var(--green); padding-bottom: 2px; transition: color 0.18s ease; }
.btn-link:hover { color: var(--green); }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(10, 20, 16, 0.72);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.brand span { font-family: var(--display); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.03em; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { font-weight: 500; font-size: 0.98rem; color: var(--text); position: relative; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--green); transition: width 0.2s ease; }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto; transition: transform 0.25s, opacity 0.25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: calc(100vh - 72px); display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vh, 4rem) 0; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(110% 80% at 85% -5%, rgba(34, 196, 126, 0.28) 0%, rgba(34, 196, 126, 0) 55%),
    radial-gradient(90% 75% at 5% 105%, rgba(27, 127, 95, 0.22) 0%, rgba(27, 127, 95, 0) 60%),
    radial-gradient(70% 60% at 60% 50%, rgba(255, 184, 0, 0.05) 0%, rgba(255, 184, 0, 0) 60%);
}
.hero::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 55%);
  mask-image: linear-gradient(120deg, #000 0%, transparent 55%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.4rem); align-items: center; }
.hero-copy { max-width: 42rem; }
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.55rem); line-height: 1.06; margin: 1.4rem 0 0; color: #fff; }
.hero h1 .line { display: block; }
.hero h1 .tw-line { display: block; min-height: 1.25em; white-space: nowrap; }
.hero-underline { position: relative; display: inline-block; color: var(--green); min-height: 1.1em; }
.hero-underline::after { content: ''; position: absolute; left: 0; right: -6%; bottom: 0.02em; height: 0.09em; background: var(--green); border-radius: 2px; box-shadow: 0 0 24px rgba(34, 196, 126, 0.5); transform-origin: left center; animation: heroLine 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
@keyframes heroLine { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
.tw-caret { display: inline-block; width: 3px; height: 0.92em; background: var(--green); margin-left: 7px; vertical-align: -0.04em; animation: caretBlink 1s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.55; color: var(--text-dim); margin-top: 1.6rem; }
.hero-sub b { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.2rem; }
.hero-sign { display: flex; align-items: center; gap: 0.7rem; margin-top: 2.4rem; }
.hero-sign .s-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.hero-sign .s-meta { font-size: 0.86rem; color: var(--text-dimmer); }

.fan { position: relative; height: 540px; }
.fan-card { position: absolute; top: 50%; left: 50%; width: 80%; max-width: 392px; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-2); background: var(--card); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55); transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, filter 0.7s ease; will-change: transform; }
.fan-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.fan-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 20, 16, 0.04), rgba(10, 20, 16, 0.42)); }
.fan-card figcaption { position: absolute; left: 12px; bottom: 12px; z-index: 3; background: rgba(34, 196, 126, 0.96); color: #06231a; font-family: var(--sans); font-weight: 700; font-size: 0.78rem; line-height: 1.2; padding: 6px 12px; border-radius: 8px; }
.fan-card figcaption span { display: block; font-weight: 500; font-size: 0.66rem; opacity: 0.78; margin-top: 1px; }
.fan-card .play { position: absolute; z-index: 3; top: 46%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(34, 196, 126, 0.96); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5); transition: opacity 0.4s ease; }
.fan-card .play svg { width: 20px; height: 20px; fill: #06231a; margin-left: 2px; }
.fan-card.pos0 { transform: translate(-50%, -50%) rotate(-2deg) scale(1); z-index: 3; opacity: 1; filter: none; }
.fan-card.pos1 { transform: translate(calc(-50% + 62px), calc(-50% + 26px)) rotate(8deg) scale(0.9); z-index: 2; opacity: 0.97; filter: brightness(0.6); }
.fan-card.pos2 { transform: translate(calc(-50% - 58px), calc(-50% + 34px)) rotate(-12deg) scale(0.85); z-index: 1; opacity: 0.94; filter: brightness(0.45); }
.fan-card.pos1 .play, .fan-card.pos2 .play { opacity: 0; }

.gtag { display: inline-flex; align-items: center; gap: 0.55rem; background: #fff; color: #0a1410; border-radius: 100px; padding: 0.5rem 1rem 0.5rem 0.85rem; font-size: 0.85rem; font-weight: 500; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28); border: 1px solid rgba(0, 0, 0, 0.06); transition: transform 0.16s ease; }
.gtag:hover { transform: translateY(-1px); }
.glogo { font-family: var(--display); font-weight: 700; font-size: 0.95rem; letter-spacing: -0.02em; }
.gtag .gstars { color: var(--gold); letter-spacing: 0.05em; font-size: 0.8rem; }
.gtag .gtxt { color: rgba(10, 20, 16, 0.62); }
.gtag .gtxt strong { color: #0a1410; font-weight: 700; }
.hero .gtag { margin-top: 1.7rem; }
.reviews-google { margin-top: 2.2rem; display: flex; justify-content: center; }
.reviews-google .gtag { font-size: 0.95rem; padding: 0.7rem 1.3rem 0.7rem 1.1rem; }

.marquee { background: var(--green); color: var(--green-deep); overflow: hidden; padding: 0.95rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; font-family: var(--display); font-weight: 700; font-size: 1.04rem; letter-spacing: -0.01em; white-space: nowrap; padding-right: 1.5rem; }
.marquee-item .sp { color: rgba(6, 35, 26, 0.55); margin-right: 1.5rem; font-size: 0.95rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.problems { position: relative; padding: clamp(2rem, 5vh, 3.5rem) 0; }
.problems-panel { position: relative; overflow: hidden; border-radius: 34px; padding: clamp(2.4rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.4rem); color: #0a1410; background: radial-gradient(130% 110% at 14% -10%, #dfeee6 0%, #e9f2ec 48%, #e4efe8 86%); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4); }
.problems-panel::after { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(27, 127, 95, 0.1), transparent 70%); pointer-events: none; }
.problems .eyebrow { color: var(--em); }
.problems .eyebrow::before { background: var(--em); }
.problems-head { max-width: 44rem; margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.problems-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); color: #0a1410; margin-top: 1rem; }
.prob-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; position: relative; }
.prob-grid::before { content: ''; position: absolute; top: 46px; left: 1%; right: 1%; border-top: 2px dashed rgba(27, 127, 95, 0.4); z-index: 0; }
.prob-card { position: relative; z-index: 1; background: #fcfefd; border: 1px solid rgba(10, 20, 16, 0.08); border-radius: 16px; padding: 1.5rem 1.4rem 1.6rem; box-shadow: 0 16px 36px rgba(13, 61, 44, 0.09); transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease; }
.prob-card:nth-child(1) { transform: rotate(-0.6deg); }
.prob-card:nth-child(2) { transform: rotate(0.7deg); }
.prob-card:nth-child(3) { transform: rotate(-0.5deg); }
.prob-card:nth-child(4) { transform: rotate(0.6deg); }
.prob-card:hover { transform: translateY(-8px) rotate(0deg); box-shadow: 0 28px 50px rgba(13, 61, 44, 0.18); border-color: rgba(27, 127, 95, 0.45); z-index: 2; }
.prob-card:hover .prob-num { transform: scale(1.08); transition: transform 0.28s ease; }
.prob-num { width: 44px; height: 44px; border-radius: 50%; background: var(--em); color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; box-shadow: 0 6px 16px rgba(27, 127, 95, 0.35); }
.prob-card h3 { font-size: 1.14rem; line-height: 1.2; color: #0a1410; letter-spacing: -0.01em; }
.prob-card h3 .pa { color: var(--em); }
.prob-card p { font-size: 0.95rem; line-height: 1.55; color: rgba(10, 20, 16, 0.58); margin-top: 0.7rem; }


.section { padding: clamp(4rem, 9vh, 7rem) 0; position: relative; }
.section.wash { background: var(--bg-2); }
.section-head { max-width: 44rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 1rem; color: #fff; }
.section-head p { color: var(--text-dim); margin-top: 1rem; font-size: 1.1rem; }

.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.service { background: var(--card); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 0.9rem; transition: background 0.2s ease; }
.service:hover { background: var(--card-2); }
.service-ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(34, 196, 126, 0.12); display: flex; align-items: center; justify-content: center; }
.service-ic svg { width: 22px; height: 22px; stroke: var(--green); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { font-size: 1.32rem; letter-spacing: -0.015em; color: #fff; }
.service p { color: var(--text-dim); font-size: 1rem; line-height: 1.6; }
.service .proof { margin-top: auto; padding-top: 0.4rem; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.service .proof span { color: var(--green); }
.service.flag { position: relative; }
.service.flag::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); }

.folio-grid { column-count: 3; column-gap: 1.4rem; }
.folio { position: relative; display: block; break-inside: avoid; margin-bottom: 1.4rem; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line-2); background: var(--card); transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease; }
.folio:nth-child(5n+1) { aspect-ratio: 4 / 5; transform: rotate(-0.6deg); }
.folio:nth-child(5n+2) { aspect-ratio: 1 / 1; transform: rotate(0.5deg); }
.folio:nth-child(5n+3) { aspect-ratio: 3 / 4; transform: rotate(-0.4deg); }
.folio:nth-child(5n+4) { aspect-ratio: 4 / 5; transform: rotate(0.6deg); }
.folio:nth-child(5n) { aspect-ratio: 5 / 6; transform: rotate(-0.5deg); }
.folio:hover { transform: translateY(-6px) rotate(0deg); border-color: var(--green); z-index: 2; }
.folio-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.folio:hover .folio-shot { transform: scale(1.05); }
.folio-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 13, 10, 0.96) 4%, rgba(7, 13, 10, 0.55) 34%, rgba(7, 13, 10, 0) 62%); }
.folio-glow { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; background: radial-gradient(120% 80% at 50% 118%, rgba(34, 196, 126, 0.4) 0%, transparent 58%); pointer-events: none; }
.folio:hover .folio-glow { opacity: 1; }
.folio-arrow { position: absolute; top: 14px; right: 16px; color: var(--green); font-size: 1.2rem; opacity: 0; transform: translate(-4px, 4px); transition: opacity 0.3s ease, transform 0.3s ease; }
.folio:hover .folio-arrow { opacity: 1; transform: none; }
.folio-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem; }
.folio-logo { font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: #fff; }
.folio-result { font-size: 0.9rem; line-height: 1.45; color: var(--text-dim); margin-top: 0.45rem; }
.folio.soon { background: linear-gradient(155deg, #123d2e 0%, #0a1410 78%); }
.folio.soon::before { content: ''; position: absolute; inset: 0; background: radial-gradient(82% 60% at 50% 32%, rgba(34, 196, 126, 0.16), transparent 62%); }
.folio-soon-tag { position: absolute; top: 14px; left: 14px; z-index: 3; background: rgba(34, 196, 126, 0.18); color: var(--green); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; border: 1px solid var(--line-2); }
.portfolio-foot { margin-top: 2.4rem; display: flex; justify-content: center; }

.case { background: linear-gradient(150deg, #0d3d2c 0%, #0a1410 70%); position: relative; overflow: hidden; }
.case::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(80% 70% at 75% 10%, rgba(34, 196, 126, 0.18) 0%, transparent 55%); }
.case .wrap { position: relative; z-index: 1; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.case h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); color: #fff; margin: 1.1rem 0 1.4rem; }
.case-lead { color: var(--text-dim); font-size: 1.12rem; line-height: 1.65; }
.case-points { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.case-points li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 1rem; line-height: 1.5; color: var(--text-dim); }
.case-points svg { width: 20px; height: 20px; stroke: var(--green); stroke-width: 2; fill: none; flex: 0 0 auto; margin-top: 3px; }
.case-points b { color: #fff; font-weight: 600; }
.case-cta { margin-top: 2rem; }
.case-media { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.case-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }

.reviews-section { padding: clamp(2rem, 5vh, 3.5rem) 0; }
.reviews-panel { position: relative; overflow: hidden; border-radius: 34px; padding: clamp(2.6rem, 5vw, 4.2rem) clamp(1.5rem, 4vw, 3.4rem); background: radial-gradient(120% 110% at 85% -10%, #dfeee6 0%, #e9f2ec 50%, #e4efe8 88%); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4); }
.reviews-panel .section-head h2 { color: #0a1410; }
.reviews-panel .section-head p { color: rgba(10, 20, 16, 0.6); }
.reviews-panel .eyebrow { color: var(--em); }
.reviews-panel .eyebrow::before { background: var(--em); }
.reviews-grid { column-count: 3; column-gap: 1.3rem; }
.reviews-panel .review { background: #fcfefd; border-color: rgba(10, 20, 16, 0.08); box-shadow: 0 14px 30px rgba(13, 61, 44, 0.08); }
.reviews-panel .review p { color: #0a1410; }
.reviews-panel .review-by .rn { color: #0a1410; }
.reviews-panel .review-by .rm { color: rgba(10, 20, 16, 0.5); }
.reviews-panel .review-feat { background: linear-gradient(160deg, #f0fbf5, #e3f1ea); border-color: rgba(27, 127, 95, 0.4); }
.reviews-panel .review:hover { border-color: rgba(27, 127, 95, 0.45); }
.reviews-panel .reviews-google { margin-top: 2rem; }
.review { break-inside: avoid; margin: 0 0 1.3rem; border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; background: var(--card); }
.review:nth-child(4n+1) { transform: rotate(-0.7deg); }
.review:nth-child(4n+2) { transform: rotate(0.5deg); }
.review:nth-child(4n+3) { transform: rotate(0.3deg); }
.review:nth-child(4n) { transform: rotate(-0.4deg); }
.review:hover { transform: rotate(0deg); border-color: var(--line-2); transition: transform 0.2s ease, border-color 0.2s ease; }
.review-feat { border-color: var(--line-2); background: linear-gradient(160deg, #16241d, #111e18); }
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; }
.review p { font-size: 1.02rem; line-height: 1.6; color: var(--text); flex: 1; }
.review-by { display: flex; align-items: center; gap: 0.7rem; }
.review-av { width: 46px; height: 46px; border-radius: 50%; background: rgba(34, 196, 126, 0.14); color: var(--green); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex: 0 0 auto; overflow: hidden; }
.review-av.logo { background: #fff; border: 1px solid rgba(10, 20, 16, 0.08); }
.review-av img { width: 100%; height: 100%; object-fit: cover; }
.review-by .rn { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.review-by .rm { font-size: 0.82rem; color: var(--text-dimmer); }
.reviews-foot { margin-top: 2rem; display: flex; align-items: center; gap: 0.8rem; justify-content: center; font-size: 0.95rem; color: var(--text-dim); }
.reviews-foot strong { color: var(--text); }
.reviews-foot .gstar { color: var(--gold); }

.contact-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.9rem; color: #fff; }
.form-convo { margin-top: clamp(2.2rem, 4vw, 3rem); }
.convo-line { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1.7; letter-spacing: -0.02em; color: var(--text); }
.cf { display: inline-block; }
.cf input { font-family: var(--display); font-weight: 700; font-size: inherit; color: var(--green); background: transparent; border: none; border-bottom: 2px solid rgba(34, 196, 126, 0.4); padding: 0 0.4rem 2px; text-align: center; min-width: 7ch; transition: border-color 0.16s ease, background 0.16s ease; }
.cf-wide input { min-width: 11ch; }
.cf input::placeholder { color: var(--text-dimmer); font-weight: 600; }
.cf input:focus { border-bottom-color: var(--green); background: rgba(34, 196, 126, 0.08); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-convo .cf-turnstile { margin: 1.4rem 0 0; }
.form-convo .btn { margin-top: clamp(1.4rem, 2.5vw, 1.8rem); }
.contact-foot { margin-top: 2.2rem; font-size: 0.95rem; color: var(--text-dim); }
.contact-foot a { color: var(--green); font-weight: 600; }
.contact-foot a:hover { text-decoration: underline; }
.form-status { margin-top: 1.2rem; font-size: 0.95rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #ff8a80; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

.footer { background: #070f0c; color: var(--text-dim); padding: clamp(3rem, 6vh, 4.5rem) 0 2rem; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.footer .wrap { position: relative; z-index: 1; }
.footer-ghost { position: absolute; z-index: 0; right: -1.5%; bottom: -3.5rem; pointer-events: none; user-select: none; font-family: var(--display); font-weight: 800; letter-spacing: -0.05em; line-height: 1; font-size: clamp(8rem, 24vw, 20rem); color: rgba(255, 255, 255, 0.025); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--line); }
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-brand img { width: 30px; height: 30px; border-radius: 7px; }
.footer-brand span { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: -0.03em; }
.footer-desc { margin-top: 1rem; max-width: 22rem; line-height: 1.6; font-size: 0.98rem; }
.footer-col h4 { font-family: var(--sans); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-dim); margin-bottom: 0.65rem; font-size: 0.98rem; transition: color 0.16s ease; }
.footer-col a:hover { color: var(--green); }
.footer-cities { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.3rem 0.85rem; padding-top: 1.6rem; margin-top: 1.6rem; border-top: 1px solid var(--line); }
.footer-cities .fc-label { font-weight: 600; color: var(--text); font-size: 0.85rem; }
.footer-cities a { font-size: 0.85rem; color: var(--text-dimmer); transition: color 0.16s ease; }
.footer-cities a:hover { color: var(--green); }
.footer-legal { margin-top: 1.6rem; font-size: 0.82rem; color: var(--text-dimmer); line-height: 1.7; }
.footer-legal .copy { display: block; margin-top: 0.5rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: flex-start; background: var(--bg); border-bottom: 1px solid var(--line); padding: 1.5rem var(--pad) 2rem; gap: 1.4rem; transform: translateY(-130%); transition: transform 0.28s ease; }
  .nav.open .nav-links { transform: none; }
  .nav-links a:not(.btn) { font-size: 1.1rem; }
  .nav-links .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-top: 0; }
  .hero-copy { max-width: none; text-align: center; }
  .hero h1 .tw-line { min-height: 1.25em; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-sign { justify-content: center; }
  .fan { order: 2; height: 380px; }
  .fan-card { max-width: 248px; }
  .stamp { left: 50%; margin-left: 0; bottom: 6px; transform: translateX(-50%) rotate(-4deg); font-size: 0.72rem; }
  .marquee-item { font-size: 0.92rem; }
  .services { grid-template-columns: 1fr; }
  .prob-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .prob-grid::before { display: none; }
  .folio-grid { column-count: 2; }
  .case-grid { grid-template-columns: 1fr; }
  .case-media { order: -1; }
  .reviews-grid { column-count: 1; }
  .prob-card:nth-child(n) { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .folio-grid { column-count: 1; }
  .prob-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

.cookie-banner { position: fixed; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; max-width: 480px; background: rgba(12, 23, 18, 0.96); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid var(--line-2); border-radius: 18px; padding: 1.5rem; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(34, 196, 126, 0.08); z-index: 10000; transform: translateY(120%); opacity: 0; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s; }
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; }
.cookie-icon { width: 32px; height: 32px; background: rgba(34, 196, 126, 0.1); border: 1px solid rgba(34, 196, 126, 0.25); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--green); }
.cookie-icon svg { width: 18px; height: 18px; }
.cookie-title { font-family: var(--sans); font-size: 0.98rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.cookie-text { font-size: 0.85rem; color: var(--text-dim); line-height: 1.55; margin-bottom: 1.25rem; }
.cookie-text a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(34, 196, 126, 0.35); text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.cookie-btn { flex: 1; min-width: 0; padding: 0.7rem 0.9rem; border-radius: 10px; font-size: 0.84rem; font-weight: 600; font-family: var(--sans); border: 0; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; white-space: nowrap; }
.cookie-btn.primary { background: var(--green); color: var(--green-deep); }
.cookie-btn.primary:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255, 184, 0, 0.25); }
.cookie-btn.secondary { background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid var(--line); }
.cookie-btn.secondary:hover { background: rgba(255, 255, 255, 0.09); border-color: var(--line-2); }
.cookie-btn.text { background: none; color: var(--text-dim); flex: 0 0 auto; padding: 0.7rem 0.5rem; }
.cookie-btn.text:hover { color: #fff; }

.cookie-modal-bg { position: fixed; inset: 0; background: rgba(5, 10, 8, 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 10001; opacity: 0; pointer-events: none; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.cookie-modal-bg.show { opacity: 1; pointer-events: auto; }
.cookie-modal { background: var(--card); border: 1px solid var(--line-2); border-radius: 22px; max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2rem; transform: scale(0.95) translateY(20px); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.cookie-modal-bg.show .cookie-modal { transform: scale(1) translateY(0); }
.cookie-modal h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
.cookie-modal-sub { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.75rem; }
.cookie-cat { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.25rem; margin-bottom: 0.7rem; transition: border-color 0.25s; }
.cookie-cat:hover { border-color: var(--line-2); }
.cookie-cat-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.45rem; }
.cookie-cat-name { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: #fff; letter-spacing: -0.015em; }
.cookie-cat-desc { font-size: 0.83rem; color: var(--text-dim); line-height: 1.55; }
.cookie-modal-actions { display: flex; gap: 0.55rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cookie-modal-actions .cookie-btn { flex: 1; }

.toggle { position: relative; width: 42px; height: 24px; background: rgba(255, 255, 255, 0.1); border-radius: 100px; cursor: pointer; transition: background 0.25s; flex-shrink: 0; }
.toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.25s ease; }
.toggle.on { background: var(--green); }
.toggle.on::after { transform: translateX(18px); }
.toggle.locked { background: rgba(34, 196, 126, 0.4); cursor: not-allowed; }
.toggle.locked::after { background: rgba(255, 255, 255, 0.7); transform: translateX(18px); }

.cookie-fab { position: fixed; bottom: 1rem; left: 1rem; width: 40px; height: 40px; background: rgba(12, 23, 18, 0.85); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 9998; transition: border-color 0.25s, color 0.25s, transform 0.25s; color: var(--text-dim); }
.cookie-fab svg { width: 18px; height: 18px; }
.cookie-fab:hover { border-color: var(--line-2); color: var(--green); transform: scale(1.05); }
.cookie-fab.show { display: flex; }

@media (max-width: 480px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1.25rem; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.blog-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.blog-card.feat { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.blog-visual { position: relative; background: linear-gradient(155deg, #123d2e 0%, #0a1410 80%); display: flex; align-items: center; justify-content: center; min-height: 150px; overflow: hidden; }
.blog-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 70% at 50% 20%, rgba(34, 196, 126, 0.18), transparent 62%); }
.blog-visual svg { width: 46px; height: 46px; stroke: var(--green); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; opacity: 0.9; }
.blog-card.feat .blog-visual { flex: 0 0 42%; min-height: 240px; }
.blog-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.blog-card.feat .blog-body { padding: clamp(1.8rem, 3vw, 2.6rem); justify-content: center; }
.blog-cat { font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
.blog-title { font-family: var(--display); font-weight: 700; font-size: 1.18rem; line-height: 1.25; letter-spacing: -0.015em; color: #fff; }
.blog-card.feat .blog-title { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.blog-excerpt { font-size: 0.95rem; line-height: 1.6; color: var(--text-dim); }
.blog-meta { margin-top: auto; padding-top: 0.6rem; font-size: 0.82rem; color: var(--text-dimmer); display: flex; gap: 0.9rem; flex-wrap: wrap; }
.blog-card .arrow-link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--green); }

.article-head { position: relative; overflow: hidden; padding: clamp(6rem, 12vh, 9rem) 0 clamp(1.5rem, 4vh, 2.4rem); }
.article-head::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(100% 80% at 80% -10%, rgba(34, 196, 126, 0.2) 0%, rgba(34, 196, 126, 0) 55%), radial-gradient(70% 70% at 5% 110%, rgba(27, 127, 95, 0.14) 0%, rgba(27, 127, 95, 0) 60%); }
.article-head .wrap { position: relative; z-index: 1; max-width: 820px; }
.article-crumb { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--text-dim); margin-bottom: 1.4rem; }
.article-crumb:hover { color: var(--green); }
.article-cat { display: inline-block; font-weight: 600; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); background: rgba(34, 196, 126, 0.1); border: 1px solid var(--line-2); border-radius: 100px; padding: 0.3rem 0.85rem; margin-bottom: 1.1rem; }
.article-h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.07; letter-spacing: -0.025em; color: #fff; }
.article-lead { color: var(--text-dim); font-size: 1.12rem; line-height: 1.65; margin-top: 1.2rem; max-width: 42rem; }
.article-byline { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.article-byline .av { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--green-deep); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.9rem; }
.article-byline .who { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.article-byline .meta { font-size: 0.85rem; color: var(--text-dimmer); display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.15rem; }

.article-body { padding: clamp(0.5rem, 2vh, 1.5rem) 0 clamp(4rem, 9vh, 7rem); }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; color: #fff; margin: 2.8rem 0 1rem; scroll-margin-top: 90px; }
.article-content h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: #fff; margin: 1.9rem 0 0.7rem; }
.article-content p { color: var(--text-dim); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.1rem; }
.article-content ul { margin: 0 0 1.2rem; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.article-content li { color: var(--text-dim); font-size: 1.05rem; line-height: 1.7; }
.article-content strong { color: var(--text); font-weight: 600; }
.article-content a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(34, 196, 126, 0.4); text-underline-offset: 2px; }
.toc-box { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.6rem; margin-bottom: 2.4rem; }
.toc-box .toc-label { font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.8rem; }
.toc-box ol { list-style: none; counter-reset: toc; display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1.4rem; }
.toc-box li { counter-increment: toc; }
.toc-box a { color: var(--text-dim); font-size: 0.95rem; }
.toc-box a::before { content: counter(toc) ". "; color: var(--text-dimmer); }
.toc-box a:hover { color: var(--green); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 1.6rem 0; }
.stat-box { background: var(--card); border: 1px solid var(--line-2); border-radius: 14px; padding: 1.3rem 1rem; text-align: center; }
.stat-box .num { display: block; font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--green); letter-spacing: -0.02em; }
.stat-box .lbl { display: block; font-size: 0.85rem; color: var(--text-dim); margin-top: 0.35rem; }
.callout { background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 12px; padding: 1.3rem 1.5rem; margin: 1.6rem 0; }
.callout-head { display: flex; align-items: center; gap: 0.5rem; font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--gold); margin-bottom: 0.5rem; }
.callout-head svg { width: 18px; height: 18px; }
.callout p { margin: 0; font-size: 0.98rem; color: var(--text-dim); line-height: 1.65; }
.pull-quote { font-family: var(--display); font-weight: 700; font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.4; letter-spacing: -0.02em; color: #fff; border-left: 3px solid var(--green); padding: 0.4rem 0 0.4rem 1.4rem; margin: 2rem 0; }
.compare-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; margin: 1.6rem 0; }
.compare-table table { width: 100%; border-collapse: collapse; font-size: 0.96rem; min-width: 420px; }
.compare-table th { text-align: left; background: var(--card-2); color: #fff; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.85rem 1.2rem; }
.compare-table td { padding: 0.8rem 1.2rem; border-top: 1px solid var(--line); color: var(--text-dim); }
.compare-table td.good { color: var(--green); font-weight: 600; }
.compare-table td.bad { color: var(--gold-soft); font-weight: 600; }
.inline-cta { background: linear-gradient(150deg, #0d3d2c 0%, #0a1410 75%); border: 1px solid var(--line-2); border-radius: 18px; padding: 1.8rem 2rem; margin: 2.4rem 0; }
.inline-cta h4 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.inline-cta p { color: var(--text-dim); font-size: 0.98rem; line-height: 1.6; margin-bottom: 1.2rem; }
.inline-cta a { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--green); color: var(--green-deep); font-weight: 600; font-size: 0.95rem; padding: 0.8rem 1.5rem; border-radius: 100px; transition: background 0.18s ease, transform 0.18s ease; }
.inline-cta a:hover { background: var(--gold); transform: translateY(-1px); }
.article-end { border-top: 1px solid var(--line); margin-top: 2.6rem; padding-top: 2.2rem; }
.article-end h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem); color: #fff; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.7rem; }
.article-end p { color: var(--text-dim); font-size: 1rem; line-height: 1.6; margin-bottom: 1.3rem; }
.article-end a { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green); color: var(--green-deep); font-weight: 600; padding: 0.95rem 1.7rem; border-radius: 100px; transition: background 0.18s ease, transform 0.18s ease; }
.article-end a:hover { background: var(--gold); transform: translateY(-1px); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.6rem; }
.related-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; transition: transform 0.24s ease, border-color 0.24s ease; }
.related-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.related-card .blog-title { font-size: 1.02rem; }

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.feat { flex-direction: column; }
  .blog-card.feat .blog-visual { flex: none; min-height: 180px; }
  .related-grid { grid-template-columns: 1fr; }
  .toc-box ol { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .blog-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
}

:where(a, button, input, textarea, select, summary, [tabindex], [role="switch"]):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}
.problems-panel :focus-visible,
.reviews-panel :focus-visible { outline-color: var(--em); }

.mark-gold { color: var(--gold); }

.reviews-panel .review-stars { color: #b9820a; }
.gtag .gstars { color: #e6a200; }

.cookie-cat-head .toggle::before { content: ''; position: absolute; inset: -12px -10px; }

.m-cta { display: none; }
@media (max-width: 768px) {
  .m-cta {
    position: fixed; left: 0.85rem; right: 0.85rem; bottom: 0.85rem; z-index: 60;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: var(--green); color: var(--green-deep);
    font-family: var(--sans); font-weight: 700; font-size: 1rem;
    padding: 1rem 1.4rem; border-radius: 100px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34, 196, 126, 0.25);
  }
  .m-cta .arrow { transition: transform 0.18s ease; }
  body { padding-bottom: 5.25rem; }
  .cookie-fab { bottom: 5.25rem; }
  .cookie-banner { bottom: 5.25rem; }
}
