:root {
  color-scheme: light;
  --brand-green: #7EC34E;
  --brand-yellow: #F8D509;
  --brand-teal: #006B68;
  --brand-teal-dark: #004E4C;
  --brand-navy: #102A35;
  --brand-ink: #071D25;
  --brand-slate: #536873;
  --brand-mist: #F2F8F6;
  --brand-cream: #FFF9D9;
  --surface: #FFFFFF;
  --surface-2: #F8FCFB;
  --line: rgba(7,29,37,.12);
  --shadow: 0 24px 80px rgba(7,29,37,.14);
  --shadow-soft: 0 12px 34px rgba(7,29,37,.10);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --surface: #09232B;
  --surface-2: #0E3038;
  --brand-mist: #0C2B33;
  --brand-cream: #312F11;
  --brand-ink: #F5FFFF;
  --brand-slate: #B9CDD0;
  --line: rgba(255,255,255,.13);
  --shadow: 0 24px 80px rgba(0,0,0,.30);
  --shadow-soft: 0 12px 34px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--brand-ink);
  background: radial-gradient(circle at 10% 0%, rgba(126,195,78,.10), transparent 28rem), var(--surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--brand-yellow); color: var(--brand-ink); }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { max-width: 850px; }
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; z-index: 999; left: 1rem; top: 1rem; transform: translateY(-140%); background: var(--brand-yellow); color: var(--brand-ink); padding: .75rem 1rem; border-radius: 999px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; margin: 0 0 1rem; }
h1 { font-size: clamp(3rem, 7vw, 6.75rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { margin: 0 0 1rem; color: var(--brand-slate); }
.eyebrow { color: var(--brand-teal); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; margin-bottom: .8rem; }
.dark-band .eyebrow, .hero .eyebrow, .footer-cta .eyebrow { color: var(--brand-yellow); }
.small-copy, .form-note { font-size: .93rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--brand-yellow); outline-offset: 3px; }
.btn--primary { background: linear-gradient(135deg, var(--brand-yellow), #FFE867); color: var(--brand-ink); box-shadow: 0 16px 40px rgba(248,213,9,.25); }
.btn--secondary { background: linear-gradient(135deg, var(--brand-green), #9BE36B); color: #08241C; box-shadow: 0 16px 40px rgba(126,195,78,.25); }
.btn--ghost { border-color: var(--line); background: color-mix(in srgb, var(--surface) 72%, transparent); color: var(--brand-ink); }
.btn--glass { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(12px); }
.btn--phone { background: var(--brand-teal); color: #fff; }
.btn--large { min-height: 56px; padding: 1rem 1.35rem; font-size: 1.03rem; }
.btn--small { min-height: 36px; padding: .5rem .8rem; font-size: .85rem; }
.text-link { color: var(--brand-teal); font-weight: 900; text-decoration: underline; text-underline-offset: .25em; }

.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--surface) 86%, transparent); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }
.topbar { background: var(--brand-teal-dark); color: #fff; font-size: .9rem; }
.topbar__inner { display: flex; align-items: center; min-height: 38px; gap: .9rem; }
.topbar__link, .topbar__phone { color: #fff; font-weight: 800; }
.topbar__divider { width: 1px; height: 16px; background: rgba(255,255,255,.25); }
.topbar__address { opacity: .88; }
.topbar__push { flex: 1; }
.nav-shell { min-height: 86px; display: flex; align-items: center; gap: 1rem; }
.brand { display: flex; align-items: center; width: 140px; flex: 0 0 140px; }
.brand img { width: 140px; height: auto; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: .18rem; }
.primary-nav > a, .nav-dropdown > a { padding: .72rem .78rem; border-radius: 999px; color: var(--brand-ink); font-weight: 850; font-size: .95rem; }
.primary-nav a[aria-current="page"], .primary-nav > a:hover, .nav-dropdown > a:hover { background: var(--brand-mist); color: var(--brand-teal); }
.nav-dropdown { position: relative; }
.nav-dropdown__menu { position: absolute; top: calc(100% + .75rem); left: 0; min-width: 290px; display: grid; gap: .25rem; padding: .75rem; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); opacity: 0; transform: translateY(8px); pointer-events: none; transition: .2s ease; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-dropdown__menu a { padding: .7rem .85rem; border-radius: 14px; color: var(--brand-slate); font-weight: 850; }
.nav-dropdown__menu a:hover { background: var(--brand-mist); color: var(--brand-teal); }
.header-actions { display: flex; align-items: center; gap: .55rem; }
.theme-toggle, .nav-toggle { border: 1px solid var(--line); background: var(--surface); color: var(--brand-ink); border-radius: 999px; }
.theme-toggle { width: 44px; height: 44px; font-weight: 900; }
.nav-toggle { display: none; width: 46px; height: 46px; place-items: center; padding: 0; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--brand-ink); margin: 4px auto; border-radius: 2px; }

.hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 8vw, 8rem) 0 3.5rem; color: #fff; background: radial-gradient(circle at 90% 10%, rgba(248,213,9,.20), transparent 26rem), radial-gradient(circle at 20% 20%, rgba(126,195,78,.18), transparent 24rem), linear-gradient(135deg, #06242C, var(--brand-teal-dark) 50%, #082C34); }
.hero::after { content: ""; position: absolute; inset: auto -10% -38% -10%; height: 26rem; background: radial-gradient(closest-side, rgba(248,213,9,.10), transparent); pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero__lead { color: rgba(255,255,255,.84); max-width: 760px; font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.hero__actions { display: flex; gap: .85rem; flex-wrap: wrap; margin: 1.8rem 0; }
.hero__actions--center { justify-content: center; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.hero__proof span { display: inline-flex; align-items: center; gap: .35rem; padding: .75rem .9rem; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.10); border-radius: 999px; color: rgba(255,255,255,.88); backdrop-filter: blur(10px); }
.hero__proof strong { color: var(--brand-yellow); }
.device-stack, .service-hero-card, .map-card { position: relative; }
.device-card { border-radius: var(--radius-lg); padding: 1.2rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.20); box-shadow: 0 40px 100px rgba(0,0,0,.28); backdrop-filter: blur(16px); transform: rotate(2deg); }
.device-card img { width: 100%; border-radius: 24px; filter: drop-shadow(0 24px 28px rgba(0,0,0,.12)); }
.floating-card { position: absolute; display: grid; gap: .15rem; max-width: 240px; padding: 1rem; background: rgba(255,255,255,.88); color: var(--brand-ink); border: 1px solid rgba(255,255,255,.4); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.floating-card small { color: var(--brand-slate); }
.floating-card--top { top: 5%; left: -6%; }
.floating-card--bottom { right: -4%; bottom: 8%; }
.pulse-dot { width: .7rem; height: .7rem; background: var(--brand-green); border-radius: 50%; box-shadow: 0 0 0 0 rgba(126,195,78,.8); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(126,195,78,0); } 100% { box-shadow: 0 0 0 0 rgba(126,195,78,0); } }
.hero-marquee { display: flex; gap: 1rem; width: max-content; margin-top: 3.5rem; animation: marquee 26s linear infinite; opacity: .6; }
.hero-marquee span { padding: .65rem 1.2rem; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #fff; font-weight: 900; }
@keyframes marquee { to { transform: translateX(-50%); } }
.service-hero-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: 0 40px 100px rgba(0,0,0,.25); }
.service-hero-card img { margin-inline: auto; max-height: 490px; object-fit: contain; }
.service-hero-card__badge { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; padding: 1rem; border-radius: 20px; background: rgba(255,255,255,.90); color: var(--brand-ink); display: grid; gap: .1rem; box-shadow: var(--shadow-soft); }
.service-hero-card__badge span { color: var(--brand-slate); }

.page-hero { padding: clamp(4rem, 8vw, 7.5rem) 0; text-align: center; background: radial-gradient(circle at 15% 10%, rgba(126,195,78,.12), transparent 24rem), linear-gradient(180deg, var(--surface-2), var(--surface)); border-bottom: 1px solid var(--line); }
.page-hero p { font-size: clamp(1rem, 1.45vw, 1.2rem); }
.breadcrumbs { margin-bottom: 1.4rem; font-size: .92rem; }
.breadcrumbs ol { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .35rem; color: var(--brand-slate); }
.breadcrumbs a { color: var(--brand-teal); font-weight: 800; }
.breadcrumbs span { color: var(--brand-slate); }

.split-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); }
.split-grid--center { align-items: center; }
.section-heading { max-width: 820px; margin-bottom: 2.2rem; }
.section-heading--inline { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; }
.section-heading p { font-size: 1.05rem; }
.stats-panel, .content-card, .deliverables-card, .contact-card, .roi-card, .quote-panel, .founder-card, .sticky-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.35rem, 3vw, 2.4rem); box-shadow: var(--shadow-soft); }
.stats-panel h3, .deliverables-card h3, .contact-card h3 { margin-bottom: 1rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .85rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--brand-slate); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-green); font-weight: 1000; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card { min-height: 100%; }
.service-card__link { height: 100%; display: grid; gap: .8rem; align-content: start; padding: 1.35rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card__link:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand-green) 60%, var(--line)); box-shadow: var(--shadow); }
.service-card__icon { width: 54px; height: 54px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-green), var(--brand-yellow)); border-radius: 18px; font-size: 1.5rem; font-weight: 900; color: #08241C; }
.service-card p { font-size: .98rem; }
.service-card span { color: var(--brand-teal); font-weight: 900; }

