:root {
    --blue: #0077bd;
    --blue-dark: #045d98;
    --ink: #202124;
    --muted: #5f6673;
    --line: #e8edf2;
    --warm: #f8f5f3;
    --soft: #f5f8fb;
    --dark: #071d26;
    --green: #00c987;
    --button-primary: #071d26;
    --button-primary-hover: #0d3442;
    --button-secondary: #fff;
    --button-secondary-hover: #f8f5f3;
    --button-shadow: rgba(7, 29, 38, .24);
    --radius: 8px;
    --shadow: 0 24px 48px rgba(21, 32, 43, .12);
    --max: 1200px;
    --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; letter-spacing: 0; font-family: var(--font-head); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 800; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 20;
    padding: .6rem .9rem;
    background: #fff;
    border: 1px solid var(--line);
}
.skip-link:focus { left: 12px; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
:focus-visible {
    outline: 3px solid #f5b800;
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(248,245,243,.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.94);
    border-color: var(--line);
    box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
.nav-shell {
    min-height: 122px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand img { width: 222px; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: .96rem;
}
.site-nav a:not(.btn) {
    color: #0e1621;
    position: relative;
}
.site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.45rem;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.nav-caret {
    width: .48rem;
    height: .48rem;
    margin-top: -.2rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 30;
    min-width: 290px;
    padding: .65rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(7, 29, 38, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
}
.nav-dropdown-menu a {
    display: block;
    padding: .72rem .85rem;
    border-radius: 8px;
    white-space: nowrap;
    font-weight: 650;
}
.nav-dropdown-menu a:not(.btn)::after { content: none; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.is-current {
    background: var(--soft);
    color: var(--blue-dark);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(225deg); }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 2.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    background: var(--button-primary);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 28px var(--button-shadow);
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover,
.btn:focus-visible {
    background: var(--button-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(7, 29, 38, .3);
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(7, 29, 38, .22);
}
.btn-small { min-height: 45px; padding: 0 1.9rem; }
.btn-light {
    border-color: rgba(255,255,255,.72);
    background: var(--button-secondary);
    color: var(--button-primary);
    box-shadow: 0 14px 30px rgba(0,0,0,.16);
}
.btn-light:hover,
.btn-light:focus-visible {
    border-color: var(--button-secondary-hover);
    background: var(--button-secondary-hover);
    color: var(--button-primary-hover);
    box-shadow: 0 18px 34px rgba(0,0,0,.2);
}
.text-link {
    color: var(--blue);
    font-weight: 800;
    border-bottom: 2px solid currentColor;
}
.eyebrow {
    margin-bottom: .8rem;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .08em;
}

.section { padding: 96px 0; }
.section-warm { background: var(--warm); }
.section-dark { background: var(--dark); color: #fff; }
.hero { padding: 112px 0 146px; }
.hero-inner {
    display: grid;
    justify-items: center;
    text-align: center;
}
.hero-inner > *,
.split-grid > * { min-width: 0; }
.hero p {
    max-width: 760px;
    margin-bottom: 3rem;
    font-size: 1.35rem;
    color: #111827;
}
.hero-screen {
    width: 100%;
    margin: 3.2rem 0 0;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #eef3f8;
}
.page-hero { padding: 92px 0; }
.page-hero p { font-size: 1.18rem; color: var(--muted); }
.page-hero .hero-actions { margin-top: 2rem; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.breadcrumbs {
    border-top: 1px solid rgba(32,33,36,.05);
    border-bottom: 1px solid var(--line);
    background: #fff;
    font-size: .9rem;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 0;
    padding: .85rem 0;
    list-style: none;
}
.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: .55rem;
    color: #9aa2ad;
}
.breadcrumbs a { color: var(--blue-dark); font-weight: 700; }
.breadcrumbs [aria-current="page"] { color: var(--muted); }
.section-title,
.section-heading {
    max-width: 850px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: rgba(255,255,255,.7); }

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 76px;
    width: max-content;
    will-change: transform;
}
.logo-track img {
    max-width: 178px;
    max-height: 86px;
    object-fit: contain;
}
.trusted-section .section-title {
    max-width: 760px;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 7rem;
}
.split-grid.reversed > :first-child { order: 2; }
.split-grid p { color: #111827; }
.visual-stack,
.image-frame {
    position: relative;
}
.analytics-art,
.device-art {
    margin: 0 auto;
    filter: drop-shadow(0 26px 36px rgba(8, 30, 38, .1));
}
.image-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.image-frame img {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
}
.web-design-band {
    --web-design-slope: clamp(52px, 5.5vw, 104px);
    position: relative;
    overflow: hidden;
    padding-top: calc(96px + var(--web-design-slope));
    background: #869bb5;
    color: #fff;
    clip-path: polygon(0 var(--web-design-slope), 100% 0, 100% 100%, 0 100%);
}
.web-design-band .split-grid p,
.web-design-band h2 { color: #fff; }
.web-design-band .image-frame {
    box-shadow: 0 28px 54px rgba(12, 29, 46, .22);
}
.web-design-grid {
    position: relative;
}
.web-design-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -96px;
    width: 2px;
    height: 122px;
    background: rgba(255,255,255,.64);
    transform: translateX(-50%);
}
.analytics-section {
    background: #fff;
}
.analytics-grid {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}
.icon-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}
.icon-list div {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    font-size: 1.1rem;
    font-weight: 650;
}
.icon-list img {
    width: 58px;
    height: 58px;
    padding: 12px;
    border-radius: 50%;
    background: #f6fbfd;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card,
.stat-card,
.team-card,
.post-card,
.contact-card,
.faq-item,
.process-step {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 34px rgba(10, 28, 42, .06);
}
.section-dark .feature-card,
.section-dark .process-step {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
}
.feature-card {
    min-height: 190px;
    padding: 2rem;
    transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.feature-card p { color: var(--muted); }
.section-dark .feature-card p { color: rgba(255,255,255,.7); }
.blog-feature-section {
    background: var(--warm);
}
.blog-feature-section .section-heading {
    max-width: 880px;
    margin-bottom: 6.5rem;
}
.blog-feature-section .section-heading h2 {
    margin-bottom: 1rem;
}
.blog-feature-section .section-heading p {
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 1.02rem;
    line-height: 1.55;
}
.blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem 1.8rem;
}
.blog-feature-card {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    gap: 1.35rem;
    min-height: 185px;
    padding: 2rem 1.85rem;
    border: 1px solid #d8d2cb;
    border-radius: 8px;
    background: var(--warm);
    color: #000;
    transform: translate(0, 0);
    transform-origin: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.blog-feature-card::before,
.blog-feature-card::after {
    content: none;
}
.blog-feature-section .blog-feature-card {
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.blog-feature-section .blog-feature-card:hover {
    z-index: 2;
    background: #fff;
    transform: translate(6px, -6px);
    box-shadow: -3px 3px 0 -1px #fff, -3px 3px 0 0 #242424, -6px 6px 0 -1px #fff, -6px 6px 0 0 #242424;
}
.blog-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #fafafa;
}
.blog-icon svg {
    width: 42px;
    height: 42px;
    fill: #3f3f3f;
}
.blog-feature-card h3 {
    margin-bottom: .75rem;
    font-size: 1.1rem;
}
.blog-feature-card p {
    margin: 0;
    color: #000;
    line-height: 1.45;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.stat-card {
    padding: 2rem;
    text-align: center;
}
.stat-card strong {
    display: block;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 3rem;
    line-height: 1;
}
.stat-card span {
    display: block;
    margin-top: .8rem;
    color: var(--muted);
    font-weight: 700;
}
.growth-section {
    position: relative;
    overflow: hidden;
    background: #6253f4;
    color: #fff;
    padding: 170px 0 132px;
}
.growth-hero {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: 5rem;
    margin-bottom: 132px;
}
.growth-hero h2 {
    max-width: 560px;
    color: #fff;
    font-size: clamp(2.25rem, 3.35vw, 3.35rem);
}
.growth-hero p {
    max-width: 560px;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.55;
}
.growth-hero img {
    width: min(560px, 100%);
    opacity: .35;
    filter: brightness(2.2);
}
.growth-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}
.growth-stat {
    position: relative;
    z-index: 0;
    min-height: 140px;
    padding: 1.35rem 1.45rem 1.4rem;
    border-radius: 8px;
    color: #fff;
    transform: translate(0, 0);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.growth-stat::before {
    content: "";
    position: absolute;
    top: 1.35rem;
    left: .75rem;
    width: 2px;
    height: 28px;
    background: var(--green);
    z-index: 1;
}
.growth-stat strong {
    display: block;
    margin-bottom: 1.35rem;
    font-family: var(--font-head);
    font-size: 2.05rem;
    line-height: 1;
}
.growth-stat span {
    display: block;
    max-width: 250px;
    font-weight: 700;
    line-height: 1.55;
}
.growth-stat:hover {
    z-index: 2;
    background: #fff;
    color: #0d1720;
    transform: translate(6px, -6px);
    box-shadow: -3px 3px 0 -1px #fff, -3px 3px 0 0 #242424, -6px 6px 0 -1px #fff, -6px 6px 0 0 #242424;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.process-step {
    padding: 1.2rem;
    color: #fff;
    font-weight: 800;
    text-align: center;
}

.service-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}
.service-summary-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 34px rgba(10, 28, 42, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.service-summary-card p { color: var(--muted); }
.service-summary-card .text-link { align-self: flex-start; margin-top: auto; }
.service-detail-section {
    position: relative;
    overflow: hidden;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}
.service-detail-grid.is-reversed {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
}
.service-detail-grid.is-reversed .service-detail-media { order: 2; }
.service-detail-media {
    position: relative;
    z-index: 0;
    width: min(100%, 500px);
    margin: 0 auto;
    padding: clamp(.65rem, 1.6vw, 1rem);
}
.service-detail-media::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 5% -3% -3% 5%;
    border-radius: 30px;
    background: var(--dark);
    opacity: .1;
    transform: rotate(2deg);
}
.service-detail-grid.is-reversed .service-detail-media::before {
    inset: 5% 5% -3% -3%;
    transform: rotate(-2deg);
}
.service-detail-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}
.service-detail-media.is-portrait { width: min(88%, 430px); }
.service-detail-copy { max-width: 760px; }
.service-detail-copy h2 { margin-bottom: 1.25rem; }
.service-detail-copy h3 {
    margin-top: 1.8rem;
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}
.service-detail-copy > p:not(.eyebrow) { color: #111827; }
.service-detail-list { margin-top: 1rem; }
.service-detail-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1.75rem;
}
.services-list-section {
    background: var(--warm);
}
.services-list-section .service-summary-card {
    position: relative;
    z-index: 0;
    border-color: #d8d2cb;
    background: var(--warm);
    box-shadow: none;
    transform: translate(0, 0);
    transform-origin: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.services-list-section .service-summary-card:hover,
.services-list-section .service-summary-card:focus-within {
    z-index: 2;
    background: #fff;
    transform: translate(6px, -6px);
    box-shadow: -3px 3px 0 -1px #fff, -3px 3px 0 0 #242424, -6px 6px 0 -1px #fff, -6px 6px 0 0 #242424;
}
.services-list-section .service-summary-card p { color: #000; }
.services-list-section .service-summary-card h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}
.check-list {
    display: grid;
    gap: .9rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    position: relative;
    padding-left: 2rem;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45rem;
    width: .8rem;
    height: .45rem;
    border-left: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    transform: rotate(-45deg);
}
.numbered-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    counter-reset: steps;
}
.numbered-step {
    counter-increment: steps;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.numbered-step::before {
    content: "0" counter(steps);
    display: block;
    margin-bottom: 1.25rem;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
}
.numbered-step p { margin: 0; color: var(--muted); }
.proof-band {
    background: var(--dark);
    color: #fff;
}
.proof-band p { color: rgba(255,255,255,.74); }
.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 5rem;
}
.proof-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.proof-stat {
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius);
    background: rgba(255,255,255,.05);
}
.proof-stat strong {
    display: block;
    color: #fff;
    font-family: var(--font-head);
    font-size: 2rem;
}
.proof-stat span { color: rgba(255,255,255,.72); }
.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    border-radius: 16px;
    background: #6253f4;
    color: #fff;
    box-shadow: var(--shadow);
}
.cta-panel h2 { color: #fff; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.82); }
.content-prose {
    max-width: 820px;
    margin: 0 auto;
}
.content-prose h2 { margin-top: 2.5rem; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose a:not(.btn) { color: var(--blue-dark); text-decoration: underline; }
.callout {
    padding: 1.5rem;
    border-left: 4px solid var(--blue);
    background: var(--soft);
}
.error-page { text-align: center; }
.error-code {
    margin-bottom: 1rem;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    line-height: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.team-card {
    overflow: hidden;
    text-align: center;
}
.team-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.team-card h3 { margin: 1.2rem 1rem .2rem; }
.team-card p { margin: 0 1rem 1.4rem; color: var(--muted); }
.testimonial {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.testimonial blockquote {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 650;
}

.contact-card {
    padding: 2rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
label span {
    display: block;
    margin-bottom: .45rem;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}
input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}
textarea { resize: vertical; }
label { display: block; margin-bottom: 1rem; }
.hp-field { position: absolute; left: -9999px; }
.form-privacy {
    color: var(--muted);
    font-size: .9rem;
}
.form-privacy a { color: var(--blue-dark); text-decoration: underline; }
.contact-detail {
    display: grid;
    gap: .35rem;
    margin-top: 2rem;
}
.contact-detail .text-link {
    position: relative;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    padding-bottom: .12rem;
    border-bottom: 0;
    overflow-wrap: anywhere;
}
.contact-detail .text-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(.32);
    transform-origin: left;
    transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}
.contact-detail .text-link:hover::after,
.contact-detail .text-link:focus-visible::after {
    transform: scaleX(1);
}
.notice {
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    border-radius: var(--radius);
    font-weight: 800;
}
.notice.success { color: #05603a; background: #e7f7ef; }
.notice.error { color: #9b1c1c; background: #fdecec; }
.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    padding: 1.2rem 1.4rem;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 800;
}
.faq-item p { margin: .8rem 0 0; color: var(--muted); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.post-card {
    overflow: hidden;
}
.post-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--soft);
}
.post-card div { padding: 1.6rem; }

.article-hero { padding: 86px 0 72px; }
.article-hero .container { max-width: 920px; }
.article-hero h1 { max-width: 900px; }
.article-standfirst {
    max-width: 780px;
    color: var(--muted);
    font-size: 1.25rem;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.5rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: .95rem;
}
.article-meta strong { color: var(--ink); }
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: 5rem;
}
.article-content { min-width: 0; font-size: 1.08rem; }
.article-content > :first-child { margin-top: 0; }
.article-content h2 { margin-top: 3rem; }
.article-content h3 { margin-top: 2rem; }
.article-content p,
.article-content li { max-width: 780px; }
.article-content ul,
.article-content ol { padding-left: 1.4rem; }
.article-content li { margin-bottom: .65rem; }
.article-content a { color: var(--blue-dark); text-decoration: underline; }
.article-content blockquote {
    margin: 2.5rem 0;
    padding: 1.6rem 2rem;
    border-left: 4px solid var(--blue);
    background: var(--soft);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 650;
}
.article-content pre {
    max-width: 100%;
    overflow-x: auto;
    padding: 1.25rem;
    border-radius: var(--radius);
    color: #fff;
    background: var(--dark);
}
.article-image {
    width: 100%;
    margin: 2rem 0 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.article-aside {
    position: sticky;
    top: 150px;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}
.article-aside h2 { font-size: 1.25rem; }
.article-aside a {
    display: block;
    margin: .75rem 0;
    color: var(--blue-dark);
    font-weight: 700;
}
.source-note {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    background: #fff;
    font-size: .95rem;
}

.site-footer {
    padding: 72px 0 28px;
    background: var(--dark);
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2rem;
}
.footer-mark { width: 64px; margin-bottom: 1rem; }
.site-footer p { color: rgba(255,255,255,.68); }
.site-footer a {
    display: block;
    margin: .45rem 0;
    color: rgba(255,255,255,.76);
}
.site-footer a:hover { color: #fff; }
.site-footer .btn-light {
    display: inline-flex;
    color: var(--button-primary);
}
.site-footer .btn-light:hover,
.site-footer .btn-light:focus-visible {
    color: var(--button-primary-hover);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.58);
    font-size: .9rem;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.site-footer .footer-legal a { display: inline; margin: 0; }

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .container { width: min(100% - 32px, var(--max)); }
    .nav-shell { min-height: 86px; }
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: .7rem; }
    .site-nav .btn { margin-top: .4rem; }
    .site-nav .nav-dropdown {
        display: block;
        min-height: 0;
    }
    .site-nav .nav-dropdown-trigger {
        display: flex;
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin: .1rem 0 .45rem .7rem;
        padding: .35rem;
        border: 0;
        border-left: 2px solid var(--blue);
        border-radius: 0 8px 8px 0;
        background: var(--soft);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
    .nav-dropdown-menu::before { content: none; }
    .nav-dropdown-menu a {
        padding: .55rem .75rem;
        white-space: normal;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu { transform: none; }
    .split-grid,
    .blog-grid,
    .footer-grid,
    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .article-aside { position: static; }
    .analytics-grid,
    .growth-hero {
        grid-template-columns: 1fr;
    }
    .web-design-grid::before {
        left: 24px;
        top: -68px;
        height: 90px;
    }
    .blog-feature-grid,
    .growth-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .split-grid.reversed > :first-child { order: 0; }
    .service-detail-grid,
    .service-detail-grid.is-reversed {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .service-detail-grid .service-detail-copy { order: 1; }
    .service-detail-grid .service-detail-media,
    .service-detail-grid.is-reversed .service-detail-media { order: 2; }
    .card-grid,
    .card-grid.four,
    .stats-grid,
    .team-grid,
    .process-grid,
    .service-summary-grid,
    .numbered-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .proof-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    body { font-size: 15px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 2rem; }
    .brand img { width: 190px; }
    .section { padding: 68px 0; }
    .hero { padding: 76px 0 86px; }
    .hero p { font-size: 1.05rem; }
    .hero-inner { overflow: hidden; }
    .logo-track {
        gap: 48px;
    }
    .logo-track img {
        max-width: 150px;
    }
    .blog-feature-section .section-heading {
        margin-bottom: 4rem;
    }
    .blog-feature-grid,
    .growth-stats {
        grid-template-columns: 1fr;
    }
    .blog-feature-card {
        grid-template-columns: 74px 1fr;
        gap: 1.1rem;
        padding: 1.45rem;
    }
    .blog-icon {
        width: 64px;
        height: 64px;
    }
    .growth-section {
        padding: 90px 0;
    }
    .growth-hero {
        margin-bottom: 64px;
    }
    .growth-hero h2 {
        font-size: 2rem;
    }
    .web-design-band {
        --web-design-slope: 36px;
        padding-top: calc(68px + var(--web-design-slope));
    }
    .card-grid,
    .card-grid.four,
    .stats-grid,
    .team-grid,
    .process-grid,
    .service-summary-grid,
    .numbered-steps,
    .proof-stats,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .hero-screen { border-radius: 12px; }
    .feature-card,
    .contact-card { padding: 1.4rem; }
    .footer-bottom {
        flex-direction: column;
    }
    .cta-panel {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

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