:root {
    --bg: #eef2f6;
    --surface: #ffffff;
    --surface-strong: #f6f8fb;
    --surface-deep: #0f2447;
    --ink: #10213e;
    --muted: #526174;
    --line: rgba(16, 33, 62, 0.12);
    --primary: #f06d1f;
    --primary-deep: #d85209;
    --secondary: #173b73;
    --secondary-deep: #0d254d;
    --success: #2f8f63;
    --shadow: 0 18px 44px rgba(11, 25, 49, 0.1);
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 96px;
    min-height: calc(100svh - 96px);
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 251, 0.96)),
    linear-gradient(135deg, rgba(240, 109, 31, 0.05), transparent 30%),
    linear-gradient(180deg, #f5f7fa 0%, #edf2f7 100%);
}

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

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

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

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(16, 33, 62, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 80px;
}

.brand {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    padding: 7px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
    border: 1px solid rgba(23, 59, 115, 0.08);
    box-shadow:
        0 10px 22px rgba(15, 36, 71, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.brand-name {
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.brand-tag {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
}

.brand-motto {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(16, 33, 62, 0.7);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--primary-deep);
}

.nav-highlight {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(240, 109, 31, 0.14), rgba(240, 109, 31, 0.08));
    color: var(--primary-deep);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    border: 0;
    background: transparent;
    padding: 0.25rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 1.7rem;
    height: 2px;
    border-radius: 999px;
    background: var(--secondary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
    padding: 2.0rem 0 2.0rem;
    min-height: auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: 1rem;
    align-items: start;
}

.hero-copy,
.hero-panel,
.process-card,
.service-card,
.value-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-copy {
    position: relative;
    padding: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94)),
        linear-gradient(135deg, rgba(240, 109, 31, 0.04), transparent 30%);
    border: 1px solid rgba(16, 33, 62, 0.07);
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -10% -18% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(23, 59, 115, 0.1), transparent 68%);
}

.hero-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.45rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--secondary-deep);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    margin: 0;
    color: var(--primary-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
strong {
    text-wrap: balance;
}

h1 {
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

h2 {
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

h3 {
    margin: 0 0 0.65rem;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1.05rem;
}

.hero-text,
.section-heading p,
.about-copy p,
.contact-copy > p,
.check-list p,
.process-card span,
.service-card p,
.value-card p,
.contact-card p,
.contact-card a,
.footer-text,
.footer-grid a {
    color: var(--muted);
    line-height: 1.55;
}

.hero-text {
    margin: 0.65rem 0 0;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0.95rem 0 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.68rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: white;
    box-shadow: 0 14px 26px rgba(216, 108, 34, 0.2);
}

.button-secondary {
    border-color: rgba(22, 58, 113, 0.14);
    background: rgba(255, 255, 255, 0.8);
    color: var(--secondary-deep);
}

.hero-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3.25rem;
    margin-bottom: 2.2rem;
}

.hero-capability-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.4rem 0.62rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #1d3f76 0%, #12345f 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-align: center;
    box-shadow:
        0 8px 18px rgba(13, 37, 77, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-capability-grid span:nth-child(3n + 2) {
    background: linear-gradient(180deg, #f98739 0%, #ea6616 100%);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.hero-capability-grid span:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        0 11px 20px rgba(13, 37, 77, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-social-wrap {
    margin-top: 0.7rem;
}

.hero-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(23, 59, 115, 0.96), rgba(15, 36, 71, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(11, 25, 49, 0.16);
}

.hero-social p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    line-height: 1.45;
}

.hero-social-links {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.hero-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.46rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-social-links a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero-panel {
    display: grid;
    gap: 0.6rem;
}

.panel-card,
.process-card {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(15, 36, 71, 0.98), rgba(12, 31, 64, 0.96));
    color: white;
}

.panel-intro p,
.process-card span,
.process-card .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.panel-label {
    display: inline-flex;
    margin-bottom: 0.55rem;
    padding: 0.3rem 0.56rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffd2b0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.stat-card {
    padding: 0.8rem;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(16, 33, 62, 0.08);
    color: var(--ink);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 1.2rem;
}

.stat-card span {
    color: var(--muted);
    line-height: 1.65;
}

.accent-card {
    grid-column: auto;
    background: linear-gradient(135deg, rgba(240, 109, 31, 0.96), rgba(216, 82, 9, 0.98));
    color: white;
}

.panel-intro p,
.stat-card span {
    line-height: 1.5;
}

.accent-card span {
    color: rgba(255, 255, 255, 0.86);
}

.section {
    padding: 3rem 0;
}

#services.section {
    padding-top: 2rem;
    padding-bottom: 2.4rem;
    background: linear-gradient(180deg, rgba(14, 34, 67, 0.98), rgba(16, 38, 72, 0.97));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#services .section-heading .eyebrow {
    color: #ffbe95;
}

#services .section-heading h2 {
    color: #ffffff;
}

#services .section-heading p {
    color: rgba(235, 243, 255, 0.78);
}

.section-alt {
    background: linear-gradient(180deg, rgba(240, 244, 249, 0.6), rgba(255, 255, 255, 0.82));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.service-grid,
.values-grid,
.contact-card-list {
    display: grid;
    gap: 0.95rem;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card,
.value-card,
.contact-card {
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(16, 33, 62, 0.08);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: 0 10px 24px rgba(15, 36, 71, 0.06);
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding-top: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 109, 31, 0.42);
    box-shadow: 0 14px 26px rgba(10, 24, 46, 0.14);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
}

.service-card::after {
    content: attr(data-capability);
    position: absolute;
    top: 0.6rem;
    right: 0.65rem;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(16, 33, 62, 0.4);
}

.service-card h3 {
    margin-bottom: 0.45rem;
    color: var(--secondary-deep);
    font-size: 1.02rem;
}

.service-card p {
    margin: 0;
    color: #4b5e76;
    line-height: 1.5;
}

.two-column-layout,
.about-layout,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: start;
}

.check-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.4rem;
}