.dark-band { color: #fff; background: radial-gradient(circle at 85% 10%, rgba(248,213,9,.12), transparent 26rem), linear-gradient(135deg, #061E26, var(--brand-teal-dark)); }
.dark-band p, .dark-band li, .dark-band span { color: rgba(255,255,255,.78); }
.dark-band .stats-panel, .dark-band .deliverables-card, .dark-band .content-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.dark-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.rounded-media { border-radius: var(--radius-lg); }
.shadow-media { box-shadow: var(--shadow); }
.process-list { display: grid; gap: .9rem; margin-top: 1.4rem; }
.process-list div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.07); }
.process-list strong { color: var(--brand-yellow); }

.portfolio-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 380px); gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.portfolio-strip--three { grid-auto-flow: initial; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
.portfolio-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); scroll-snap-align: start; }
.portfolio-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; background: var(--brand-mist); }
.portfolio-card__body { padding: 1.1rem; }
.portfolio-card__body span, .portfolio-card__category { color: var(--brand-teal); font-weight: 900; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-card__body h3 { margin-top: .35rem; font-size: 1.45rem; }
.portfolio-card button { width: 100%; padding: 0; background: none; border: 0; color: inherit; text-align: left; }
.portfolio-card button strong { display: block; padding: .2rem 1.1rem 1.1rem; font-size: 1.25rem; }
.portfolio-card__category { display: block; padding: 1.1rem 1.1rem .1rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-bar button { border: 1px solid var(--line); background: var(--surface); color: var(--brand-ink); border-radius: 999px; padding: .75rem 1rem; font-weight: 900; }
.filter-bar button.is-active, .filter-bar button:hover { background: var(--brand-teal); color: #fff; }

.roi-card { display: grid; gap: 1rem; }
.roi-card label, .quote-form label, .mini-form label, .quote-wizard label { display: grid; gap: .35rem; font-weight: 850; color: var(--brand-ink); }
input, textarea, select { width: 100%; border: 1px solid var(--line); background: var(--surface); color: var(--brand-ink); border-radius: 15px; padding: .9rem 1rem; min-height: 48px; }
textarea { resize: vertical; }
.roi-result { display: grid; gap: .25rem; padding: 1.2rem; border-radius: 20px; background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark)); color: #fff; }
.roi-result span { color: rgba(255,255,255,.78); }
.roi-result strong { font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--brand-yellow); }

.testimonial-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
.testimonial-card { scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.35rem; box-shadow: var(--shadow-soft); min-height: 300px; }
.stars { color: var(--brand-yellow); letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-card blockquote { margin: 0 0 1.2rem; font-size: 1.08rem; color: var(--brand-ink); }
.testimonial-card p span { display: block; color: var(--brand-slate); }

.location-pills { display: flex; flex-wrap: wrap; gap: .75rem; }
.location-pills a, .deliverables-card a:not(.btn) { display: inline-flex; padding: .75rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--brand-teal); font-weight: 900; }
.location-directory { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.location-directory__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.3rem; box-shadow: var(--shadow-soft); }
.location-directory__card h2 { font-size: 1.6rem; }
.location-directory__card div { display: flex; flex-wrap: wrap; gap: .5rem; }
.location-directory__card a { padding: .5rem .7rem; border-radius: 999px; background: var(--brand-mist); color: var(--brand-teal); font-weight: 900; font-size: .9rem; }
.map-card { overflow: hidden; border: 1px solid rgba(255,255,255,.20); border-radius: var(--radius-lg); background: rgba(255,255,255,.12); box-shadow: var(--shadow); }
.map-card iframe, .map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-card div { padding: 1rem; display: grid; gap: .2rem; }
.map-card span { color: rgba(255,255,255,.78); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-grid__wide { grid-column: 1 / -1; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.quote-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2rem; align-items: start; background: radial-gradient(circle at 100% 0%, rgba(248,213,9,.12), transparent 22rem), var(--surface); }
.quote-panel--single { display: block; }
.final-form-section { background: linear-gradient(180deg, var(--surface), var(--surface-2)); }

.content-card--accent { background: linear-gradient(135deg, color-mix(in srgb, var(--brand-green) 12%, var(--surface)), var(--surface)); }
.text-block { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.outcome-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.outcome-card { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); color: var(--brand-slate); font-weight: 800; }
.outcome-card span { color: var(--brand-green); font-weight: 1000; }
.deliverables-card { display: grid; gap: .9rem; }
.mini-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin-top: 1.4rem; }
.mini-proof-grid span { display: grid; padding: 1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; }
.mini-proof-grid strong { color: var(--brand-yellow); font-size: 1.8rem; }
.proof-media img { width: 100%; max-height: 520px; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.inline-list { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; }
.inline-list li { padding: .45rem .65rem; border-radius: 999px; background: var(--brand-mist); color: var(--brand-teal); font-weight: 850; font-size: .88rem; }
.service-showcase { display: grid; gap: 1.4rem; }
.service-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem; box-shadow: var(--shadow-soft); }
.service-feature:nth-child(even) .service-feature__media { order: 2; }
.service-feature__media img { width: 100%; height: 360px; object-fit: cover; object-position: top; border-radius: 24px; background: var(--brand-mist); }
.progress-list { display: grid; gap: .8rem; }
.progress-list span { display: flex; justify-content: space-between; color: var(--brand-ink); }
.progress-list i { height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--brand-yellow) var(--p), rgba(255,255,255,.25) var(--p)); }

