:root {
    --primary-color: #0b1d3a;
    --ink: #101820;
    --text-main: #18212b;
    --text-muted: #5d6772;
    --surface: #ffffff;
    --surface-soft: #f4f6f3;
    --surface-tint: #eef4f1;
    --line: #dce3e0;
    --gold: #c99a2e;
    --sage: #49665d;
    --wine: #7d4d46;
    --white: #ffffff;
    --shadow-sm: 0 10px 24px rgba(16, 24, 32, 0.08);
    --shadow-md: 0 24px 56px rgba(16, 24, 32, 0.16);
    --transition: 180ms ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--surface-soft);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
    word-break: keep-all;
    overflow-wrap: normal;
}

p {
    word-break: keep-all;
}

:focus-visible {
    outline: 3px solid rgba(201, 154, 46, 0.55);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.45rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.06rem;
    color: var(--text-muted);
}

.eyebrow,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--sage);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.badge {
    padding: 0.36rem 0.78rem;
    color: #6f5415;
    background: rgba(201, 154, 46, 0.14);
    border: 1px solid rgba(201, 154, 46, 0.24);
    border-radius: 999px;
    text-transform: none;
}

.badge-dark {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow-light {
    color: #ead28a;
}

.btn-primary,
.btn-outline,
.btn-outline-light,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 44px;
    border-radius: 6px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    white-space: normal;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.72rem 1.35rem;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #16325c;
    border-color: #16325c;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 29, 58, 0.22);
}

.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.72rem 1.35rem;
    border: 1px solid rgba(11, 29, 58, 0.48);
}

.btn-outline:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: var(--white);
    padding: 0.95rem 1.55rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.btn-large {
    min-height: 54px;
    padding: 0.95rem 1.65rem;
    font-size: 1.02rem;
}

.btn-full {
    width: 100%;
    margin-top: 0.4rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(16, 24, 32, 0.08);
    transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px rgba(16, 24, 32, 0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 72px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-size: 1.24rem;
    font-weight: 900;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.logo i {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.55rem;
}

.nav-links a {
    font-weight: 800;
    color: var(--text-main);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--sage);
}

.nav-actions .btn-primary {
    min-height: 42px;
    padding: 0.62rem 1.1rem;
}

.hero {
    position: relative;
    min-height: calc(100svh - 210px);
    padding: 7.6rem 2rem 2.6rem;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(5, 14, 29, 0.9) 0%, rgba(5, 14, 29, 0.7) 42%, rgba(5, 14, 29, 0.16) 74%),
        url('../images/hero-neutral.jpg') center right / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(5, 14, 29, 0.46), transparent);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    width: 100%;
    max-width: 680px;
    min-width: 0;
}

.hero .badge {
    color: #f5dda0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-title {
    font-size: 3.65rem;
    color: var(--white);
    margin-bottom: 1.05rem;
}

.hero-subtitle {
    font-size: 1.22rem;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1.55rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.hero-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.hero-guarantee i {
    color: #ead28a;
    margin-right: 0.25rem;
}

.hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    max-width: min(620px, 100%);
    margin-top: 1.3rem;
}

.hero-stats div {
    min-width: 0;
    padding: 0.85rem;
    border-left: 2px solid rgba(234, 210, 138, 0.72);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-stats strong {
    display: block;
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1.1;
}

.hero-stats span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}

.comparison-showcase {
    padding: 5rem 2rem;
    background: var(--surface);
}

.comparison-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
    gap: 3rem;
    align-items: center;
}

.comparison-copy h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
}

.photo-card {
    position: relative;
    min-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-soft);
    box-shadow: var(--shadow-md);
}

.photo-card-large {
    grid-row: span 2;
    min-height: 520px;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-card figcaption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.46rem 0.7rem;
    border-radius: 6px;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    font-size: 0.84rem;
    font-weight: 800;
}

.trust-strip {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
}

.trust-container span {
    padding: 0.42rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 700;
}