.check-list div {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(16, 33, 62, 0.08);
    box-shadow: 0 10px 24px rgba(15, 36, 71, 0.05);
}

.process-card ol {
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

.process-card li {
    display: grid;
    gap: 0.35rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-card li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

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

.contact-section {
    padding-bottom: 4.5rem;
}

.contact-grid {
    grid-template-columns: minmax(0, 680px);
    justify-content: start;
}

.contact-card-list {
    margin-top: 2rem;
}

.contact-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--secondary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card {
    border-left: 5px solid var(--primary);
}

.project-visuals {
    padding-top: 0;
}

.visuals-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.5rem 1.6rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(15, 36, 71, 0.98), rgba(20, 48, 92, 0.96));
    box-shadow: var(--shadow);
}

.visuals-card h2,
.visuals-card p {
    color: white;
}

.visuals-card p {
    margin: 0.55rem 0 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    padding: 2.2rem 0 1.2rem;
    background: #0d2141;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 1.5rem;
}

.footer-intro {
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: inline-flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 1rem;
}

.site-footer .brand-copy {
    gap: 0.08rem;
}

.site-footer .brand-name {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.94);
}

.site-footer .brand-tag {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: rgba(176, 201, 238, 0.92);
}

.footer-grid h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
    color: white;
}