.value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.value-card { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); border-radius: var(--radius-md); padding: 1.2rem; }
.value-card h3 { color: #fff; font-size: 1.2rem; letter-spacing: -.02em; }
.founder-card img { border-radius: 24px; }
.founder-card div { padding-top: 1rem; }

.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.blog-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; background: var(--brand-mist); }
.blog-card__body { padding: 1.2rem; }
.blog-card__body span { color: var(--brand-teal); font-weight: 900; font-size: .85rem; }
.blog-card__body h2 { font-size: 1.7rem; margin-top: .45rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 2rem; align-items: start; }
.article-content { font-size: 1.08rem; }
.article-content h2 { font-size: 2rem; margin-top: 2rem; }
.article-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); margin-bottom: 2rem; }
.article-sidebar { position: relative; }
.sticky-card { position: sticky; top: 130px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; }
.contact-list { padding: 0; margin: 1rem 0; list-style: none; display: grid; gap: .9rem; }
.contact-list li { display: grid; gap: .2rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--brand-slate); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.contact-list a, .contact-list strong { color: var(--brand-ink); font-weight: 900; }
.map-frame { overflow: hidden; border-radius: 24px; border: 1px solid var(--line); margin-top: 1.3rem; }
.map-frame iframe { height: 320px; }
.wizard-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: start; }
.quote-wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow); }
.wizard-step { display: grid; gap: 1rem; }
.wizard-step > span { color: var(--brand-teal); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.audit-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.audit-grid span { padding: .6rem .75rem; background: var(--brand-mist); color: var(--brand-teal); border-radius: 999px; font-weight: 900; }
.faq-list { display: grid; gap: .8rem; margin-top: 2rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1.15rem; box-shadow: var(--shadow-soft); }
.faq-item summary { font-weight: 900; cursor: pointer; color: var(--brand-ink); }
.faq-item p { margin: .8rem 0 0; }
.prose h2 { font-size: 2rem; margin-top: 2rem; }

.project-modal, .quickquote { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; background: rgba(7,29,37,.70); backdrop-filter: blur(12px); }
.project-modal[hidden], .quickquote[hidden], .cookie-banner[hidden] { display: none; }
.project-modal__panel, .quickquote__panel { position: relative; width: min(100%, 720px); max-height: min(90vh, 720px); overflow: auto; background: var(--surface); color: var(--brand-ink); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.project-modal__panel button[data-project-close], .quickquote__close { position: absolute; right: 1rem; top: 1rem; border: 0; background: var(--brand-mist); color: var(--brand-ink); width: 42px; height: 42px; border-radius: 50%; font-size: 1.6rem; font-weight: 900; }
.project-modal ul { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; }
.project-modal li { padding: .45rem .65rem; background: var(--brand-mist); color: var(--brand-teal); border-radius: 999px; font-weight: 900; }
.mini-form { display: grid; gap: .8rem; }
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 180; width: min(100% - 2rem, 720px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.cookie-banner p { margin: 0; }
.float-call { position: fixed; right: 1rem; bottom: 1rem; z-index: 120; border: 0; background: var(--brand-yellow); color: var(--brand-ink); padding: .95rem 1.05rem; border-radius: 999px; box-shadow: var(--shadow); font-weight: 1000; }
.mobile-callbar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

.site-footer { background: #051A21; color: #fff; }
.footer-cta { background: radial-gradient(circle at 90% 0%, rgba(248,213,9,.16), transparent 26rem), linear-gradient(135deg, var(--brand-teal-dark), #082A32); }
.footer-cta__grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.footer-cta p { color: rgba(255,255,255,.78); }
.footer-cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 2rem; padding: 3rem 0; }
.footer-brand img { width: 150px; background: rgba(255,255,255,.96); border-radius: 18px; padding: .35rem; margin-bottom: 1rem; }
.footer-main p, .footer-bottom p, .footer-links a, .footer-contact span { color: rgba(255,255,255,.72); }
.footer-contact { display: grid; gap: .35rem; margin-top: 1rem; }
.footer-contact a { color: #fff; font-weight: 900; }
.footer-heading { font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-yellow); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a:hover { color: var(--brand-yellow); }
.footer-links--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 0 5rem; }
.footer-bottom__inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .header-actions .btn--phone { display: none; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .topbar__address, .topbar__divider { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-shell { min-height: 76px; }
  .primary-nav { position: fixed; inset: 76px 1rem auto 1rem; display: grid; gap: .3rem; padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; max-height: calc(100vh - 96px); overflow-y: auto; }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-dropdown__menu { position: static; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; margin-top: .25rem; min-width: 0; border-radius: 16px; }
  .header-actions .btn--primary { display: none; }
  .hero__grid, .split-grid, .quote-panel, .contact-grid, .wizard-grid, .article-layout, .footer-cta__grid { grid-template-columns: 1fr; }
  .service-grid, .portfolio-grid, .location-directory, .outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-strip--three { grid-template-columns: 1fr; }
  .service-feature, .service-feature:nth-child(even) { grid-template-columns: 1fr; }
  .service-feature:nth-child(even) .service-feature__media { order: initial; }
  .hero { padding-top: 3rem; }
  .floating-card { position: static; margin-top: .8rem; max-width: none; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .service-grid, .portfolio-grid, .location-directory, .outcome-grid, .blog-grid, .value-grid, .form-grid, .footer-main, .mini-proof-grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; }
  .topbar__link { display: none; }
  .brand { width: 120px; flex-basis: 120px; }
  .brand img { width: 120px; }
  .hero__actions .btn, .footer-cta__actions .btn { width: 100%; }
  .section-heading--inline { display: grid; }
  .process-list div { grid-template-columns: 1fr; }
  .float-call { display: none; }
  .mobile-callbar { position: fixed; display: grid; grid-template-columns: 1fr 1fr; left: 0; right: 0; bottom: 0; z-index: 140; background: var(--brand-ink); box-shadow: 0 -12px 32px rgba(0,0,0,.18); }
  .mobile-callbar a { display: grid; place-items: center; min-height: 58px; color: #fff; font-weight: 1000; }
  .mobile-callbar a:first-child { background: var(--brand-yellow); color: #071D25; }
  .footer-bottom { padding-bottom: 4.75rem; }
  .cookie-banner { bottom: 4.3rem; display: grid; }
}

/* 2026 WOW pass: premium hero slider, real imagery, cleaner conversion-focused presentation */
.site-header { background: color-mix(in srgb, var(--surface) 78%, transparent); }
.site-header .btn--primary { box-shadow: 0 12px 30px rgba(248,213,9,.22); }
.topbar { background: linear-gradient(90deg, var(--brand-teal-dark), var(--brand-teal)); }
.brand { width: 156px; flex-basis: 156px; }
.brand img { width: 156px; }

.hero-wow {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(4.4rem, 7vw, 7.4rem) 0 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(248,213,9,.24), transparent 22rem),
    radial-gradient(circle at 20% 25%, rgba(126,195,78,.22), transparent 26rem),
    linear-gradient(135deg, #051820 0%, #07343a 48%, #003c3a 100%);
}
.hero-wow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 86%);
  pointer-events: none;
}
.hero-wow__ambient {
  position: absolute;
  width: 46vw;
  height: 46vw;
  right: -10vw;
  top: -18vw;
  border-radius: 999px;
  background: conic-gradient(from 180deg, rgba(248,213,9,.45), rgba(126,195,78,.34), rgba(0,107,104,.08), rgba(248,213,9,.45));
  filter: blur(44px);
  opacity: .72;
  animation: heroSpin 16s linear infinite;
}
@keyframes heroSpin { to { transform: rotate(360deg); } }
.hero-wow__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 5.25rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero-wow__copy { max-width: 760px; }
.hero-wow__eyebrow { color: var(--brand-yellow); }
.hero-wow h1 {
  font-size: clamp(3.55rem, 7.25vw, 7.55rem);
  line-height: .9;
  letter-spacing: -.075em;
  margin-bottom: 1.25rem;
}
.hero-wow__lead {
  max-width: 680px;
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  color: rgba(255,255,255,.86);
}
.hero-wow__actions { display: flex; gap: .85rem; flex-wrap: wrap; margin: 1.85rem 0; }
.hero-wow__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  max-width: 690px;
}
.hero-wow__stats span {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.095);
  color: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.hero-wow__stats strong {
  display: block;
  color: var(--brand-yellow);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1;
}
.hero-wow__microproof { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .9rem; }
.hero-wow__microproof span { font-size: .88rem; font-weight: 850; color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: .45rem .7rem; }
.hero-wow__showcase {
  min-height: 650px;
  position: relative;
  perspective: 1200px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(34px) scale(.965) rotateY(-4deg);
  transition: opacity .55s ease, transform .65s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; transform: translateX(0) scale(1) rotateY(0); pointer-events: auto; }
.hero-slide__image-wrap {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.06)),
    radial-gradient(circle at 32% 24%, rgba(248,213,9,.16), transparent 18rem);
  box-shadow: 0 50px 120px rgba(0,0,0,.34);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.hero-slide__image-wrap::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}
.hero-slide__art {
  position: absolute;
  z-index: 2;
  width: min(46%, 270px);
  right: 4%;
  top: 4%;
  filter: drop-shadow(0 30px 36px rgba(0,0,0,.26));
  animation: floatArt 5s ease-in-out infinite;
}
@keyframes floatArt { 50% { transform: translateY(-12px) rotate(1.5deg); } }
.hero-slide__screen {
  position: absolute;
  left: 7%;
  bottom: -12%;
  width: min(58%, 420px);
  height: 86%;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: #fff;
  border: 9px solid rgba(255,255,255,.92);
  box-shadow: 0 34px 80px rgba(0,0,0,.34);
  transform: rotate(-3deg);
}
.hero-slide__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-slide__caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 8%;
  width: min(74%, 430px);
  padding: 1.35rem;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  color: var(--brand-ink);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(22px);
}
.hero-slide__caption p { margin-bottom: .25rem; color: var(--brand-teal); font-weight: 1000; text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; }
.hero-slide__caption h2 { font-size: clamp(2rem, 3.1vw, 3.2rem); margin-bottom: .45rem; color: var(--brand-ink); }
.hero-slide__caption span { color: var(--brand-slate); display: block; }
.hero-slide__caption a { display: inline-flex; margin-top: .8rem; color: var(--brand-teal); font-weight: 1000; }
.hero-slider-nav {
  position: absolute;
  z-index: 8;
  left: 1.35rem;
  bottom: 1.35rem;
  display: flex;
  gap: .55rem;
}
.hero-slider-nav button { width: 56px; height: 12px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.22); overflow: hidden; }
.hero-slider-nav button span { display: block; height: 100%; width: 0; background: var(--brand-yellow); border-radius: inherit; }
.hero-slider-nav button.is-active span { width: 100%; transition: width 5.8s linear; }
.hero-wow__ticker { position: relative; z-index: 3; overflow: hidden; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.075); }
.hero-wow__ticker div { display: flex; gap: 1rem; width: max-content; padding: .9rem 0; animation: marquee 28s linear infinite; }
.hero-wow__ticker span { color: rgba(255,255,255,.78); font-weight: 1000; white-space: nowrap; text-transform: uppercase; letter-spacing: .13em; font-size: .82rem; }

