* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink-950: #0f1720;
    --ink-900: #16202b;
    --ink-700: #415160;
    --ink-500: #66788a;
    --surface-100: #f4efe6;
    --surface-200: #fffaf2;
    --surface-300: #f7f2ea;
    --white: #ffffff;
    --line: rgba(22, 32, 43, 0.1);
    --accent: #dd6b2f;
    --accent-strong: #b94f18;
    --accent-soft: rgba(221, 107, 47, 0.12);
    --teal: #176b6b;
    --teal-soft: rgba(23, 107, 107, 0.14);
    --shadow-sm: 0 10px 30px rgba(15, 23, 32, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 32, 0.16);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --max-width: 1180px;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 130px;
}

body {
    font-family: 'Source Sans 3', Georgia, serif;
    line-height: 1.6;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(23, 107, 107, 0.08), transparent 32%),
        linear-gradient(180deg, #fffaf5 0%, #f6f0e8 50%, #f7f3ec 100%);
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.navbar {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.85rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 32, 0.74);
    backdrop-filter: blur(16px);
    border-radius: 999px;
    box-shadow: 0 14px 45px rgba(15, 23, 32, 0.22);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    display: block;
    height: 78px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.language-dropdown {
    position: relative;
}

.language-dropdown summary {
    list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    min-width: 150px;
    padding: 0.72rem 0.95rem 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    color: rgba(255, 250, 242, 0.96);
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-dropdown[open] .language-toggle {
    outline: none;
    border-color: rgba(255, 210, 184, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 210, 184, 0.18);
}

.language-toggle:focus-visible,
.language-dropdown[open] .language-toggle {
    transform: translateY(-1px);
}

.language-toggle-icon {
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid rgba(255, 250, 242, 0.86);
    border-bottom: 2px solid rgba(255, 250, 242, 0.86);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.language-dropdown[open] .language-toggle-icon {
    transform: rotate(225deg) translateY(-1px);
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    display: grid;
    gap: 0.35rem;
    min-width: 180px;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(15, 23, 32, 0.96), rgba(25, 38, 51, 0.94));
    box-shadow: 0 22px 50px rgba(15, 23, 32, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-dropdown[open] .language-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-option {
    width: 100%;
    padding: 0.78rem 0.9rem;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: rgba(255, 250, 242, 0.9);
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-option:hover,
.language-option:focus-visible {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transform: translateX(2px);
}

.language-option.is-active {
    background: linear-gradient(135deg, rgba(221, 107, 47, 0.25), rgba(23, 107, 107, 0.2));
    color: var(--white);
}

.nav-menu a {
    color: rgba(255, 250, 242, 0.92);
    text-decoration: none;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: #ffd2b8;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;
    padding: 170px 0 110px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 360px;
    height: 360px;
    top: 90px;
    right: -80px;
    background: radial-gradient(circle, rgba(221, 107, 47, 0.22), rgba(221, 107, 47, 0));
}

.hero::after {
    width: 420px;
    height: 420px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(23, 107, 107, 0.18), rgba(23, 107, 107, 0));
}

.hero-content {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 255, 255, 0.78)),
        linear-gradient(130deg, rgba(23, 107, 107, 0.12), rgba(221, 107, 47, 0.08));
    box-shadow: var(--shadow-lg);
    animation: rise-in 0.8s ease both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 32, 0.08);
    color: var(--ink-700);
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.section-title,
.service-card h3,
.coverage-panel h3,
.insight-card h3,
.process-step h3,
.contact-intro h3,
.contact-item h3,
.stat-item h3 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
}

.hero h1 {
    max-width: 14ch;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 1.3rem;
    color: var(--ink-950);
}

.hero-subtitle {
    max-width: 56rem;
    font-size: 1.3rem;
    color: var(--ink-700);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.cta-button,
.secondary-button,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cta-button,
.submit-button {
    background: linear-gradient(135deg, var(--accent), #f08b4a);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(185, 79, 24, 0.25);
}

.secondary-button {
    border: 1px solid rgba(15, 23, 32, 0.12);
    background: rgba(255, 255, 255, 0.65);
    color: var(--ink-900);
}

.cta-button:hover,
.secondary-button:hover,
.submit-button:hover,
.cta-button:focus-visible,
.secondary-button:focus-visible,
.submit-button:focus-visible {
    transform: translateY(-2px);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.highlight-item {
    padding: 1rem 1.15rem;
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.7);
}

.highlight-item strong {
    display: block;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.highlight-item span {
    color: var(--ink-700);
    font-size: 0.98rem;
}

.proof-band {
    padding-bottom: 1rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.proof-item {
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.proof-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--accent-strong);
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.proof-item p {
    color: var(--ink-700);
}

.section {
    padding: 88px 0;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
    color: var(--ink-950);
}

.section-subtitle {
    max-width: 52rem;
    margin-bottom: 2.5rem;
    color: var(--ink-700);
    font-size: 1.15rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.about-text p + p {
    margin-top: 1rem;
}

.about-text p {
    color: var(--ink-700);
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stat-item {
    min-height: 190px;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 240, 231, 0.9));
    border: 1px solid rgba(221, 107, 47, 0.16);
    box-shadow: var(--shadow-sm);
}

.stat-item h3 {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    color: var(--accent-strong);
    margin-bottom: 0.45rem;
}

.stat-item p {
    color: var(--ink-700);
    font-size: 1rem;
}

.stat-item.accent {
    background: linear-gradient(135deg, rgba(23, 107, 107, 0.15), rgba(255, 255, 255, 0.96));
    border-color: rgba(23, 107, 107, 0.2);
}

.services-grid,
.insight-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.service-card,
.insight-card,
.process-step,
.coverage-panel,
.contact-info,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-sm);
}

.service-card,
.insight-card,
.process-step {
    padding: 1.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.insight-card:hover,
.process-step:hover,
.coverage-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card h3,
.insight-card h3,
.coverage-panel h3,
.process-step h3,
.contact-intro h3,
.contact-item h3 {
    margin-bottom: 0.65rem;
    font-size: 1.35rem;
    line-height: 1.15;
}

.service-card p,
.insight-card p,
.coverage-panel p,
.process-step p,
.contact-item p,
.contact-intro p,
.form-note {
    color: var(--ink-700);
}

.coverage-layout {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 1.25rem;
}

.coverage-lead {
    padding: 2rem;
    background:
        linear-gradient(145deg, rgba(15, 23, 32, 0.92), rgba(23, 107, 107, 0.88)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.08);
}

.coverage-lead h3,
.coverage-lead p {
    color: var(--white);
}

.coverage-lead p {
    opacity: 0.9;
}

.coverage-lead p + p {
    margin-top: 1rem;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.coverage-panel {
    padding: 1.5rem;
}

.sectors .insight-card:nth-child(2n) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(23, 107, 107, 0.06));
}

.sectors .insight-card:nth-child(2n + 1) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(221, 107, 47, 0.06));
}

.process-step {
    position: relative;
    overflow: hidden;
}

.step-number {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.contact-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.25rem;
}

.contact-info,
.contact-form {
    padding: 1.8rem;
}

.contact-info {
    display: grid;
    gap: 1.2rem;
    align-content: start;
}

.contact-intro {
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}

.contact-item a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(15, 23, 32, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-900);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(23, 107, 107, 0.45);
    box-shadow: 0 0 0 4px rgba(23, 107, 107, 0.12);
}

