* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink-strong: #0c1734;
    --ink: #213055;
    --ink-soft: #67789e;
    --surface: #f6f9ff;
    --surface-alt: #edf2ff;
    --surface-card: rgba(255, 255, 255, 0.7);
    --surface-card-strong: rgba(255, 255, 255, 0.86);
    --line: rgba(24, 52, 132, 0.1);
    --line-strong: rgba(24, 52, 132, 0.18);
    --accent: #123ecb;
    --accent-soft: rgba(18, 62, 203, 0.1);
    --accent-mid: #5b78d6;
    --highlight: #ff2ea8;
    --highlight-soft: rgba(255, 46, 168, 0.12);
    --brand-blue: #1f63ff;
    --brand-indigo: #2e2bcc;
    --brand-violet: #7223d2;
    --brand-pink: #ff2ea8;
    --brand-gradient: linear-gradient(135deg, #1f63ff 0%, #2e2bcc 48%, #ff2ea8 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(31, 99, 255, 0.14) 0%, rgba(46, 43, 204, 0.12) 48%, rgba(255, 46, 168, 0.12) 100%);
    --shadow-soft: 0 26px 60px rgba(18, 41, 111, 0.08);
    --shadow-card: 0 18px 40px rgba(18, 41, 111, 0.07);
    --shadow-hover: 0 28px 58px rgba(18, 41, 111, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --content-width: 1240px;
    --page-gutter: clamp(12px, 2.8vw, 20px);
    --section-space: clamp(60px, 8vw, 88px);
    --section-space-tight: clamp(22px, 3.2vw, 34px);
    --shell-padding: clamp(22px, 3vw, 36px);
    --card-padding: clamp(20px, 2.5vw, 28px);
    --hero-padding: clamp(24px, 5vw, 58px);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    min-height: 100svh;
    font-family: "Host Grotesk", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(31, 99, 255, 0.18), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 46, 168, 0.15), transparent 22%),
        radial-gradient(circle at 50% 18%, rgba(114, 35, 210, 0.12), transparent 34%),
        linear-gradient(180deg, #fbfdff 0%, #f3f7ff 48%, #edf3ff 100%);
    color: var(--ink);
    line-height: 1.72;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.45)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: -1;
}

main {
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

h1,
h2,
h3,
.service-title,
.faq-question,
.project-title h3,
.cta-banner h3 {
    font-family: "DM Sans", sans-serif;
    color: var(--accent);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.9rem, 5.2vw, 5rem);
    line-height: 1;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.04;
    font-weight: 700;
    text-wrap: balance;
}

h3 {
    font-size: 1.45rem;
    line-height: 1.14;
    font-weight: 700;
    text-wrap: balance;
}

p,
li,
input,
textarea,
button {
    font: inherit;
}

nav {
    position: sticky;
    top: max(10px, env(safe-area-inset-top, 0px));
    z-index: 100;
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
    margin: clamp(10px, 2vw, 20px) auto 0;
    padding: clamp(10px, 1.6vw, 12px) clamp(12px, 1.8vw, 14px) clamp(10px, 1.6vw, 12px) clamp(14px, 2vw, 18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 52, 132, 0.12);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(18, 41, 111, 0.1);
    backdrop-filter: blur(22px) saturate(140%);
}

.nav-name {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-name img {
    height: 38px;
    width: auto;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: rgba(18, 62, 203, 0.08);
    color: var(--accent);
    transform: translateY(-1px);
}

section {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
    margin: 0 auto;
    padding: var(--section-space) 0;
}

body > section#top:first-of-type {
    padding-top: clamp(112px, 16vw, 148px) !important;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
    gap: clamp(18px, 2.8vw, 28px);
    align-items: stretch;
    min-height: auto;
    padding-top: clamp(44px, 7vw, 70px);
}