.trust-ribbon { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-ribbon__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.trust-ribbon__grid div { padding: 1.15rem 1rem; border-left: 1px solid var(--line); display: grid; gap: .15rem; }
.trust-ribbon__grid div:last-child { border-right: 1px solid var(--line); }
.trust-ribbon strong { color: var(--brand-ink); line-height: 1.1; }
.trust-ribbon span { color: var(--brand-slate); font-size: .92rem; }

.premium-intro { background: linear-gradient(180deg, var(--surface), var(--surface-2)); }
.intro-card { position: relative; }
.intro-card::before { content: ""; position: absolute; inset: 8% -4% -6% 10%; border-radius: 42px; background: linear-gradient(135deg, var(--brand-green), var(--brand-yellow)); opacity: .55; filter: blur(30px); }
.intro-card img { position: relative; border-radius: 42px; box-shadow: var(--shadow); transform: rotate(-1.6deg); }
.intro-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 1.4rem; }

.services-wow { background: radial-gradient(circle at 8% 20%, rgba(126,195,78,.10), transparent 24rem), var(--surface); }
.services-wow__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-wow-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-wow-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand-green) 55%, var(--line)); }
.service-wow-card__media { height: 190px; background: var(--brand-mist); overflow: hidden; }
.service-wow-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.service-wow-card:hover .service-wow-card__media img { transform: scale(1.06); }
.service-wow-card__body { padding: 1.15rem; }
.service-wow-card__body span { display: block; color: var(--brand-teal); font-weight: 1000; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .45rem; }
.service-wow-card__body h3 { font-size: 1.55rem; letter-spacing: -.045em; }
.service-wow-card__body strong { color: var(--brand-teal); }