.agitation-solution,
.process,
.success-stories {
    padding: 6rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.solution-card,
.story-card,
.process-step {
    background: var(--surface);
    border: 1px solid rgba(16, 24, 32, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(16, 24, 32, 0.04);
}

.solution-card {
    padding: 2rem 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(73, 102, 93, 0.35);
    box-shadow: 0 18px 40px rgba(16, 24, 32, 0.08);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: var(--sage);
    background: rgba(73, 102, 93, 0.1);
    margin-bottom: 1.2rem;
}

.solution-card:nth-child(2) .card-icon {
    color: var(--wine);
    background: rgba(125, 77, 70, 0.1);
}

.solution-card:nth-child(3) .card-icon {
    color: var(--gold);
    background: rgba(201, 154, 46, 0.12);
}

.solution-card h3,
.process-step h3 {
    font-size: 1.18rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.solution-card p,
.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.process {
    padding-top: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    position: relative;
    padding: 2rem 1.5rem 1.7rem;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--gold));
}

.process-step span {
    display: inline-block;
    color: rgba(11, 29, 58, 0.22);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 1rem;
}

.expertise {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 2rem;
}

.expertise-container {
    max-width: 880px;
    margin: 0 auto;
}

.expertise-text .section-header {
    margin-bottom: 2.6rem;
}

.expertise-text .section-header h2 {
    color: var(--white);
    font-size: 2.45rem;
    margin-top: 0.4rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item.highlight {
    border-color: rgba(234, 210, 138, 0.44);
    background: rgba(234, 210, 138, 0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ead28a;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.35rem;
}

.feature-content h4 {
    font-size: 1.12rem;
    margin-bottom: 0.45rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.service-scope {
    padding: 5.5rem 2rem;
    background: var(--surface-tint);
}

.scope-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.2fr);
    gap: 3rem;
    align-items: start;
}

.scope-copy h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.scope-copy p {
    color: var(--text-muted);
}

.scope-table {
    overflow: hidden;
    border: 1px solid rgba(16, 24, 32, 0.1);
    border-radius: 8px;
    background: var(--surface);
}

.scope-table div {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
}

.scope-table div + div {
    border-top: 1px solid var(--line);
}

.scope-table strong {
    color: var(--primary-color);
}

.scope-table span {
    color: var(--text-muted);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.story-card {
    padding: 2.4rem;
}

.story-tags {
    margin-bottom: 1.4rem;
}

.tag {
    display: inline-flex;
    background: var(--surface-tint);
    padding: 0.42rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--sage);
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.72;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.story-quote strong {
    color: var(--primary-color);
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.final-cta {
    background:
        linear-gradient(135deg, rgba(11, 29, 58, 0.98), rgba(73, 102, 93, 0.92)),
        url('../images/real-detail.jpg') center / cover no-repeat;
    padding: 6rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-container {
    max-width: 840px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.65rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.cta-buttons .btn-primary {
    background-color: var(--gold);
    color: var(--primary-color);
    border-color: var(--gold);
}

.cta-buttons .btn-primary:hover {
    background-color: #e6bd55;
    border-color: #e6bd55;
}

.footer {
    background: #050e1d;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-site-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ead28a;
    font-weight: 800;
    font-size: 0.92rem;
}

.footer-site-link:hover {
    color: var(--white);
}

.footer-bizinfo p {
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.85rem;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 29, 0.72);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 220ms ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--surface);
    width: 100%;
    max-width: 620px;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(16px);
    transition: transform 220ms ease;
    max-height: 92vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.45rem;
    color: var(--primary-color);
}

.close-modal {
    width: 42px;
    height: 42px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    border-color: rgba(11, 29, 58, 0.35);
    background: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 800;
    font-size: 0.93rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.82rem 0.92rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text-main);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(73, 102, 93, 0.12);
}

.file-upload-box {
    border: 1.5px dashed rgba(73, 102, 93, 0.45);
    border-radius: 8px;
    padding: 1.35rem;
    text-align: center;
    cursor: pointer;
    color: var(--text-muted);
    background: var(--surface-soft);
    transition: border-color var(--transition), background var(--transition);
}

.file-upload-box:hover {
    border-color: var(--sage);
    background: var(--surface-tint);
}

.file-upload-box i {
    display: block;
    font-size: 1.9rem;
    color: var(--sage);
    margin-bottom: 0.45rem;
}

.file-upload-box span,
.file-upload-box small {
    display: block;
}

.file-upload-box small {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--sage);
}

.form-status {
    display: none;
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
}

.form-status.active {
    display: block;
}

.form-status.success {
    color: #1f5a3d;
    background: rgba(73, 102, 93, 0.12);
    border: 1px solid rgba(73, 102, 93, 0.24);
}

.form-status.error {
    color: #7d2f2a;
    background: rgba(125, 77, 70, 0.12);
    border: 1px solid rgba(125, 77, 70, 0.24);
}

@media (max-width: 1100px) {
    .cards-container,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .comparison-container,
    .scope-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 160px);
        padding-top: 7rem;
        background:
            linear-gradient(90deg, rgba(5, 14, 29, 0.92), rgba(5, 14, 29, 0.62)),
            url('../images/hero-neutral.jpg') center / cover no-repeat;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.08rem;
    }

    .photo-card-large {
        min-height: 440px;
    }

    .section-header h2,
    .expertise-text .section-header h2,
    .cta-container h2 {
        font-size: 2.1rem;
    }

    .footer-container {
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    h1,
    h2,
    h3,
    h4 {
        overflow-wrap: anywhere;
    }

    .nav-container {
        min-height: 66px;
        padding: 0 1rem;
        gap: 0.6rem;
    }

    .logo {
        font-size: 0.9rem;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        padding: 6.4rem 1.1rem 2.4rem;
        min-height: calc(100svh - 150px);
    }

    .hero-title {
        font-size: 2.12rem;
        line-height: 1.2;
    }

    .hero-subtitle br,
    .cta-container h2 br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.96rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .hero-cta a,
    .cta-buttons a {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.42rem;
    }

    .hero-stats div {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.56rem 0.7rem;
    }

    .hero-stats strong {
        flex: 0 0 4.4rem;
        font-size: 1.05rem;
    }

    .hero-stats span {
        margin-top: 0;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .hero-guarantee {
        gap: 0.55rem 0.8rem;
        font-size: 0.82rem;
    }

    .comparison-showcase,
    .agitation-solution,
    .process,
    .expertise,
    .service-scope,
    .success-stories,
    .final-cta {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .comparison-showcase,
    .agitation-solution,
    .expertise,
    .service-scope,
    .success-stories,
    .final-cta {
        padding-top: 4.2rem;
        padding-bottom: 4.2rem;
    }

    .process {
        padding-top: 1rem;
        padding-bottom: 4.2rem;
    }

    .cards-container,
    .process-grid,
    .stories-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2,
    .comparison-copy h2,
    .scope-copy h2,
    .expertise-text .section-header h2,
    .cta-container h2 {
        font-size: 1.78rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .photo-card,
    .photo-card-large {
        grid-row: auto;
        min-height: 280px;
    }

    .photo-card figcaption {
        left: 0.8rem;
        bottom: 0.8rem;
    }

    .scope-table div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .story-card {
        padding: 1.7rem;
    }

    .footer {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.8rem;
    }

    .modal {
        padding: 0.7rem;
    }

    .modal-content {
        padding: 1.35rem;
    }
}

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