.hero-content,
.impact-box,
.benefit-card,
.fit-card,
.proof-card,
.pricing-box,
.contact-methods,
.service-item,
.project-summary,
.page-shell,
.card-link,
.detail-shell,
.cta-banner,
.contact-panel,
.contact-form-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface-card);
    backdrop-filter: blur(18px) saturate(140%);
    box-shadow: var(--shadow-card);
}

.hero-content {
    position: relative;
    padding: var(--hero-padding);
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.1) 100%),
        radial-gradient(circle at right top, rgba(31, 99, 255, 0.16), transparent 30%),
        radial-gradient(circle at 82% 90%, rgba(255, 46, 168, 0.12), transparent 30%);
    pointer-events: none;
}

.hero-content > * {
    position: relative;
}

.hero-label,
.section-label,
.current-badge,
.detail-kicker,
.card-link-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(24, 52, 132, 0.08);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-label,
.section-label,
.eyebrow {
    margin-bottom: 18px;
}

.hero-text,
.hero-credentials,
.content-text,
.about-text p,
.service-description,
.faq-answer,
.project-content p,
.pricing-info p,
.page-lede,
.detail-body p,
.detail-body li,
.card-link-copy,
.contact-copy {
    color: var(--ink);
}

.hero-text {
    font-size: 1.2rem;
    max-width: 40rem;
    margin: 22px 0 10px;
}

.hero-credentials {
    color: var(--ink-soft);
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions .btn {
    min-width: 0;
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.hero-points li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-pink));
    transform: translateY(-50%);
}

.impact-box {
    background:
        linear-gradient(155deg, rgba(8, 22, 68, 0.96), rgba(27, 43, 139, 0.92) 56%, rgba(119, 33, 210, 0.9) 100%),
        radial-gradient(circle at top left, rgba(94, 160, 255, 0.32), transparent 40%),
        radial-gradient(circle at 82% 88%, rgba(255, 46, 168, 0.28), transparent 28%);
    color: #f5f8ff;
    padding: clamp(28px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.impact-label {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232, 241, 255, 0.72);
    max-width: 18ch;
}

.impact-ratio {
    margin: 28px 0 12px;
}

.impact-number {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.9;
    color: #ffffff;
    text-shadow: 0 0 24px rgba(126, 171, 255, 0.16);
}

.impact-explain {
    font-size: 1rem;
    color: rgba(232, 241, 255, 0.82);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 30px;
}

.section-header > div:first-child {
    max-width: 48rem;
}

.section-count,
.section-stat,
.section-stats {
    color: var(--ink-soft);
    font-size: 0.93rem;
}

.section-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.section-stat strong {
    color: var(--accent);
}

.content-text,
.about-text p,
.service-description,
.faq-answer,
.project-content p,
.pricing-info p,
.page-lede,
.detail-body p,
.detail-body li,
.contact-copy {
    font-size: 1.03rem;
    line-height: 1.82;
    max-width: 72ch;
}

.benefits-grid,
.pricing-grid,
.proof-grid,
.fit-grid,
.card-link-grid {
    display: grid;
    gap: 18px;
}

.benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-grid,
.proof-grid,
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-link-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 18px;
}

.benefit-card,
.fit-card,
.proof-card,
.pricing-box,
.contact-methods,
.service-item,
.card-link,
.contact-panel,
.contact-form-shell {
    padding: var(--card-padding);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 251, 255, 0.7)),
        var(--brand-gradient-soft);
}

.benefit-card h3,
.fit-card h3,
.service-title,
.card-link-title {
    margin-bottom: 12px;
}

.benefit-card p,
.benefit-card ul,
.fit-card ul,
.proof-card p,
.card-link-copy {
    color: var(--ink);
    font-size: 0.98rem;
}

.benefit-card ul,
.fit-card ul,
.detail-body ul,
.detail-body ol,
.industry-list,
.pricing-list {
    padding-left: 22px;
}

.benefit-card,
.fit-card,
.proof-card,
.pricing-box,
.card-link,
.project-summary {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.benefit-card:hover,
.fit-card:hover,
.proof-card:hover,
.pricing-box:hover,
.card-link:hover,
.project-summary:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-hover);
}