.performance-band { position: relative; overflow: hidden; }
.performance-band::before { content: ""; position: absolute; width: 32rem; height: 32rem; border-radius: 999px; right: -10rem; top: -8rem; background: rgba(248,213,9,.08); filter: blur(28px); }
.process-list--glow div { box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 18px 54px rgba(0,0,0,.12); }
.conversion-console { position: relative; min-height: 520px; display: grid; place-items: center; }
.conversion-console > img { width: min(90%, 560px); border-radius: 34px; background: rgba(255,255,255,.92); padding: 1rem; box-shadow: 0 36px 90px rgba(0,0,0,.28); }
.console-card { position: absolute; width: 210px; padding: 1rem; border-radius: 22px; background: rgba(255,255,255,.92); color: var(--brand-ink); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.console-card strong { color: var(--brand-teal); display: block; }
.console-card span { color: var(--brand-slate); font-size: .92rem; }
.console-card--one { top: 4%; left: 2%; transform: rotate(-4deg); }
.console-card--two { right: 1%; top: 36%; transform: rotate(5deg); }
.console-card--three { left: 10%; bottom: 5%; transform: rotate(3deg); }

.portfolio-wow { background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.portfolio-wow__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.portfolio-wow-card { background: var(--surface); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-soft); overflow: hidden; display: grid; }
.portfolio-wow-card--featured { grid-column: span 2; grid-row: span 2; }
.portfolio-wow-card__media { height: 310px; overflow: hidden; background: var(--brand-mist); }
.portfolio-wow-card--featured .portfolio-wow-card__media { height: 620px; }
.portfolio-wow-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s ease; }
.portfolio-wow-card:hover img { transform: translateY(-3%) scale(1.02); }
.portfolio-wow-card__body { padding: 1.05rem; }
.portfolio-wow-card__body span { display: block; color: var(--brand-teal); font-weight: 1000; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.portfolio-wow-card__body h3 { font-size: 1.45rem; margin-top: .25rem; }

.crm-section { background: var(--surface); }
.crm-stack { position: relative; min-height: 520px; }
.crm-stack__main { width: 88%; border-radius: 32px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.crm-stack__mini { position: absolute; right: 0; bottom: 0; width: 44%; max-height: 360px; object-fit: cover; object-position: top; border-radius: 26px; border: 8px solid var(--surface); box-shadow: var(--shadow); }

.testimonials-wow { background: radial-gradient(circle at 92% 10%, rgba(248,213,9,.10), transparent 23rem), var(--surface-2); }
.roi-section { background: var(--surface); }
.location-tease { background: linear-gradient(180deg, var(--surface), var(--surface-2)); }

.final-form-section .quote-panel { box-shadow: var(--shadow); }

@media (max-width: 1100px) {
  .hero-wow__grid { grid-template-columns: 1fr; }
  .hero-wow__showcase { min-height: 620px; }
  .services-wow__grid, .portfolio-wow__grid, .trust-ribbon__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-wow-card--featured { grid-column: span 1; grid-row: span 1; }
  .portfolio-wow-card--featured .portfolio-wow-card__media, .portfolio-wow-card__media { height: 390px; }
}
@media (max-width: 760px) {
  .hero-wow { padding-top: 3rem; }
  .hero-wow h1 { font-size: clamp(3.1rem, 17vw, 4.6rem); }
  .hero-wow__stats, .services-wow__grid, .portfolio-wow__grid, .trust-ribbon__grid { grid-template-columns: 1fr; }
  .hero-wow__showcase { min-height: 560px; }
  .hero-slide__image-wrap { min-height: 500px; border-radius: 30px; }
  .hero-slide__art { width: 44%; }
  .hero-slide__screen { width: 62%; left: 5%; height: 70%; }
  .hero-slide__caption { width: calc(100% - 1rem); right: .5rem; bottom: 3.75rem; padding: 1rem; }
  .hero-slider-nav { bottom: 1rem; left: 1rem; }
  .trust-ribbon__grid div { border-right: 1px solid var(--line); }
  .section-heading--inline { align-items: start; }
  .crm-stack { min-height: 420px; }
  .crm-stack__main { width: 100%; }
}

/* 2026 WOW homepage upgrade: visual-first, brand-faithful, conversion-focused. */
:root {
  --brand-black-teal: #041A20;
  --brand-deep-teal: #063238;
  --brand-lime: #7EC34E;
  --brand-gold: #F8D509;
}

body { overflow-x: hidden; }
.reveal { transition-delay: var(--delay, 0ms); }

.hero-showcase {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(720px, 88vh, 980px);
  padding: clamp(5rem, 8vw, 8.5rem) 0 0;
  background:
    linear-gradient(145deg, rgba(4,26,32,.96), rgba(0,78,76,.96) 58%, rgba(6,50,56,.98)),
    radial-gradient(circle at 20% 20%, rgba(126,195,78,.25), transparent 26rem),
    radial-gradient(circle at 85% 10%, rgba(248,213,9,.24), transparent 30rem);
  isolation: isolate;
}
.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0, transparent 72%);
  opacity: .45;
  z-index: -3;
}
.hero-showcase::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -15rem;
  height: 26rem;
  background: radial-gradient(closest-side, rgba(248,213,9,.18), transparent 72%);
  z-index: -2;
}
.hero-showcase__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(28px);
  opacity: .34;
  z-index: -2;
  pointer-events: none;
}
.hero-showcase__glow--one { left: -8rem; top: 8rem; background: var(--brand-lime); }
.hero-showcase__glow--two { right: -8rem; top: 2rem; background: var(--brand-gold); }
.hero-showcase__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .58rem .85rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-weight: 950;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  margin-bottom: 1.2rem;
}
.hero-badge span {
  width: .72rem;
  height: .72rem;
  border-radius: 999px;
  background: var(--brand-lime);
  box-shadow: 0 0 0 .35rem rgba(126,195,78,.14), 0 0 2rem rgba(126,195,78,.55);
}
.hero-slide-copy { display: none; }
.hero-slide-copy.is-active { display: block; animation: heroCopyIn .55s ease both; }
.hero-title, .hero-showcase h1 {
  margin: 0 0 1.3rem;
  max-width: 900px;
  font-size: clamp(3.2rem, 7.8vw, 7.8rem);
  line-height: .91;
  letter-spacing: -.075em;
  text-wrap: balance;
  color: #fff;
}
.hero-showcase .eyebrow { color: var(--brand-gold); }
.hero-showcase__lead {
  max-width: 770px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin: 2rem 0 1.4rem;
}
.hero-text-link {
  color: #fff;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: .35em;
  opacity: .92;
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.hero-proof-row span {
  display: inline-flex;
  gap: .38rem;
  align-items: center;
  padding: .72rem .9rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}
.hero-proof-row strong { color: var(--brand-gold); }
.hero-showcase__visual { min-width: 0; }
.hero-slider-frame {
  position: relative;
  min-height: clamp(480px, 55vw, 700px);
  perspective: 1400px;
}
.hero-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(44px) rotateY(-8deg) scale(.96);
  transition: opacity .55s ease, transform .65s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.hero-panel.is-active {
  opacity: 1;
  transform: translateX(0) rotateY(0) scale(1);
  pointer-events: auto;
}
.hero-panel__image-wrap {
  width: min(100%, 640px);
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06)),
    radial-gradient(circle at 70% 20%, rgba(248,213,9,.15), transparent 18rem);
  box-shadow: 0 45px 100px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(22px);
}
.hero-panel__image-wrap img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(0,0,0,.20));
  animation: floatHero 6s ease-in-out infinite;
}
.hero-panel__caption {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 3%;
  display: grid;
  gap: .25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: rgba(4,26,32,.74);
  color: #fff;
  box-shadow: 0 20px 70px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
}
.hero-panel__caption strong { color: var(--brand-gold); font-size: 1.05rem; }
.hero-panel__caption span { color: rgba(255,255,255,.78); }
.hero-metric {
  position: absolute;
  z-index: 4;
  max-width: 220px;
  display: grid;
  gap: .2rem;
  padding: .95rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  background: rgba(255,255,255,.13);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  backdrop-filter: blur(18px);
}
.hero-metric strong { color: var(--brand-gold); }
.hero-metric span { color: rgba(255,255,255,.76); font-size: .9rem; }
.hero-metric--left { left: -1.4rem; top: 16%; }
.hero-metric--right { right: -1.2rem; top: 54%; }
.hero-slider-controls {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin-top: 1.3rem;
}
.hero-dot {
  width: 2.8rem;
  height: .42rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  padding: 0;
  overflow: hidden;
}
.hero-dot::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: var(--brand-gold);
  border-radius: inherit;
}
.hero-dot.is-active::before { animation: heroProgress 6.8s linear forwards; }
.hero-service-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.hero-service-ticker div {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: .9rem 0;
  animation: marquee 34s linear infinite;
}
.hero-service-ticker span {
  display: inline-flex;
  padding: .55rem 1rem;
  color: rgba(255,255,255,.82);
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .8rem;
}
@keyframes heroCopyIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatHero { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes heroProgress { to { width: 100%; } }

.trust-band {
  position: relative;
  z-index: 4;
  margin-top: -2px;
  background: linear-gradient(180deg, #fff, var(--surface-2));
  border-bottom: 1px solid var(--line);
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
  transform: translateY(-44px);
}
.trust-stat {
  min-height: 145px;
  display: grid;
  align-content: center;
  gap: .3rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(7,29,37,.13);
  backdrop-filter: blur(18px);
}
.trust-stat img { width: 48px; height: 48px; object-fit: contain; margin-bottom: .3rem; }
.trust-stat strong { color: var(--brand-ink); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1; letter-spacing: -.05em; }
.trust-stat span { color: var(--brand-slate); font-weight: 850; }

.premium-intro { padding-top: clamp(2rem, 4vw, 4rem); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.intro-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.intro-showcase { position: relative; }
.intro-showcase img {
  width: 100%;
  border-radius: 42px;
  box-shadow: 0 30px 90px rgba(7,29,37,.14);
}
.intro-showcase__card {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: .25rem;
  padding: 1.05rem 1.15rem;
  border-radius: 22px;
  background: rgba(4,26,32,.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
}
.intro-showcase__card strong { color: var(--brand-gold); }
.intro-showcase__card span { color: rgba(255,255,255,.78); }

.service-lab { background: var(--surface); }
.service-lab__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-lab-card a {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: grid;
  grid-template-rows: 210px 1fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-lab-card a:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(126,195,78,.48); }
.service-lab-card__media { position: relative; overflow: hidden; background: var(--brand-mist); }
.service-lab-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,26,32,.25));
  pointer-events: none;
}
.service-lab-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .45s ease; }
.service-lab-card a:hover img { transform: scale(1.06); }
.service-lab-card__body { padding: 1.2rem; display: grid; gap: .5rem; align-content: start; }
.service-lab-card__body span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #08241C;
  background: linear-gradient(135deg, var(--brand-lime), var(--brand-gold));
  font-weight: 1000;
}
.service-lab-card__body h3 { font-size: 1.42rem; margin: 0; letter-spacing: -.04em; }
.service-lab-card__body p { font-size: .95rem; margin-bottom: .1rem; }
.service-lab-card__body strong { color: var(--brand-teal); }