.footer-text {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom {
    padding-top: 1.1rem;
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

html.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

html.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-grid,
    .two-column-layout,
    .about-layout,
    .contact-grid,
    .footer-grid,
    .service-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .accent-card {
        grid-column: 1 / -1;
    }

    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1280px), (max-height: 900px) {
    .hero-section {
        padding: 3rem 0 14rem;
    }

    .hero-grid {
        gap: 0.85rem;
    }

    .hero-copy,
    .panel-card {
        padding: 1.1rem;
    }

    h1 {
        font-size: clamp(1.4rem, 2.45vw, 2.35rem);
    }

    .hero-text {
        font-size: 0.86rem;
    }

    .hero-actions {
        margin-top: 2.8rem;
        gap: 0.55rem;
    }

    .button {
        min-height: 40px;
        padding: 0.6rem 0.9rem;
    }

    .hero-capability-grid span {
        min-height: 40px;
        font-size: 1.2rem;
    }

    .stats-grid {
        gap: 0.45rem;
    }

    .stat-card {
        padding: 0.7rem;
    }

    .stat-card strong {
        font-size: 1.05rem;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.4rem;
        padding: 1rem;
        border-radius: 22px;
        background: rgba(255, 252, 247, 0.98);
        border: 1px solid rgba(24, 34, 47, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

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

    .site-nav a {
        padding: 0.9rem 1rem;
        border-radius: 14px;
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        background: rgba(240, 109, 31, 0.08);
    }

    .hero-grid,
    .two-column-layout,
    .about-layout,
    .contact-grid,
    .service-grid,
    .values-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .hero-copy,
    .panel-card,
    .process-card,
    .visuals-card {
        padding: 1.15rem;
    }

    h1 {
        font-size: clamp(1.7rem, 8.2vw, 2.45rem);
        line-height: 0.98;
    }

    .section {
        padding: 3.2rem 0;
    }

    #services.section {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .hero-section {
        min-height: auto;
        display: block;
    }

    .visuals-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge-row {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .accent-card {
        grid-column: auto;
    }

    .hero-social {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-social-links {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.2rem), var(--container));
    }

    .header-inner {
        min-height: 74px;
        align-items: center;
        gap: 0.55rem;
        padding-right: 0.5rem;
    }

    .brand {
        gap: 0.5rem;
        align-items: center;
        max-width: calc(100% - 98px);
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-logo {
        width: 100%;
        height: 100%;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        padding: 4px;
        flex-shrink: 0;
    }

    .footer-intro {
        padding: 0.9rem;
        border-radius: 18px;
    }

    .site-footer .brand-name {
        font-size: 0.84rem;
    }

    .site-footer .brand-tag {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
    }

    .brand-name {
        font-size: 0.64rem;
        line-height: 1.15;
        letter-spacing: 0.02em;
    }

    .brand-tag {
        font-size: 0.5rem;
        letter-spacing: 0.14em;
    }

    .brand-motto {
        display: none;
    }

    .menu-toggle {
        padding: 0.2rem;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: 0.65rem;
    }

    .menu-toggle span {
        width: 1.3rem;
    }

    .hero-section {
        padding-top: 0.65rem;
        padding-bottom: 0.2rem;
        min-height: auto;
    }

    .hero-copy {
        padding: 1rem;
    }

    h1 {
        font-size: clamp(1.25rem, 8vw, 1.78rem);
        line-height: 1.05;
    }

    .hero-text {
        margin-top: 0.55rem;
        font-size: 0.82rem;
        line-height: 1.48;
        color: #5e7088;
    }

    .hero-actions {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }

    .section-heading h2 {
        font-size: clamp(1.5rem, 7.8vw, 1.95rem);
        line-height: 1.05;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-capability-grid {
        display: none;
    }

    #services.section {
        position: relative;
        margin-top: 0.18rem;
        padding-top: 0.62rem;
        padding-bottom: 1.2rem;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        overflow: hidden;
        background: linear-gradient(180deg, #f5f8fc 0%, #edf3fa 100%);
        border-top: 1px solid rgba(20, 45, 82, 0.12);
        border-bottom: 1px solid rgba(20, 45, 82, 0.06);
    }

    #services.section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(180deg, rgba(16, 45, 86, 0.08), rgba(16, 45, 86, 0));
        pointer-events: none;
    }

    #services .section-heading {
        margin-bottom: 0.7rem;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
    }

    #services .section-heading .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        margin-bottom: 0.2rem;
        color: #d96a27;
    }

    #services .section-heading h2 {
        font-size: clamp(1.18rem, 6.1vw, 1.5rem);
        line-height: 1.09;
        max-width: 18ch;
        color: #17345e;
    }

    #services .section-heading p {
        margin-top: 0.35rem;
        font-size: 0.8rem;
        line-height: 1.42;
        color: #4f6076;
        max-width: 34ch;
    }

    .button {
        width: 100%;
    }

    .hero-social {
        padding: 0.78rem 0.82rem;
    }

    .hero-social p {
        font-size: 0.78rem;
    }

    .hero-social-links {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-social-links a {
        width: 100%;
        justify-content: center;
        font-size: 0.78rem;
    }
}
