:root {
    --primary-blue: #2563eb;
    --deep-navy: #050b12;
    --navy-2: #07111f;
    --accent-orange: #f97316;
    --highlight-red: #f43f5e;
    --accent-yellow: #facc15;
    --success-green: #10b981;
    --link-green: #48d6d6;
    --link-green-dark: #008f95;
    --warm: #fff7e6;
    --white: #ffffff;
    --light-grey: #f5f7fa;
    --border: #e2e8f0;
    --medium-grey: #94a3b8;
    --body: #334155;
    --muted: #64748b;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    color: var(--body);
    font-family: Montserrat, Arial, sans-serif;
    background: var(--light-grey);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand strong {
    color: var(--deep-navy);
    font-family: Montserrat, Arial, sans-serif;
    letter-spacing: -0.01em;
}
h1 { margin-bottom: 24px; font-size: clamp(44px, 6.6vw, 82px); line-height: .96; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 54px); line-height: 1.02; }
h3 { margin-bottom: 10px; font-size: 22px; }
p { line-height: 1.65; }
.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-size: 24px;
    font-variation-settings: "FILL" 0, "wght" 650, "GRAD" 0, "opsz" 24;
    line-height: 1;
    vertical-align: middle;
}
.site-header {
    position: sticky; top: 0; z-index: 20;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: rgba(5, 11, 18, .96); backdrop-filter: blur(16px);
}
.brand { text-decoration: none; }
.brand-logo {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    line-height: .9;
    text-transform: uppercase;
}
.brand-logo-main { display: inline-flex; align-items: baseline; gap: 3px; font-size: 22px; letter-spacing: .1em; }
.brand-logo-first { color: var(--accent-orange); font-weight: 700; }
.brand-logo-light { color: var(--white); font-weight: 800; }
.brand-logo-designs { color: var(--medium-grey); font-size: 11px; font-weight: 500; letter-spacing: .58em; }
.brand-logo-dot { color: var(--success-green); }
.brand img { width: 230px; height: auto; }
.site-header, .button, .work-card, .logo-card, .review-card-light { transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.site-nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.site-nav a { position: relative; text-decoration: none; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active, .site-nav a:hover { color: var(--link-green); }
.site-nav > a:last-child { color: var(--link-green); }
.site-nav > a[href$="website-review/index.html"],
.site-nav > a[href$="contact.html"] {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 8px;
    padding: 0 14px;
}
.site-nav > a[href$="website-review/index.html"] {
    color: var(--deep-navy);
    background: var(--accent-yellow);
}
.site-nav > a[href$="contact.html"] {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-orange), #ff3d1f);
    box-shadow: 0 14px 34px rgba(249,115,22,.22);
}
.site-nav > a[href$="website-review/index.html"]::after,
.site-nav > a[href$="contact.html"]::after {
    display: none;
}
.site-nav > a[href$="website-review/index.html"]:hover,
.site-nav > a[href$="contact.html"]:hover {
    color: var(--white);
    transform: translateY(-1px);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown > a::before { content: "expand_more"; font-family: "Material Symbols Outlined"; order: 2; font-size: 18px; line-height: 1; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    display: grid;
    min-width: 190px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 8px;
    background: #050b12;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a { padding: 10px 12px; color: rgba(255,255,255,.78); }
.nav-dropdown-menu a::after { display: none; }
.nav-toggle { display: none; border: 0; color: var(--white); background: transparent; }
.hero, .page-hero {
    position: relative;
    overflow: hidden;
    display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: clamp(34px, 6vw, 84px); align-items: center;
    min-height: calc(96vh - 84px);
    padding: clamp(78px, 8vw, 128px) clamp(20px, 5vw, 72px);
    color: rgba(255,255,255,.82);
    background: radial-gradient(circle at 88% 52%, rgba(244,63,94,.22), transparent 20rem), radial-gradient(circle at 80% 35%, rgba(249,115,22,.2), transparent 24rem), radial-gradient(circle at 54% 45%, rgba(37,99,235,.16), transparent 20rem), linear-gradient(135deg, #050b12 0%, #07111f 62%, #020617 100%);
}

.hero.page-hero {
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: calc(100vh - 72px);
    padding-top: clamp(40px, 5vw, 68px);
    padding-bottom: clamp(24px, 3vw, 40px);
}
.hero::before {
    content: "";
    position: absolute;
    right: -9vw;
    bottom: 6%;
    width: 42vw;
    height: 42vw;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, rgba(249,115,22,.42) 0 2px, transparent 2px 14px);
    opacity: .22;
    pointer-events: none;
}
.hero > *, .page-hero > * { position: relative; z-index: 1; }
.hero h1, .page-hero h1 { color: var(--white); }
.hero h1 span, .page-hero h1 span { color: var(--accent-yellow); }
.hero h1 strong, .page-hero h1 strong { color: var(--highlight-red); font-weight: inherit; }
.eyebrow { color: var(--accent-orange); }
.hero-intro { max-width: 650px; margin-bottom: 34px; font-size: 20px; color: rgba(255,255,255,.84); }
.hero-proof {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    margin: clamp(18px, 2.6vw, 32px) 0 0;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 18px 54px rgba(0,0,0,.22);
}
.hero-proof div {
    display: grid;
    grid-template-columns: 42px auto;
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-items: center;
    min-width: 0;
    padding: 15px 20px;
    background: rgba(5,11,18,.68);
}
.hero-proof .material-symbols-outlined {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--primary-blue);
    background: rgba(37,99,235,.16);
    font-size: 23px;
}
.hero-proof div:nth-child(2) .material-symbols-outlined { color: var(--accent-orange); background: rgba(249,115,22,.16); }
.hero-proof div:nth-child(3) .material-symbols-outlined { color: var(--highlight-red); background: rgba(244,63,94,.16); }
.hero-proof div:nth-child(4) .material-symbols-outlined { color: var(--success-green); background: rgba(16,185,129,.16); }
.hero-proof strong {
    color: var(--white);
    font-size: 23px;
    line-height: 1;
}
.hero-proof small {
    color: rgba(255,255,255,.62);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}
.eyebrow { margin-bottom: 14px; font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-actions, .pill-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 54px; border-radius: 8px; padding: 14px 22px;
    font-weight: 900; text-decoration: none;
}
.button.primary { color: var(--white); background: linear-gradient(135deg, var(--accent-orange), #ff4d18); box-shadow: 0 14px 28px rgba(249,115,22,.24); }
.button.primary:hover { background: linear-gradient(135deg, var(--highlight-red), var(--accent-orange)); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(244,63,94,.24); }
.button.accent { color: #111827; background: var(--accent-yellow); box-shadow: 0 14px 28px rgba(250,204,21,.22); }
.button.accent:hover { background: var(--accent-orange); color: var(--white); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(249,115,22,.28); }
.button.secondary { border: 1px solid rgba(255,255,255,.34); color: var(--white); }
.button.secondary:hover { border-color: var(--accent-yellow); color: var(--accent-yellow); transform: translateY(-2px); }
.button.secondary.light { border-color: var(--border); color: var(--deep-navy); }
.hero-work-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    border-bottom: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}
.hero-work-link:hover {
    color: var(--link-green);
    border-color: var(--link-green);
    transform: translateX(4px);
}
.hero-showcase { position: relative; display: grid; gap: 16px; }
.hero-showcase img { border-radius: 18px; border: 0; box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34); transform: rotate(-3deg); }
.showcase-badge {
    position: absolute; right: -16px; bottom: 22px; display: flex; align-items: center; gap: 10px;
    max-width: 280px; border-radius: 999px; padding: 16px 18px; color: var(--white); background: linear-gradient(135deg, var(--highlight-red), var(--accent-orange)); box-shadow: var(--shadow);
}
.logo-strip { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px; align-items: center; padding: 42px clamp(28px, 6vw, 84px); background: #050b12; border-top: 1px solid rgba(255,255,255,.06); }
.logo-strip img { width: 100%; max-width: 190px; height: 54px; object-fit: contain; margin: auto; opacity: 1; filter: brightness(0) invert(1) contrast(1.35); transition: opacity .2s ease, transform .2s ease; }
.logo-strip img:hover { opacity: 1; transform: translateY(-2px); }
.section { padding: clamp(76px, 8vw, 118px) clamp(20px, 5vw, 72px); background: var(--white); }
.section:nth-of-type(even) { background: var(--light-grey); }
.split { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(36px,6vw,82px); align-items: start; }
.service-grid, .work-grid, .logo-grid, .review-grid { display: grid; gap: 28px; }
.service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.split > .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.service-grid article, .work-card, .logo-card, .review-card-light, .contact-panel {
    border: 1px solid var(--border); border-radius: 16px; background: var(--white); box-shadow: var(--shadow);
}
.service-grid article { padding: 30px; min-height: 230px; }
.service-grid .material-symbols-outlined { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 50%; color: var(--primary-blue); background: #eff6ff; }
.service-grid article:nth-child(2) .material-symbols-outlined { color: var(--accent-orange); background: #fff7ed; }
.service-grid article:nth-child(3) .material-symbols-outlined { color: var(--highlight-red); background: #fff1f2; }
.service-grid article:nth-child(4) .material-symbols-outlined { color: var(--success-green); background: #ecfdf5; }
.service-grid article:nth-child(5) .material-symbols-outlined { color: var(--accent-yellow); background: #fffbeb; }
.service-grid article:nth-child(6) .material-symbols-outlined { color: var(--primary-blue); background: #eff6ff; }
.service-grid article:nth-child(7) .material-symbols-outlined { color: var(--success-green); background: #ecfdf5; }
.warm { background: linear-gradient(135deg, var(--warm), #fff); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 30px; }
.services-intro {
    flex-direction: column;
    align-items: flex-start;
}
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-blue); font-weight: 900; text-decoration: none; border-bottom: 2px solid currentColor; padding-bottom: 4px; transition: color .2s ease, transform .2s ease; }
.text-link:hover { color: var(--accent-orange); transform: translateX(4px); }
.work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.work-card { overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.work-card:hover, .logo-card:hover, .review-card-light:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(15,23,42,.14); border-color: rgba(249,115,22,.35); }
.work-card a { display: grid; height: 100%; color: inherit; text-decoration: none; }
.work-card img { display: block; width: 100%; height: 320px; object-fit: cover; object-position: top center; background: var(--light-grey); }
.work-card span { margin: 26px 28px 10px; color: var(--accent-orange); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.work-card h3, .work-card p { margin-left: 28px; margin-right: 28px; }
.work-card p { margin-bottom: 28px; color: var(--muted); }
.logo-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.logo-card { padding: 30px; background: var(--white); }
.logo-card img { width: 100%; aspect-ratio: 2.1; object-fit: contain; padding: 18px; border-radius: 12px; background: var(--white); }
.logo-card h3 { margin-top: 18px; }
.section.dark-band { display: grid; grid-template-columns: minmax(240px,.5fr) minmax(0,1.5fr); gap: clamp(36px,5vw,72px); color: rgba(255,255,255,.82); background: radial-gradient(circle at 86% 12%, rgba(16,185,129,.18), transparent 24rem), radial-gradient(circle at 20% 80%, rgba(250,204,21,.1), transparent 20rem), linear-gradient(135deg, #020811, var(--deep-navy)); }
.dark-band h2, .dark-band h3 { color: var(--white); }
.review-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.review-grid.light { grid-template-columns: repeat(2, minmax(0,1fr)); }
.review-card-light { padding: 28px; }
.review-card-light img { width: 150px; height: auto; margin-bottom: 20px; }
.review-card-light blockquote { margin: 0 0 20px; color: var(--body); line-height: 1.55; }
.dark-band .review-card-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); box-shadow: 0 24px 70px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.dark-band .review-card-light blockquote { color: rgba(255,255,255,.84); }
.dark-band .review-card-light strong { color: var(--white); }
.dark-band .review-card-light span { color: rgba(255,255,255,.68); }
.review-card-light strong { display: block; color: var(--deep-navy); }
.review-card-light span { color: var(--muted); }
.sub-hero { padding: clamp(84px, 10vw, 140px) clamp(20px,5vw,72px); color: rgba(255,255,255,.82); background: linear-gradient(135deg, var(--deep-navy), #172554); }
.sub-hero h1 { max-width: 980px; color: var(--white); }
.sub-hero p:not(.eyebrow) { max-width: 780px; font-size: 20px; }
.approach-graphic { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.approach-graphic img { width: min(100%, 1280px); height: auto; margin: 0 auto; border-radius: 8px; box-shadow: var(--shadow); }
.project-hero { display: grid; grid-template-columns: minmax(0,.86fr) minmax(360px,1.14fr); gap: clamp(30px, 5vw, 70px); align-items: center; padding: clamp(70px,8vw,120px) clamp(20px,5vw,72px); background: var(--light-grey); }
.project-hero img {
    width: 100%;
    height: auto;
    object-position: top center;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.pill-row span { display: inline-flex; border-radius: 999px; padding: 10px 14px; color: var(--deep-navy); font-weight: 800; background: var(--warm); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; }
.contact-panel { display: grid; gap: 14px; align-content: start; padding: 32px; }
.contact-panel a, .contact-panel p { display: flex; align-items: center; gap: 10px; margin: 0; text-decoration: none; }
.contact-panel .material-symbols-outlined { color: var(--accent-orange); }
.contact-form-panel { grid-row: span 2; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 8px; }
.form-row label { color: var(--deep-navy); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px 16px;
    color: var(--deep-navy);
    font: inherit;
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row select {
    min-height: 52px;
    padding-right: 48px;
    appearance: none;
    background-color: var(--white);
    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 15px) 50%;
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
    cursor: pointer;
}
.form-row select:hover {
    border-color: rgba(15, 23, 42, .32);
}
.form-row textarea { resize: vertical; min-height: 150px; }
.form-status {
    margin: 0 0 18px;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 800;
}
.form-status.success {
    border: 1px solid rgba(16, 185, 129, .28);
    color: #047857;
    background: rgba(16, 185, 129, .09);
}
.form-status.error {
    border: 1px solid rgba(244, 63, 94, .28);
    color: #be123c;
    background: rgba(244, 63, 94, .09);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--success-green);
    box-shadow: 0 0 0 4px rgba(16,185,129,.14);
}
.contact-form .button { width: fit-content; border: 0; cursor: pointer; }
.accent-panel { background: var(--warm); }
.site-footer { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(190px, .7fr) minmax(280px, .9fr) auto; gap: clamp(22px, 4vw, 48px); align-items: start; padding: 30px clamp(20px,5vw,72px); color: rgba(255,255,255,.58); background: #050b12; border-top: 3px solid var(--link-green-dark); font-size: 13px; line-height: 1.55; }
.site-footer p, .site-footer address, .site-footer span { margin: 0; }
.site-footer address { color: rgba(255,255,255,.86); font-style: normal; font-weight: 700; }
.footer-main, .footer-links { display: grid; gap: 6px; }
.footer-main p { max-width: 360px; }
.footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; align-content: start; min-width: 0; }
.site-footer a { color: var(--link-green); font-size: 13px; font-weight: 700; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.footer-links a { min-width: 0; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--link-green-dark); }
.google-review-widget {
    display: grid;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,.045);
}
.google-review-label {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.google-review-widget strong {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    line-height: 1;
}
.google-stars {
    color: var(--link-green);
    font-size: 14px;
    letter-spacing: 1px;
}
.google-review-widget small {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    font-weight: 600;
}
.google-review-widget a {
    width: fit-content;
    color: var(--link-green);
    font-size: 12px;
}
.footer-social { display: flex; gap: 8px; align-items: center; justify-content: end; }
.footer-social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: rgba(255,255,255,.045); }
.footer-social a:hover { transform: translateY(-2px); background: rgba(16,185,129,.14); }
.footer-social img { width: 17px; height: 17px; object-fit: contain; }
@media (max-width: 980px) {
    .site-nav { position: fixed; inset: 84px 16px auto; display: none; flex-direction: column; align-items: stretch; border-radius: 18px; padding: 18px; background: var(--deep-navy); box-shadow: var(--shadow); }
    .site-nav.open { display: flex; }
    .nav-dropdown-menu { position: static; margin-top: 8px; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.05); }
    .nav-toggle { display: inline-grid; place-items: center; }
    .hero, .page-hero, .split, .dark-band, .project-hero, .contact-layout { grid-template-columns: 1fr; }
    .logo-strip, .work-grid, .logo-grid, .review-grid, .review-grid.light { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .project-stack { min-height: 430px; }
}
@media (max-width: 1180px) {
    .hero-proof {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .brand img { width: 180px; }
    .brand-logo-main { font-size: 18px; }
    .brand-logo-designs { font-size: 9px; }
    .hero, .page-hero { min-height: auto; }
    .service-grid, .logo-strip, .work-grid, .logo-grid, .review-grid, .review-grid.light { grid-template-columns: 1fr; }
    .section-head { align-items: start; flex-direction: column; }
    .site-footer { grid-template-columns: 1fr; align-items: start; }
    .footer-links { grid-template-columns: 1fr; }
    .showcase-badge { position: static; margin-top: 14px; }
    .project-stack {
        display: flex;
        min-height: 0;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        max-width: none;
        padding: 2px 0 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .project-stack::before { display: none; }
    .hero-project-card,
    .hero-project-card:nth-child(n) {
        flex: 0 0 82%;
        position: relative;
        inset: auto;
        left: auto;
        top: auto;
        width: 82%;
        min-height: 0;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        z-index: auto !important;
        scroll-snap-align: center;
    }
}

.feature-band {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.76);
    background:
        radial-gradient(circle at 88% 22%, rgba(72,214,214,.2), transparent 18rem),
        radial-gradient(circle at 12% 88%, rgba(249,115,22,.12), transparent 20rem),
        linear-gradient(135deg, #050b12, #07111f) !important;
}
.feature-band .section-head {
    display: grid;
    justify-content: start;
    align-items: start;
    max-width: 980px;
    margin-bottom: 0;
}
.feature-band h2 {
    color: var(--white);
}
.feature-band p:not(.eyebrow) {
    max-width: 860px;
    color: rgba(255,255,255,.72);
}
.feature-band .button {
    width: fit-content;
    margin-top: 8px;
}
.feature-band::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    pointer-events: none;
}
.site-header .brand img { filter: none; }
.work-card:nth-child(4n+2) span { color: var(--primary-blue); }
.work-card:nth-child(4n+3) span { color: var(--highlight-red); }
.work-card:nth-child(4n+4) span { color: var(--success-green); }

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1px;
    background: var(--border);
}
.proof-item {
    display: grid;
    gap: 8px;
    padding: 28px;
    background: var(--white);
}
.proof-item strong { color: var(--accent-orange); font-size: 34px; line-height: 1; }
.proof-item:nth-child(2) strong { color: var(--highlight-red); }
.proof-item:nth-child(3) strong { color: var(--accent-yellow); }
.proof-item:nth-child(4) strong { color: var(--success-green); }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.process-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.process-card::before {
    content: attr(data-step);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 50%;
    color: #111827;
    font-weight: 900;
    background: var(--accent-yellow);
}
.process-card:nth-child(2)::before { color: var(--white); background: var(--accent-orange); }
.process-card:nth-child(3)::before { color: var(--white); background: var(--highlight-red); }
.process-card:nth-child(4)::before { color: var(--white); background: var(--success-green); }
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.content-grid article {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.content-grid h2 {
    font-size: 28px;
}
.content-grid h3 {
    margin-top: 24px;
    font-size: 18px;
}
.compact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.process-panel { border-radius: 28px; }
.process-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.process-step {
    position: relative;
    display: grid;
    align-content: start;
    min-height: 260px;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: 18px;
    right: 20px;
    color: var(--medium-grey);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}
.process-step .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    border-radius: 16px;
    color: var(--deep-navy);
    background: var(--accent-yellow);
}
.process-step:nth-child(2) .material-symbols-outlined { color: var(--white); background: var(--primary-blue); }
.process-step:nth-child(3) .material-symbols-outlined { color: var(--white); background: var(--highlight-red); }
.process-step:nth-child(4) .material-symbols-outlined { color: var(--white); background: var(--accent-orange); }
.process-step:nth-child(5) .material-symbols-outlined { color: var(--white); background: var(--success-green); }
.process-step h3 { font-size: 20px; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
.section.local-proof {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
    margin: clamp(48px, 6vw, 78px) clamp(20px, 5vw, 72px);
    border-radius: 28px;
    padding: clamp(38px, 5vw, 72px);
    color: rgba(255,255,255,.82);
    background: radial-gradient(circle at 88% 22%, rgba(16,185,129,.2), transparent 22rem), radial-gradient(circle at 10% 88%, rgba(37,99,235,.18), transparent 18rem), #050b12;
}
.local-proof h2 { max-width: 620px; color: var(--white); }
.local-proof p { max-width: 720px; color: rgba(255,255,255,.78); }
.local-proof a { color: var(--accent-yellow); font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.local-proof a:hover { color: var(--accent-orange); }
.map-embed {
    overflow: hidden;
    margin-top: 24px;
    border: 0;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 18px 54px rgba(0,0,0,.22);
}
.map-embed iframe {
    display: block;
    width: 100%;
    height: clamp(260px, 28vw, 340px);
    border: 0;
    filter: saturate(.86) contrast(1.04);
}

.hero-kicker {
    color: var(--success-green);
}

.page-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 5vw, 64px);
    text-shadow: 0 18px 52px rgba(0,0,0,.34);
}

.page-hero h1 span {
    display: block;
    width: fit-content;
    color: transparent;
    background: linear-gradient(90deg, var(--accent-orange), var(--highlight-red));
    -webkit-background-clip: text;
    background-clip: text;
}

.project-stack {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(390px, 40vw, 540px);
    perspective: 1500px;
    transform-style: preserve-3d;
    isolation: isolate;
}

.project-stack::before {
    display: none;
}

.hero-project-card {
    position: absolute;
    overflow: hidden;
    left: 50%;
    top: 50%;
    width: min(72%, 480px);
    aspect-ratio: 12 / 7;
    border: 0;
    border-radius: 18px;
    text-decoration: none;
    background: #050b12;
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
    transform-origin: center;
    transform: translate3d(-50%, calc(-50% + var(--card-y, 0px)), var(--card-z, 0px)) rotateX(var(--card-tilt, 0deg)) rotateZ(var(--card-rotate, 0deg)) scale(var(--card-scale, 1));
    opacity: var(--card-opacity, 1);
    filter: saturate(var(--card-saturate, 1)) brightness(var(--card-brightness, 1));
    z-index: var(--card-z-index, 1);
    transition: transform .42s cubic-bezier(.2,.8,.2,1), opacity .28s ease, filter .28s ease, box-shadow .28s ease;
    will-change: transform, opacity, filter;
}

.hero-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: none;
    box-shadow: none;
}

.hero-project-card.is-active {
    box-shadow: 0 38px 110px rgba(0,0,0,.44);
}

.home-services {
    align-items: start;
}

.home-services h2 span,
.home-work h2 span {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: var(--accent-yellow);
    text-decoration-thickness: 4px;
    text-underline-offset: 7px;
}

.home-services .service-grid article {
    min-height: 245px;
    border: 0;
    box-shadow: none;
}

.home-services .service-grid article:hover {
    transform: translateY(-4px);
}

.home-services .service-grid .material-symbols-outlined {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.proof-strip-dark {
    gap: 0;
    padding: 28px clamp(20px,5vw,72px);
    background:
        radial-gradient(circle at 86% 20%, rgba(72,214,214,.14), transparent 20rem),
        #050b12;
}

.proof-strip-dark .proof-item {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.035);
}

.proof-strip-dark .proof-item strong {
    font-size: clamp(34px, 4vw, 52px);
}

.proof-strip-dark .proof-item span {
    color: rgba(255,255,255,.74);
    font-weight: 800;
}

.home-work {
    color: rgba(255,255,255,.78);
    background:
        radial-gradient(circle at 92% 24%, rgba(249,115,22,.18), transparent 18rem),
        radial-gradient(circle at 12% 84%, rgba(72,214,214,.14), transparent 18rem),
        linear-gradient(135deg, #050b12, #07111f) !important;
}

.home-work h2,
.home-work h3 {
    color: var(--white);
}

.home-work .section-head {
    align-items: start;
}

.home-work .text-link {
    color: var(--accent-yellow);
}

.home-work .work-card {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.home-work .work-card img {
    height: 300px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.home-work .work-card p {
    color: rgba(255,255,255,.68);
}

.home-work .work-card:hover {
    border-color: rgba(72,214,214,.42);
}

.process-card {
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
@media (max-width: 980px) {
    .service-grid, .process-grid, .proof-strip, .local-proof, .process-flow, .content-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
    .proof-strip, .process-grid, .local-proof, .process-flow, .compact-grid, .content-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 640px) {
    body {
        font-size: 15px;
    }

    h1 {
        margin-bottom: 16px;
        font-size: clamp(34px, 12vw, 46px);
        line-height: .98;
    }

    h2 {
        margin-bottom: 14px;
        font-size: clamp(28px, 9vw, 38px);
        line-height: 1;
    }

    h3 {
        font-size: 19px;
    }

    p {
        line-height: 1.55;
    }

    .site-header {
        padding: 14px 16px;
    }

    .site-nav {
        inset: 64px 10px auto;
        border-radius: 12px;
        padding: 14px;
    }

    .hero,
    .page-hero {
        gap: 24px;
        padding: 34px 16px 40px;
        border-radius: 0;
    }

    .hero-intro,
    .page-hero p:not(.eyebrow) {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-actions,
    .pill-row {
        gap: 10px;
    }

    .hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .hero-proof div {
        min-width: 0;
    }

    .button {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
    }

    .hero-showcase {
        gap: 10px;
        max-width: 360px;
        margin-inline: auto;
    }

    .hero-showcase.project-stack {
        display: flex;
        max-width: none;
        margin-inline: 0;
    }

    .hero-showcase img {
        border-radius: 12px;
        transform: none;
    }

    .showcase-badge {
        max-width: none;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 13px;
    }

    .logo-strip {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 16px;
    }

    .logo-strip img {
        height: 38px;
        max-width: 180px;
        padding: 0;
        border-radius: 0;
        background: transparent;
    }

    .section {
        padding: 42px 16px;
    }

    .section.feature-band {
        margin-inline: 16px;
        padding: 36px 16px;
    }

    .feature-band::before {
        inset: 16px;
        border-radius: 18px;
    }

    .feature-band .section-head {
        gap: 18px;
    }

    .feature-band h2 {
        margin-bottom: 16px;
        font-size: clamp(34px, 10vw, 42px);
    }

    .feature-band .button {
        width: fit-content;
        margin-top: 6px;
    }

    .section-head {
        gap: 12px;
        margin-bottom: 20px;
    }

    .service-grid,
    .work-grid,
    .logo-grid,
    .review-grid,
    .review-grid.light,
    .content-grid,
    .process-grid,
    .process-flow,
    .proof-strip {
        gap: 14px;
    }

    .service-grid article,
    .work-card,
    .logo-card,
    .review-card-light,
    .contact-panel,
    .content-grid article,
    .process-card,
    .process-step {
        border-radius: 12px;
        padding: 18px;
    }

    .service-grid article {
        min-height: 0;
    }

    .service-grid .material-symbols-outlined {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
    }

    .proof-item {
        padding: 18px;
    }

    .proof-item strong {
        font-size: 26px;
    }

    .work-card img {
        height: 180px;
    }

    .work-card span {
        margin: 16px 18px 8px;
    }

    .work-card h3,
    .work-card p {
        margin-left: 18px;
        margin-right: 18px;
    }

    .work-card p {
        margin-bottom: 18px;
    }

    .logo-card img {
        padding: 12px;
    }

    .dark-band {
        gap: 22px;
        padding-block: 48px;
    }

    .review-card-light {
        min-height: 0;
    }

    .review-card-light img {
        width: 116px;
        margin-bottom: 14px;
    }

    .sub-hero,
    .project-hero {
        padding: 42px 16px;
    }

    .project-hero {
        gap: 22px;
    }

    .project-hero img {
        border-radius: 12px;
    }

    .process-step {
        min-height: 0;
    }

    .process-step .material-symbols-outlined,
    .process-card::before {
        margin-bottom: 14px;
    }

    .section.local-proof {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px 16px;
        border-radius: 16px;
        padding: 28px 18px;
        overflow: hidden;
    }

    .local-proof h2 {
        font-size: clamp(32px, 10vw, 40px);
    }

    .local-proof p,
    .local-proof a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .map-embed {
        width: 100%;
        margin-top: 16px;
        border-radius: 12px;
    }

    .map-embed iframe {
        height: 230px;
    }

    .contact-layout {
        gap: 14px;
    }

    .contact-panel {
        padding: 20px;
    }

    .contact-form .button {
        width: 100%;
    }

    .site-footer {
        gap: 18px;
        padding: 26px 16px;
    }
}