.portfolio-theater {
  background:
    radial-gradient(circle at 8% 0%, rgba(126,195,78,.12), transparent 24rem),
    linear-gradient(180deg, var(--surface-2), #fff);
}
.portfolio-theater__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.portfolio-theater__top p:not(.eyebrow) { max-width: 760px; }
.portfolio-theater__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 1rem;
}
.portfolio-feature {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #061E26;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.portfolio-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.portfolio-feature--large { grid-column: span 2; grid-row: span 2; }
.portfolio-feature img { width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: .86; transition: transform .5s ease, opacity .5s ease; }
.portfolio-feature:hover img { transform: scale(1.04); opacity: .98; }
.portfolio-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4,26,32,.92));
  z-index: 0;
}
.portfolio-feature__content {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: .25rem;
}
.portfolio-feature__content span {
  color: var(--brand-gold);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
}
.portfolio-feature__content h3 { color: #fff; margin: 0; font-size: clamp(1.25rem, 2vw, 2rem); letter-spacing: -.045em; }
.portfolio-feature__content p { color: rgba(255,255,255,.78); margin: 0; font-size: .95rem; }

.crm-band { position: relative; overflow: hidden; }
.crm-band::before {
  content: "";
  position: absolute;
  right: -18rem;
  top: -14rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(248,213,9,.12);
  filter: blur(8px);
}
.crm-preview {
  padding: .8rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}
.crm-preview img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  object-position: top;
  background: #fff;
}
.check-list--light li { color: rgba(255,255,255,.78); }

.process-studio { background: var(--surface); }
.process-art {
  padding: 1.2rem;
  border-radius: 38px;
  background: linear-gradient(145deg, var(--brand-mist), #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.process-art img { width: 100%; border-radius: 28px; }
.process-steps { display: grid; gap: .85rem; margin-top: 1.4rem; }
.process-steps div {
  display: grid;
  grid-template-columns: 64px 140px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.process-steps span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-dark));
  color: #fff;
  font-weight: 1000;
}
.process-steps strong { color: var(--brand-ink); font-size: 1.15rem; }
.process-steps p { margin: 0; }