.proof-card strong {
    display: block;
    margin-bottom: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 2.2rem;
    line-height: 0.96;
    color: var(--accent);
}

.proof-card a,
.content-text a,
.about-text a,
.faq-answer a,
.contact-methods a,
.detail-body a,
.contact-copy a {
    color: var(--accent-mid);
    text-decoration: none;
    border-bottom: 1px solid rgba(91, 120, 214, 0.3);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.proof-card a:hover,
.content-text a:hover,
.about-text a:hover,
.faq-answer a:hover,
.contact-methods a:hover,
.detail-body a:hover,
.contact-copy a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.project-tabs {
    margin-top: 12px;
}

.project-tabs input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tab-labels {
    display: inline-flex;
    padding: 6px;
    gap: 6px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-bottom: 30px;
    backdrop-filter: blur(16px) saturate(140%);
}

.tab-labels label {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#tab-completed:checked ~ .tab-labels label[for="tab-completed"],
#tab-current:checked ~ .tab-labels label[for="tab-current"] {
    background: var(--brand-gradient);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(37, 77, 212, 0.24);
}

.tab-content {
    display: none;
}

#tab-completed:checked ~ #content-completed,
#tab-current:checked ~ #content-current {
    display: block;
}

.project {
    padding: 0 0 22px;
}

.project-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.project-meta,
.project-stats,
.metric-strip,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-category,
.project-date,
.project-client,
.project-stat,
.stat-label,
.card-link-meta,
.detail-chip-label {
    font-size: 0.84rem;
    color: var(--ink-soft);
}

.project-category {
    color: var(--accent-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.project-title h3 {
    margin: 2px 0 0;
}

.stat-value {
    color: var(--accent);
    font-weight: 700;
}

.metric-pill,
.detail-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(24, 52, 132, 0.08);
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 600;
}

.current-badge {
    margin-bottom: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand-gradient);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(37, 77, 212, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 24px 42px rgba(37, 77, 212, 0.28);
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--accent);
    backdrop-filter: blur(16px) saturate(140%);
}

.btn-secondary:hover {
    background: rgba(18, 62, 203, 0.06);
    border-color: var(--line-strong);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink-strong);
    backdrop-filter: blur(12px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(31, 99, 255, 0.35);
    box-shadow: 0 0 0 4px rgba(31, 99, 255, 0.1);
}

.form-group textarea {
    min-height: 170px;
    resize: vertical;
}

.form-submit {
    margin-top: 8px;
}

.cta-section {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
    padding-top: var(--section-space-tight);
}

.cta-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content p {
    margin: 14px auto 0;
    color: var(--ink-soft);
}

.cta-banner {
    padding: 46px 38px;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(9, 24, 72, 0.96), rgba(28, 54, 169, 0.92) 56%, rgba(255, 46, 168, 0.86) 100%),
        radial-gradient(circle at top left, rgba(103, 175, 255, 0.26), transparent 34%);
    color: #eef4ff;
    margin-top: 8px;
}

.cta-banner h3 {
    color: #ffffff;
}

.cta-banner p {
    color: rgba(238, 244, 255, 0.82);
    margin: 14px auto 26px;
    max-width: 40rem;
}

.cta-banner .btn {
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent);
}

footer {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
    margin: 24px auto 44px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

footer a {
    text-decoration: none;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.85rem;
}

.page-shell,
.detail-shell,
.contact-panel,
.contact-form-shell {
    padding: var(--shell-padding);
}

.page-shell + .page-shell,
.detail-shell + .detail-shell {
    margin-top: 18px;
}

.page-lede {
    margin-top: 8px;
}

.card-link {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    min-height: 100%;
}

.card-link-copy {
    flex: 1;
}

.card-link-arrow {
    color: var(--highlight);
    font-weight: 700;
}

.detail-shell {
    max-width: 860px;
    margin: 0 auto;
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent-mid);
    margin-bottom: 22px;
    font-weight: 600;
}