.form-note {
    font-size: 0.95rem;
}

.footer {
    padding: 1.8rem 0 2.4rem;
}

.footer .container {
    padding: 1.4rem 1.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 32, 0.92);
    color: rgba(255, 250, 242, 0.86);
    text-align: center;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero-highlights,
    .proof-grid,
    .services-grid,
    .insight-grid,
    .process-grid,
    .about-content,
    .coverage-layout,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats,
    .coverage-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .navbar {
        top: 12px;
    }

    .navbar .container {
        border-radius: 28px;
        border-color: rgba(22, 32, 43, 0.1);
        background:
            linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(247, 242, 234, 0.82)),
            linear-gradient(120deg, rgba(23, 107, 107, 0.12), rgba(221, 107, 47, 0.08));
        box-shadow: 0 18px 42px rgba(15, 23, 32, 0.12);
    }

    .logo-img {
        height: 64px;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        gap: 0.65rem;
    }

    .language-toggle {
        min-width: 136px;
        padding: 0.68rem 0.85rem 0.68rem 0.9rem;
        font-size: 0.84rem;
        border-color: rgba(22, 32, 43, 0.12);
        background: rgba(255, 255, 255, 0.72);
        color: var(--ink-900);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    }

    .language-toggle:hover,
    .language-toggle:focus-visible,
    .language-dropdown[open] .language-toggle {
        border-color: rgba(23, 107, 107, 0.28);
        box-shadow: 0 0 0 4px rgba(23, 107, 107, 0.12);
    }

    .language-toggle-icon {
        border-right-color: rgba(22, 32, 43, 0.74);
        border-bottom-color: rgba(22, 32, 43, 0.74);
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.8rem;
        border-radius: 26px;
        border: 1px solid rgba(22, 32, 43, 0.08);
        background:
            linear-gradient(180deg, rgba(255, 250, 242, 0.97), rgba(247, 242, 234, 0.94)),
            linear-gradient(145deg, rgba(23, 107, 107, 0.06), rgba(221, 107, 47, 0.04));
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-menu a {
        display: block;
        padding: 0.9rem 1rem;
        border-radius: 18px;
        color: var(--ink-900);
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
        color: var(--teal);
        background: rgba(23, 107, 107, 0.08);
    }

    .hamburger span {
        background-color: var(--ink-900);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero {
        padding-top: 145px;
    }

    .hero-content {
        padding: 2rem;
    }

    section[id] {
        scroll-margin-top: 110px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--max-width), calc(100% - 28px));
    }

    .hero {
        padding: 138px 0 84px;
    }

    .navbar .container {
        gap: 0.75rem;
        padding: 0.75rem 0.9rem;
    }

    .logo-img {
        height: 54px;
    }

    .language-toggle {
        min-width: 124px;
    }

    .language-menu {
        min-width: 160px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-subtitle,
    .section-subtitle,
    .about-text p {
        font-size: 1.03rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-button,
    .secondary-button,
    .submit-button {
        width: 100%;
    }

    .about-stats,
    .coverage-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

    .footer .container {
        border-radius: 28px;
    }
}