.roi-section { background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.quote-panel--home { align-items: center; }
.contact-card--mini { margin-top: 1.2rem; display: grid; gap: .25rem; }
.contact-card--mini a { color: var(--brand-teal); font-size: 1.35rem; font-weight: 1000; }

.testimonials-modern { background: var(--surface); }
.testimonials-modern .testimonial-card { border-radius: 28px; min-height: 340px; }

.local-pages-preview {
  background:
    radial-gradient(circle at 90% 5%, rgba(248,213,9,.12), transparent 22rem),
    linear-gradient(180deg, var(--surface), var(--surface-2));
}
.location-pills--featured a {
  transform: rotate(var(--r, 0deg));
  box-shadow: var(--shadow-soft);
}
.location-pills--featured a:nth-child(3n) { --r: -1deg; }
.location-pills--featured a:nth-child(3n+2) { --r: 1deg; }

.site-footer .footer-bottom__inner p:last-child { font-weight: 850; color: rgba(255,255,255,.62); }

@media (max-width: 1180px) {
  .hero-metric--left { left: .4rem; }
  .hero-metric--right { right: .4rem; }
  .service-lab__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-theater__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-feature--large { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-showcase { min-height: 0; padding-top: 3.5rem; }
  .hero-showcase__inner { grid-template-columns: 1fr; }
  .hero-showcase__visual { order: -1; }
  .hero-slider-frame { min-height: 520px; }
  .hero-title, .hero-showcase h1 { font-size: clamp(2.8rem, 12vw, 5.8rem); }
  .trust-band__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-lab__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-theater__top { grid-template-columns: 1fr; align-items: start; }
  .portfolio-theater__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 310px; }
  .portfolio-feature--large { grid-column: span 2; grid-row: span 1; }
  .process-steps div { grid-template-columns: 58px 1fr; }
  .process-steps p { grid-column: 2; }
}

@media (max-width: 640px) {
  .hero-showcase { padding-top: 2.4rem; }
  .hero-badge { font-size: .72rem; }
  .hero-actions .btn, .hero-actions .hero-text-link { width: 100%; justify-content: center; text-align: center; }
  .hero-slider-frame { min-height: 420px; }
  .hero-panel__image-wrap { border-radius: 28px; }
  .hero-panel__caption { position: static; margin-top: -1.5rem; }
  .hero-metric { display: none; }
  .trust-band__grid { grid-template-columns: 1fr; transform: translateY(-24px); }
  .service-lab__grid, .portfolio-theater__grid { grid-template-columns: 1fr; }
  .portfolio-feature--large { grid-column: auto; }
  .portfolio-feature { min-height: 330px; }
  .service-lab-card a { grid-template-rows: 190px 1fr; }
  .process-steps div { grid-template-columns: 1fr; }
  .process-steps p { grid-column: auto; }
}


/* === 2026 World-Class Refresh: cleaner hero, visible project screenshots, AI positioning === */
:root { --hero-black: #031C23; --electric-line: rgba(248,213,9,.55); }
.hero-command { position: relative; overflow: hidden; isolation: isolate; color: #fff; background: radial-gradient(circle at 18% 10%, rgba(126,195,78,.22), transparent 34rem), radial-gradient(circle at 82% 4%, rgba(248,213,9,.18), transparent 30rem), linear-gradient(135deg, #031C23 0%, #052D35 52%, #09453F 100%); padding: clamp(5.2rem, 9vw, 9rem) 0 0; }
.hero-command::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(180deg, #000, transparent 80%); z-index:-2; }
.hero-command__backdrop { position:absolute; inset:auto -12% -22% -12%; height:34rem; background: radial-gradient(closest-side, rgba(248,213,9,.16), transparent 68%); z-index:-1; }
.hero-command__grid { display:grid; grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr); gap: clamp(2rem, 5vw, 5.5rem); align-items:center; padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero-badge { display:inline-flex; align-items:center; gap:.7rem; padding:.62rem .92rem; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.82); font-weight:900; font-size:.86rem; margin-bottom:1.15rem; backdrop-filter: blur(16px); }
.hero-badge span { width:.75rem; height:.75rem; border-radius:50%; background:var(--brand-yellow); box-shadow: 0 0 0 7px rgba(248,213,9,.16); }
.hero-command h1, .hero-command__title { font-size: clamp(3.35rem, 7.8vw, 7.4rem); line-height:.92; letter-spacing:-.075em; margin:0 0 1.25rem; color:#fff; text-wrap: balance; }
.hero-command__title { display:block; font-weight:950; }
.hero-command__lead { max-width: 760px; color: rgba(255,255,255,.84); font-size: clamp(1.1rem, 1.55vw, 1.34rem); line-height:1.55; }
.hero-command__actions { display:flex; flex-wrap:wrap; gap:.85rem; margin:1.8rem 0 1.35rem; }
.hero-command__proof { display:flex; flex-wrap:wrap; gap:.7rem; }
.hero-command__proof span { display:inline-flex; align-items:center; gap:.36rem; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.075); color:rgba(255,255,255,.82); border-radius:999px; padding:.68rem .85rem; font-weight:800; }
.hero-command__proof strong { color: var(--brand-yellow); }
.hero-slide-copy { display:none; }
.hero-slide-copy.is-active { display:block; animation: heroFade .55s ease both; }
@keyframes heroFade { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.hero-command__stage { position:relative; min-height: 680px; display:grid; align-items:end; }
.hero-device-carousel { position:absolute; inset:0 0 auto 0; height: 440px; perspective: 1400px; }
.hero-panel { position:absolute; inset:0 0 auto 0; opacity:0; transform: translateX(30px) scale(.96) rotateY(-8deg); transition: opacity .55s ease, transform .55s ease; pointer-events:none; }
.hero-panel.is-active { opacity:1; transform: translateX(0) scale(1) rotateY(0); pointer-events:auto; }
.hero-browser { overflow:hidden; border:1px solid rgba(255,255,255,.18); border-radius: 34px; background:rgba(255,255,255,.10); box-shadow: 0 45px 120px rgba(0,0,0,.35); backdrop-filter: blur(16px); }
.hero-browser__bar, .browser-frame__bar { min-height:44px; display:flex; align-items:center; gap:.48rem; padding:0 1rem; background:rgba(255,255,255,.92); border-bottom:1px solid rgba(7,29,37,.10); }
.hero-browser__bar span, .browser-frame__bar span { width:.72rem; height:.72rem; border-radius:50%; background:#DFE7E9; }
.hero-browser__bar span:first-child, .browser-frame__bar span:first-child { background:#FF6B6B; }
.hero-browser__bar span:nth-child(2), .browser-frame__bar span:nth-child(2) { background:#FFD166; }
.hero-browser__bar span:nth-child(3), .browser-frame__bar span:nth-child(3) { background:#7EC34E; }
.hero-browser__bar em { margin-left:auto; color:var(--brand-teal); font-style:normal; font-weight:950; font-size:.82rem; text-transform:uppercase; letter-spacing:.09em; }
.hero-browser img { width:100%; height:390px; object-fit:contain; object-position:center; padding:1rem; background:linear-gradient(135deg, #fff, #F4FBFA); }
.hero-form-card { position:relative; align-self:end; margin-left:auto; width:min(100%, 510px); padding:1.35rem; border-radius:30px; background:rgba(255,255,255,.94); color:var(--brand-ink); border:1px solid rgba(255,255,255,.48); box-shadow: 0 30px 80px rgba(0,0,0,.32); backdrop-filter: blur(20px); transform: translateY(1.4rem); }
.hero-form-card h2 { font-size: clamp(1.65rem, 2.4vw, 2.35rem); letter-spacing:-.045em; margin-bottom:.5rem; color:var(--brand-ink); }
.hero-form-card p { margin-bottom: .9rem; }
.hero-mini-form { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:.75rem; }
.hero-mini-form .btn { grid-column:1 / -1; }
.hero-mini-form label:nth-of-type(3), .hero-mini-form label:nth-of-type(4) { grid-column: 1 / -1; }
.hero-slider-controls--command { justify-content:flex-start; margin-top:1.15rem; }
.hero-slider-controls--command .hero-dot { position:relative; width:58px; height:10px; border-radius:999px; overflow:hidden; border:1px solid rgba(255,255,255,.24); background:rgba(255,255,255,.14); }
.hero-slider-controls--command .hero-dot span { display:block; height:100%; width:0%; background:linear-gradient(90deg, var(--brand-yellow), var(--brand-green)); }
.hero-slider-controls--command .hero-dot.is-active { background:rgba(255,255,255,.28); }
.trust-band--lift { position:relative; z-index:2; margin-top:-1px; background:linear-gradient(180deg, var(--surface), var(--surface-2)); }
.service-lab--premium .service-lab-card { transform-style:preserve-3d; }
.ai-spotlight .check-list li::before { color: var(--brand-yellow); }
.ai-orbit { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:1rem; }
.ai-orbit div { min-height:170px; display:grid; align-content:end; padding:1.25rem; border-radius:28px; background:linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06)); border:1px solid rgba(255,255,255,.18); box-shadow:0 24px 70px rgba(0,0,0,.20); }
.ai-orbit div:nth-child(2), .ai-orbit div:nth-child(3) { transform: translateY(1.6rem); }
.ai-orbit strong { display:block; color:#fff; font-size:1.35rem; line-height:1.1; margin-bottom:.45rem; }
.ai-orbit span { color:rgba(255,255,255,.78); }
.portfolio-preview--screens { background:linear-gradient(180deg, var(--surface-2), var(--surface)); }
.screenshot-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:1rem; }
.screenshot-grid--portfolio { grid-template-columns: repeat(3, minmax(0,1fr)); }
.screenshot-card { overflow:hidden; border-radius:28px; background:var(--surface); border:1px solid var(--line); box-shadow:var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.screenshot-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); border-color: color-mix(in srgb, var(--brand-green) 58%, var(--line)); }
.screenshot-card a, .screenshot-card button { display:block; width:100%; padding:0; border:0; background:transparent; color:inherit; text-align:left; }
.browser-frame { margin:.85rem; overflow:hidden; border-radius:22px; border:1px solid var(--line); background:#fff; }
.browser-frame img { width:100%; height:330px; object-fit:contain; object-position:top center; background:#F7FBFA; padding:.6rem; }
.browser-frame--tall img { height:470px; }
.screenshot-card__body { padding: .2rem 1.05rem 1.15rem; }
.screenshot-card__body span { color:var(--brand-teal); font-weight:950; font-size:.78rem; text-transform:uppercase; letter-spacing:.09em; }
.screenshot-card__body h3, .screenshot-card__body strong { display:block; margin:.35rem 0 .35rem; font-size:1.25rem; line-height:1.12; letter-spacing:-.035em; color:var(--brand-ink); }
.screenshot-card__body p { font-size:.94rem; margin:0; }
.crm-bridge__visual { display:grid; gap:1rem; grid-template-columns: 1fr 1fr; align-items:center; }
.crm-bridge__visual img { border-radius:28px; box-shadow:var(--shadow); background:var(--surface); }
.crm-bridge__visual img:first-child { transform: translateY(-1.2rem) rotate(-1.5deg); }
.crm-bridge__visual img:last-child { transform: translateY(1.2rem) rotate(1.5deg); }
.page-hero--portfolio { background: radial-gradient(circle at 85% 0%, rgba(248,213,9,.12), transparent 26rem), linear-gradient(180deg, var(--surface), var(--surface-2)); }
.portfolio-page--screens .portfolio-card img { height:auto; }
.project-modal__panel [data-project-modal-content] img { object-fit:contain !important; background:#F7FBFA; }
@media (max-width: 1120px) {
  .hero-command__grid { grid-template-columns: 1fr; }
  .hero-command__stage { min-height: 720px; }
  .hero-device-carousel { position:relative; height:430px; }
  .hero-form-card { margin:1.3rem 0 0; width:100%; transform:none; }
  .screenshot-grid, .screenshot-grid--portfolio { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .hero-command { padding-top:4rem; }
  .hero-command__stage { min-height:auto; }
  .hero-device-carousel { height:330px; }
  .hero-browser { border-radius:24px; }
  .hero-browser img { height:280px; padding:.5rem; }
  .hero-mini-form { grid-template-columns:1fr; }
  .hero-mini-form label:nth-of-type(3), .hero-mini-form label:nth-of-type(4) { grid-column:auto; }
  .screenshot-grid, .screenshot-grid--portfolio, .ai-orbit { grid-template-columns:1fr; }
  .ai-orbit div:nth-child(2), .ai-orbit div:nth-child(3) { transform:none; }
  .browser-frame img, .browser-frame--tall img { height:360px; }
  .crm-bridge__visual { grid-template-columns:1fr; }
  .crm-bridge__visual img { transform:none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide-copy.is-active { animation:none; }
}

/* Final portfolio screenshot overrides to prevent legacy portfolio image/text styles from taking over. */
.portfolio-page--screens .browser-frame img,
.screenshot-card.portfolio-card .browser-frame img {
  height: 470px !important;
  object-fit: contain !important;
  object-position: top center !important;
  padding: .6rem;
  background: #F7FBFA;
}
.screenshot-card.portfolio-card button strong,
.screenshot-card__body strong {
  padding: 0 !important;
}
@media (max-width: 760px) {
  .portfolio-page--screens .browser-frame img,
  .screenshot-card.portfolio-card .browser-frame img { height: 360px !important; }
}