.detail-title {
    margin-top: 14px;
}

.detail-subtitle {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.detail-meta {
    margin: 28px 0 26px;
}

.detail-chip-accent {
    background: rgba(255, 46, 168, 0.1);
    border-color: rgba(255, 46, 168, 0.18);
    color: #b31c73;
}

.detail-body > * + * {
    margin-top: 18px;
}

.detail-body h3 {
    margin-top: 36px;
    margin-bottom: 4px;
}

.detail-body ul li,
.detail-body ol li {
    margin-bottom: 10px;
}

.detail-note {
    padding: 18px 20px;
    border-left: 3px solid var(--highlight);
    background: rgba(255, 46, 168, 0.08);
    border-radius: 0 16px 16px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: start;
}

.contact-panel ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-panel li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(24, 52, 132, 0.08);
}

.contact-copy {
    max-width: 42rem;
}

.section-tight {
    padding-top: var(--section-space-tight);
}

.section-proof {
    padding-top: clamp(28px, 4vw, 34px);
}

.proof-header {
    margin-bottom: 26px;
    text-align: center;
}

.proof-header p {
    color: var(--ink-soft);
    max-width: 42rem;
    margin: 12px auto 0;
}

@media (max-width: 980px) {
    nav {
        top: max(10px, env(safe-area-inset-top, 0px));
        margin-top: 12px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: calc(70px + env(safe-area-inset-top, 0px));
        right: var(--page-gutter);
        width: min(320px, calc(100vw - 24px));
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        backdrop-filter: blur(20px) saturate(150%);
    }

    nav.nav-open .nav-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu a {
        border-radius: 16px;
        padding: 14px 16px;
    }

    .hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .fit-grid,
    .proof-grid,
    .pricing-grid,
    .card-link-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: start;
    }

    .section-stats {
        justify-content: start;
    }

    .section-stats,
    .metric-strip,
    .detail-meta,
    .project-meta,
    .project-stats {
        gap: 8px;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    section {
        padding: clamp(56px, 10vw, 72px) 0;
    }

    body > section#top:first-of-type {
        padding-top: 128px !important;
    }

    .hero-content,
    .impact-box,
    .benefit-card,
    .fit-card,
    .proof-card,
    .pricing-box,
    .contact-methods,
    .service-item,
    .project-summary,
    .page-shell,
    .card-link,
    .detail-shell,
    .contact-panel,
    .contact-form-shell,
    .cta-banner {
        border-radius: 22px;
    }

    h1 {
        font-size: clamp(2.45rem, 10vw, 3.5rem);
        line-height: 1;
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.06;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-content,
    .impact-box,
    .page-shell,
    .detail-shell,
    .contact-panel,
    .contact-form-shell {
        padding: 28px;
    }

    .nav-name img {
        height: 32px;
    }

    .hero-text {
        font-size: 1.05rem;
        margin-top: 18px;
    }

    .hero-credentials {
        font-size: 0.92rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn,
    .cta-banner .btn,
    .cta-content .btn {
        width: 100%;
    }

    .hero-points {
        margin-top: 22px;
        gap: 8px;
    }

    .impact-ratio {
        margin: 22px 0 10px;
    }

    .impact-number {
        font-size: clamp(3.2rem, 18vw, 4.6rem);
    }

    .impact-label,
    .project-category,
    .project-date,
    .project-client,
    .project-stat,
    .stat-label,
    .card-link-meta,
    .detail-chip-label {
        font-size: 0.78rem;
    }

    .content-text,
    .about-text p,
    .service-description,
    .faq-answer,
    .project-content p,
    .pricing-info p,
    .page-lede,
    .detail-body p,
    .detail-body li,
    .contact-copy {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .benefit-card,
    .fit-card,
    .proof-card,
    .pricing-box,
    .contact-methods,
    .service-item,
    .card-link,
    .contact-panel,
    .contact-form-shell,
    .project-summary {
        padding: 22px;
    }

    .page-shell,
    .detail-shell,
    .contact-panel,
    .contact-form-shell,
    .cta-banner {
        padding: 26px;
    }

    .section-label,
    .hero-label,
    .eyebrow {
        margin-bottom: 14px;
    }

    .section-header {
        gap: 12px;
        margin-bottom: 22px;
    }

    .section-stats {
        width: 100%;
    }

    .metric-pill,
    .detail-chip {
        font-size: 0.8rem;
        padding: 8px 11px;
    }

    .project-summary {
        gap: 14px;
    }

    .project-header {
        flex-direction: column;
        gap: 10px;
    }

    .tab-labels {
        padding: 4px;
        gap: 4px;
    }

    .tab-labels {
        display: flex;
        width: 100%;
    }

    .tab-labels label {
        flex: 1;
        text-align: center;
    }

    footer {
        margin-bottom: 34px;
    }
}

@media (max-width: 560px) {
    nav {
        padding: 10px 12px 10px 14px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .nav-menu {
        top: calc(62px + env(safe-area-inset-top, 0px));
        right: var(--page-gutter);
        left: var(--page-gutter);
        width: auto;
        border-radius: 22px;
    }

    section {
        padding: 60px 0;
    }

    body > section#top:first-of-type {
        padding-top: 112px !important;
    }

    .hero-content,
    .impact-box,
    .benefit-card,
    .fit-card,
    .proof-card,
    .pricing-box,
    .contact-methods,
    .service-item,
    .project-summary,
    .page-shell,
    .card-link,
    .detail-shell,
    .contact-panel,
    .contact-form-shell,
    .cta-banner {
        border-radius: 20px;
    }

    .hero-content,
    .impact-box,
    .page-shell,
    .detail-shell,
    .contact-panel,
    .contact-form-shell,
    .cta-banner {
        padding: 22px;
    }

    .benefit-card,
    .fit-card,
    .proof-card,
    .pricing-box,
    .contact-methods,
    .service-item,
    .card-link,
    .project-summary {
        padding: 20px;
    }

    h1 {
        font-size: clamp(2.15rem, 11vw, 2.85rem);
    }

    h2 {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }

    .hero-actions {
        margin-top: 24px;
    }

    .btn {
        min-height: 46px;
        padding: 11px 16px;
        font-size: 0.92rem;
    }

    .proof-card strong {
        font-size: 1.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 14px;
        border-radius: 14px;
    }

    footer {
        margin-top: 18px;
        margin-bottom: 26px;
        font-size: 0.88rem;
    }
}

@media (min-width: 981px) and (max-width: 1200px) {
    .hero {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    }

    .card-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1201px) {
    :root {
        --content-width: 1380px;
    }

    nav {
        padding: 12px 18px 12px 22px;
    }

    .nav-name img {
        height: 42px;
    }

    .nav-menu a {
        font-size: 0.98rem;
        padding: 12px 16px;
    }

    .hero {
        grid-template-columns: minmax(0, 1.92fr) minmax(300px, 0.72fr);
        align-items: stretch;
    }

    .hero-content {
        padding: clamp(36px, 4vw, 62px);
    }

    .hero-content h1 {
        max-width: 12.2ch;
        font-size: clamp(3rem, 4vw, 4.4rem);
    }

    .impact-box {
        min-height: 0;
        padding: 34px;
    }
}

@media (max-height: 760px) and (min-width: 721px) {
    nav {
        position: static;
        margin-top: 14px;
    }

    body > section#top:first-of-type {
        padding-top: clamp(72px, 10vw, 108px) !important;
    }

    .hero {
        padding-top: 28px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .benefit-card:hover,
    .fit-card:hover,
    .proof-card:hover,
    .pricing-box:hover,
    .card-link:hover,
    .project-summary:hover {
        transform: none;
        box-shadow: var(--shadow-card);
    }

    .btn:hover,
    .nav-menu a:hover {
        transform: none;
    }
}
