:root {
    --color-primary: #0c1f3d;
    --color-primary-strong: #08152b;
    --color-secondary: #1c4fb2;
    --color-accent: #c7902f;
    --color-accent-soft: #f5ead5;
    --color-surface: #ffffff;
    --color-surface-muted: #f6f8fc;
    --color-surface-tint: #eef3fb;
    --color-border: rgba(12, 31, 61, 0.1);
    --color-border-strong: rgba(28, 79, 178, 0.16);
    --color-text-main: #182437;
    --color-text-muted: #5e6b7c;
    --color-white: #ffffff;
    --shadow-soft: 0 18px 48px rgba(12, 31, 61, 0.08);
    --shadow-card: 0 24px 60px rgba(12, 31, 61, 0.1);
    --shadow-hover: 0 28px 70px rgba(12, 31, 61, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --max-width: 1200px;
    --section-space: clamp(5rem, 8vw, 7.5rem);
    --transition-fast: 180ms ease;
    --transition-base: 320ms cubic-bezier(0.22, 1, 0.36, 1);
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-surface-muted);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(28, 79, 178, 0.5);
    border-radius: 10px;
    border: 3px solid var(--color-surface-muted);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-secondary);
}

::selection {
    background-color: rgba(28, 79, 178, 0.2);
    color: var(--color-primary-strong);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-main);
    background:
        radial-gradient(circle at top left, rgba(28, 79, 178, 0.05), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.page-shell {
    transition:
        filter 360ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.modal-open {
    overflow: hidden;
}

body.modal-open .page-shell {
    filter: blur(10px);
    transform: scale(0.995);
    pointer-events: none;
    user-select: none;
}

main {
    overflow: clip;
}

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

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

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

.required-asterisk {
    color: #ef4444;
    margin-left: 2px;
    font-weight: 800;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 200;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-primary);
    transform: translateY(-140%);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
}

.center {
    text-align: center;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3.75rem;
}

.section-header h2 {
    margin: 0 0 1.25rem;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-primary-strong);
    letter-spacing: -0.02em;
}

.section-header p {
    margin: 0 auto;
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.78;
    color: var(--color-text-muted);
}

.services,
.industries,
.why-us,
.methodology,
.faq-section,
.dual-cta {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 52px;
    padding: 0 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1;
    transition:
        transform 400ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1),
        background-color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        filter 400ms cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.btn i {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

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

.btn:hover i.lucide-arrow-right {
    transform: translateX(4px);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
    transition: transform 150ms cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-dark {
    color: var(--color-white);
    background: linear-gradient(135deg, #113887 0%, #0c1f3d 100%);
    box-shadow: 0 14px 28px rgba(17, 56, 135, 0.18);
}

.btn-dark:hover {
    box-shadow: 0 18px 34px rgba(17, 56, 135, 0.24);
    filter: brightness(1.1);
}

.btn-accent {
    color: var(--color-primary-strong);
    background: linear-gradient(135deg, #f0d7a8 0%, #c7902f 100%);
}

.btn-accent:hover {
    box-shadow: 0 16px 30px rgba(199, 144, 47, 0.18);
    filter: brightness(1.08);
}

.btn-white {
    color: var(--color-primary-strong);
    background-color: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 28px rgba(8, 21, 43, 0.12);
}

.btn-white:hover {
    background-color: var(--color-white);
    box-shadow: 0 16px 36px rgba(8, 21, 43, 0.16);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.22),
            rgba(255, 255, 255, 0.10));

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.28);

    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.94rem;
    font-weight: 600;
    color: rgba(24, 36, 55, 0.82);
    transition: color 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background-color: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1.25rem;
    cursor: pointer;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition:
        transform 400ms cubic-bezier(0.25, 1, 0.5, 1),
        background-color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

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

.nav-btn:active {
    transform: translateY(1px) scale(0.97);
    transition: transform 150ms cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-btn-outline {
    color: var(--color-secondary);
    border-color: rgba(28, 79, 178, 0.22);
    background-color: rgba(255, 255, 255, 0.92);
}

.nav-btn-outline:hover {
    color: var(--color-primary-strong);
    border-color: rgba(12, 31, 61, 0.22);
}

.nav-btn-filled {
    color: var(--color-white);
    background: linear-gradient(135deg, #113887 0%, #0c1f3d 100%);
    box-shadow: 0 14px 28px rgba(17, 56, 135, 0.16);
}

.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 4rem) 0 clamp(6rem, 10vw, 8rem);
    background:
        radial-gradient(circle at 0% 0%, rgba(28, 79, 178, 0.08), transparent 34%),
        radial-gradient(circle at 100% 18%, rgba(199, 144, 47, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 42px;
    padding: 0 1rem;
    margin-bottom: 1.6rem;
    border: 1px solid rgba(28, 79, 178, 0.14);
    border-radius: 999px;
    color: var(--color-secondary);
    background: rgba(238, 243, 251, 0.88);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.hero-content h1 {
    margin: 0 0 1.25rem;
    font-family: var(--font-heading);
    font-size: clamp(2.9rem, 3.2vw, 4.55rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--color-primary-strong);
}

.hero-content h1 span {
    color: var(--color-secondary);
}

.hero-content p {
    margin: 0 0 2rem;
    max-width: 580px;
    font-size: 1.02rem;
    line-height: 1.82;
    color: var(--color-text);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    min-width: 196px;
}

.btn-hero-primary {
    color: var(--color-white);
    background: linear-gradient(135deg, #113887 0%, #0c1f3d 100%);
    box-shadow: 0 18px 36px rgba(17, 56, 135, 0.18);
}

.btn-hero-primary:hover {
    box-shadow: 0 20px 38px rgba(17, 56, 135, 0.24);
    filter: brightness(1.1);
}

.btn-hero-secondary {
    color: var(--color-primary-strong);
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(12, 31, 61, 0.1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(28, 79, 178, 0.25);
    box-shadow: 0 14px 30px rgba(8, 21, 43, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.8rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 86px;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(12, 31, 61, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(12, 31, 61, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1), border-color 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(12, 31, 61, 0.08);
    border-color: rgba(28, 79, 178, 0.16);
}

.stat i {
    width: 32px;
    height: 32px;
    color: var(--color-secondary);
    flex: 0 0 32px;
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.stat:hover i {
    transform: scale(1.15);
}

.stat strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-primary-strong);
}

.stat span {
    display: block;
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--color-text-muted);
}

.trusted-copy {
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.hero-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
    opacity: 0.82;
}

.brand-logo {
    height: 34px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition:
        opacity var(--transition-base),
        filter var(--transition-base),
        transform var(--transition-base);
}

.brand-logo[alt="Microsoft"] {
    height: 38px;
    padding: 2px 0;
}

.brand-logo[alt="Deloitte"] {
    height: 32px;
    padding: 3px 0;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-photo-frame {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(12, 31, 61, 0.08);
}

.hero-photo-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-photo-frame:hover img {
    transform: scale(1.05);
}

/* Decorative background for hero image */
.hero-image::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--color-surface-tint) 0%, transparent 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.hero-image:hover .hero-photo-frame img {
    transform: scale(1.03);
}

.services {
    padding: var(--section-space) 0;
    background-color: var(--color-surface);
}

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 312px;
    padding: 1.85rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.94));
    box-shadow: var(--shadow-soft);
    transition:
        transform 500ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 500ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 500ms cubic-bezier(0.25, 1, 0.5, 1),
        background 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), rgba(199, 144, 47, 0.82));
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(28, 79, 178, 0.25);
    box-shadow: 0 32px 80px rgba(12, 31, 61, 0.12);
}

.service-card .card-number {
    position: absolute;
    top: 0.25rem;
    right: 1rem;
    font-size: clamp(3.6rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 800;
    color: rgba(28, 79, 178, 0.1);
    pointer-events: none;
}

.icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(28, 79, 178, 0.1), rgba(238, 243, 251, 0.9));
    color: var(--color-secondary);
}

.icon-wrap i {
    width: 20px;
    height: 20px;
    stroke-width: 2.1;
}

.service-card .icon-wrap {
    margin-bottom: 1.25rem;
    transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .icon-wrap {
    transform: scale(1.08);
}

.service-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.18rem;
    line-height: 1.32;
    font-weight: 700;
    color: var(--color-primary-strong);
}

.service-card p {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--color-text-muted);
}

.btn-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0 0.95rem;
    border-radius: 999px;
    color: var(--color-secondary);
    background-color: rgba(238, 243, 251, 0.92);
    border: 1px solid rgba(28, 79, 178, 0.14);
    font-size: 0.82rem;
    font-weight: 700;
    transition:
        transform 400ms cubic-bezier(0.25, 1, 0.5, 1),
        background-color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-read-more i {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-read-more:hover {
    color: var(--color-primary-strong);
    background-color: var(--color-white);
    border-color: rgba(12, 31, 61, 0.14);
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

.industries {
    padding: var(--section-space) 0;
    background:
        linear-gradient(180deg, var(--color-surface-muted) 0%, rgba(238, 243, 251, 0.56) 100%);
}

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

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 1.5rem;
    border: 1px solid rgba(28, 79, 178, 0.1);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(246, 248, 252, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(12, 31, 61, 0.04);
    transition:
        transform 400ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-card .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(238, 243, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 1), 0 8px 16px rgba(12, 31, 61, 0.06);
    color: var(--color-secondary);
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-card h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 800;
    color: var(--color-primary-strong);
    letter-spacing: -0.01em;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(28, 79, 178, 0.3);
    box-shadow: 0 24px 48px rgba(12, 31, 61, 0.1);
}

.industry-card:hover .icon-wrap {
    transform: scale(1.1) translateY(-4px) rotate(5deg);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 1), 0 12px 24px rgba(12, 31, 61, 0.12);
}

.why-us {
    padding: var(--section-space) 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(199, 144, 47, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: stretch;
}

.why-image {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(12, 31, 61, 0.08);
    box-shadow: var(--shadow-card);
}

.why-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    max-width: 640px;
}

.why-eyebrow,
.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 38px;
    padding: 0 0.95rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(199, 144, 47, 0.18);
    border-radius: 999px;
    background-color: rgba(245, 234, 213, 0.7);
    color: #8f6525;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.why-content h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-primary-strong);
}

.why-content h2 span {
    color: var(--color-secondary);
}

.why-sub {
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.82;
    color: var(--color-text-muted);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-surface);
    box-shadow: 0 10px 25px rgba(12, 31, 61, 0.03);
    transition:
        transform 500ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 500ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(12, 31, 61, 0.08);
    border-color: rgba(28, 79, 178, 0.2);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 16px;
    color: var(--color-secondary);
    background: linear-gradient(145deg, rgba(28, 79, 178, 0.1), rgba(238, 243, 251, 0.92));
}

.benefit-icon i {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

.benefit-copy {
    display: grid;
    gap: 0.35rem;
}

.benefit-copy strong {
    font-size: 0.98rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-primary-strong);
}

.benefit-copy span {
    font-size: 0.92rem;
    line-height: 1.62;
    color: var(--color-text-muted);
}

.methodology {
    padding: var(--section-space) 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(28, 79, 178, 0.06), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.methodology .section-header {
    margin-bottom: 4.25rem;
}

.methodology-flow {
    position: relative;
    display: grid;
    gap: 1.35rem;
    max-width: 1060px;
    margin: 0 auto;
}

.methodology-flow::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(28, 79, 178, 0.05), rgba(28, 79, 178, 0.2), rgba(199, 144, 47, 0.15));
}

.methodology-step {
    position: relative;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 2.5rem;
}

.timeline-node {
    padding-top: 1.45rem;
    position: relative;
    z-index: 1;
}

.timeline-node span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(199, 144, 47, 0.4);
    border-radius: 20px;
    color: var(--color-primary-strong);
    background: linear-gradient(135deg, #ffffff 0%, #fef8eb 100%);
    box-shadow: 0 12px 30px rgba(12, 31, 61, 0.1);
    font-size: 1.1rem;
    font-weight: 800;
}

.method-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem;
    border: 1px solid var(--color-border);
    border-radius: 32px;
    background: var(--color-surface);
    box-shadow: 0 30px 60px rgba(12, 31, 61, 0.03);
    transition:
        transform 500ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 500ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 500ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.method-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.5s ease;
}

.method-card:hover::after {
    height: 100%;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 80px rgba(12, 31, 61, 0.1);
    border-color: rgba(28, 79, 178, 0.25);
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 12px;
    background: var(--color-surface-tint);
    color: var(--color-secondary);
    transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.method-card:hover .method-icon {
    transform: scale(1.08) rotate(3deg);
}

.method-icon i {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.method-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-strong);
    letter-spacing: -0.01em;
}

.method-description {
    display: grid;
    gap: 1.25rem;
}

.method-description p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--color-text-muted);
}

.method-read-more,
.is_hidden {
    display: none;
}

.method-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.method-tags span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background-color: var(--color-surface-tint);
    color: var(--color-secondary);
    border: 1px solid rgba(28, 79, 178, 0.12);
    font-weight: 700;
}

.method-visual {
    display: flex;
    overflow: hidden;
    min-height: 210px;
    border: 1px solid rgba(12, 31, 61, 0.08);
    border-radius: 20px;
    background: var(--color-surface-tint);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.method-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.method-card:hover .method-visual img {
    transform: scale(1.03);
}

.faq-section {
    padding: var(--section-space) 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(28, 79, 178, 0.05), transparent 26%),
        radial-gradient(circle at 100% 100%, rgba(199, 144, 47, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.faq-shell {
    max-width: 920px;
    margin: 0 auto;
}

.faq-intro {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.faq-intro h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-primary-strong);
    letter-spacing: -0.02em;
}

.faq-intro p {
    margin: 0 auto;
    max-width: 680px;
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.faq-list {
    display: grid;
    gap: 1.25rem;
}

.faq-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 10px 30px rgba(12, 31, 61, 0.04);
    transition:
        transform 500ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 500ms cubic-bezier(0.25, 1, 0.5, 1),
        border-color 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.faq-item:hover,
.faq-item.is-open {
    transform: translateY(-2px);
    border-color: rgba(28, 79, 178, 0.25);
    box-shadow: 0 24px 60px rgba(12, 31, 61, 0.08);
}

.faq-item.is-open::before {
    opacity: 1;
}

.faq-question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    padding: 1.75rem 2rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--color-primary-strong);
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 800;
}

.faq-indicator {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--color-surface-tint);
    color: var(--color-secondary);
    transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1), background-color 400ms ease, color 400ms ease;
}

.faq-indicator::before,
.faq-indicator::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background-color: currentColor;
    transition: opacity 400ms ease, transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-indicator::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-indicator {
    color: var(--color-white);
    background: var(--color-primary);
}

.faq-item.is-open .faq-indicator::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 600ms cubic-bezier(0.25, 1, 0.5, 1), opacity 500ms ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 5rem 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.dual-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
}

.dual-cta>div {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 480px;
}

.cta-left {
    color: var(--color-white);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #0c1f3d 0%, #1a4da3 100%);
}

.cta-right {
    color: var(--color-white);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #a37624 0%, #d49c35 100%);
}

.dual-cta h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.25rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dual-cta p {
    margin: 0 0 1.75rem;
    max-width: 480px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 1rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cta-points {
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.6rem;
    width: 100%;
}

.cta-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    max-width: 460px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.93rem;
    line-height: 1.68;
}

.cta-points i {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    flex: 0 0 18px;
}

.cta-note {
    margin-top: auto;
    padding-top: 1rem;
    margin-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.dual-cta .btn-white {
    min-width: 210px;
    align-self: flex-start;
}

.modal-root[hidden] {
    display: none;
}

.modal-root {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 21, 43, 0.36);
    backdrop-filter: blur(0);
    opacity: 0;
    transition:
        opacity var(--transition-base),
        backdrop-filter var(--transition-base);
}

.modal-stack {
    position: relative;
    width: min(100%, 1120px);
    display: grid;
    place-items: center;
}

.modal-panel {
    position: relative;
    width: min(100%, 760px);
    max-height: min(92vh, 860px);
    overflow: auto;
    padding: 1.75rem;
    border: 1px solid rgba(12, 31, 61, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 32px 120px rgba(8, 21, 43, 0.26);
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition:
        opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    overscroll-behavior: contain;
}

.modal-panel.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-panel-employer {
    background:
        linear-gradient(180deg, rgba(244, 248, 255, 0.98), rgba(255, 255, 255, 0.98));
}

.modal-panel-jobseeker {
    background:
        linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(255, 255, 255, 0.98));
}

.modal-root.is-active .modal-backdrop {
    opacity: 1;
    backdrop-filter: blur(12px);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(12, 31, 61, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary-strong);
    cursor: pointer;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast);
}

.modal-close:hover {
    transform: translateY(-1px);
    border-color: rgba(28, 79, 178, 0.18);
}

.modal-close i {
    width: 18px;
    height: 18px;
}

.modal-header {
    max-width: 620px;
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.modal-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.modal-panel-employer .modal-kicker {
    background: rgba(28, 79, 178, 0.1);
    color: var(--color-secondary);
}

.modal-panel-jobseeker .modal-kicker {
    background: rgba(199, 144, 47, 0.14);
    color: #8f6525;
}

.modal-header h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.14;
    font-weight: 700;
    color: var(--color-primary-strong);
}

.modal-header p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--color-text-muted);
}

.modal-form {
    display: grid;
    gap: 1.3rem;
}

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

.form-field {
    display: grid;
    gap: 0.55rem;
}

.form-field>span {
    font-size: 0.86rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--color-primary-strong);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(12, 31, 61, 0.12);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.94);
    color: var(--color-primary-strong);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
}

.form-field textarea {
    min-height: 132px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8a94a3;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(28, 79, 178, 0.42);
    box-shadow: 0 0 0 4px rgba(28, 79, 178, 0.12);
    background-color: #ffffff;
}

.form-field small {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field-upload {
    position: relative;
}

.form-field-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.upload-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 58px;
    padding: 1rem 1rem 1rem 1.05rem;
    border: 1px dashed rgba(12, 31, 61, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition:
        border-color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        background-color 400ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 400ms cubic-bezier(0.25, 1, 0.5, 1),
        transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.upload-field:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 79, 178, 0.35);
    box-shadow: 0 10px 20px rgba(12, 31, 61, 0.05);
}

.upload-field-main {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary-strong);
    font-size: 0.92rem;
    line-height: 1.5;
    font-weight: 600;
}

.upload-field-main i {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
}

.upload-field-meta {
    color: var(--color-text-muted);
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.form-footer {
    display: grid;
    gap: 0.8rem;
}

.form-note,
.form-status {
    margin: 0;
}

.form-note {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.form-status {
    min-height: 1.2rem;
    font-size: 0.84rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-secondary);
}

.modal-panel.is-active .form-field {
    animation: modalFieldIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-panel.is-active .form-field:nth-child(1) {
    animation-delay: 40ms;
}

.modal-panel.is-active .form-field:nth-child(2) {
    animation-delay: 80ms;
}

.modal-panel.is-active .form-field:nth-child(3) {
    animation-delay: 120ms;
}

.modal-panel.is-active .form-field:nth-child(4) {
    animation-delay: 160ms;
}

.modal-panel.is-active .form-field:nth-child(5) {
    animation-delay: 200ms;
}

.modal-panel.is-active .form-field:nth-child(6) {
    animation-delay: 240ms;
}

.modal-panel.is-active .form-field:nth-child(7) {
    animation-delay: 280ms;
}

.modal-panel.is-active .form-field:nth-child(8) {
    animation-delay: 320ms;
}

.modal-panel.is-active .form-field:nth-child(9) {
    animation-delay: 360ms;
}

@keyframes modalFieldIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    padding-top: 4.5rem;
    background: linear-gradient(180deg, #071126 0%, #040d1a 100%);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr 1fr;
    gap: 2.25rem;
    margin-bottom: 3.4rem;
}

.footer-brand img {
    width: auto;
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 280px;
    margin: 0 0 1.5rem;
    font-size: 0.94rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.68);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast);
}

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

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.footer-links nav,
.footer-services nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-services a,
.footer-contact p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    padding: 1.2rem 0 1.4rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
}

.js-motion .reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(10px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.js-motion .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (max-width: 1120px) {

    .hero-container,
    .why-us-container {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .why-content {
        max-width: 100%;
    }

    .hero-image,
    .why-image {
        min-height: 460px;
    }

    .hero-image {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
        min-height: 660px;
        justify-content: center;
    }

    .hero-photo-frame {
        width: min(79%, 566px);
        height: min(79%, 566px);
    }

    .trusted-copy {
        text-align: center;
    }

    .hero-logos {
        justify-content: center;
    }

    .hero-svg-primary {
        width: min(62%, 442px);
    }

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

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

    .method-card {
        grid-template-columns: 1fr;
    }

    .method-visual {
        min-height: 240px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 76px;
    }

    .navbar {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        min-height: 72px;
    }

    .nav-links {
        display: none;
    }

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

    .hero-image {
        min-height: 590px;
    }

    .hero-svg-primary {
        width: min(60%, 392px);
    }

    .hero-svg-secondary {
        width: min(40%, 238px);
        right: 0;
    }

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

    .dual-cta {
        grid-template-columns: 1fr;
    }

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

    .footer-contact {
        grid-column: auto;
    }
}

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

    .section-header,
    .methodology .section-header {
        margin-bottom: 2.8rem;
    }

    .hero {
        padding: 3.4rem 0 4.2rem;
    }

    .hero-content h1 {
        font-size: clamp(2.35rem, 10vw, 3.15rem);
    }

    .hero-content p,
    .section-header p,
    .faq-intro p,
    .why-sub,
    .dual-cta p {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .hero-buttons .btn,
    .nav-btn {
        min-width: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .stat {
        min-height: 78px;
    }

    .hero-image,
    .why-image {
        min-height: 380px;
        border-radius: 24px;
    }

    .hero-image {
        min-height: 450px;
    }

    .hero-svg {
        border-radius: 24px;
    }

    .hero-svg-primary {
        top: 0;
        width: 66%;
        padding: 0.85rem;
    }

    .hero-svg-secondary {
        top: 10px;
        width: 43%;
        padding: 0.65rem;
    }

    .hero-photo-frame {
        width: 100%;
        max-width: 380px;
        height: auto;
        border-radius: 24px;
    }

    .method-description p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .method-description p.is-expanded {
        -webkit-line-clamp: unset;
    }

    .method-read-more {
        display: inline-block;
        background: none;
        border: none;
        color: var(--color-secondary);
        font-size: 0.9rem;
        font-weight: 700;
        padding: 0;
        margin-top: -0.5rem;
        cursor: pointer;
        text-align: left;
    }

    .services,
    .industries,
    .why-us,
    .methodology,
    .faq-section {
        padding: 4.5rem 0;
    }

    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .industry-card,
    .benefits-list li,
    .method-card,
    .faq-item {
        border-radius: 18px;
    }

    .service-card {
        min-height: 0;
    }

    .why-content h2,
    .faq-intro h2,
    .dual-cta h2 {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }

    .methodology-flow::before {
        left: 20px;
    }

    .methodology-step {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 1.25rem;
    }

    .timeline-node {
        padding-top: 1.25rem;
    }

    .timeline-node span {
        width: 42px;
        height: 42px;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .method-card {
        padding: 1.25rem;
    }

    .method-header {
        align-items: flex-start;
    }

    .method-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .method-icon i {
        width: 22px;
        height: 22px;
    }

    .method-visual {
        min-height: 200px;
    }

    .faq-question {
        grid-template-columns: minmax(0, 1fr) 40px;
        gap: 0.9rem;
        padding: 1.15rem 1.15rem;
        font-size: 0.96rem;
    }

    .faq-indicator {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .faq-answer p {
        padding: 0 1.15rem 1.2rem;
        font-size: 0.92rem;
    }

    .dual-cta>div {
        min-height: 280px;
    }

    .cta-note {
        margin-top: 0.4rem;
        padding-top: 0;
    }

    .modal-root {
        padding: 1rem;
    }

    .modal-panel {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .modal-header {
        padding-right: 2.75rem;
    }

    .modal-header h2 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .upload-field {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-footer .btn {
        width: 100%;
    }

    .site-footer {
        padding-top: 3.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 560px) {
    .navbar {
        grid-template-columns: auto 1fr;
    }

    .nav-actions {
        gap: 0.6rem;
    }

    .nav-btn-outline {
        display: none;
    }

    .brand img {
        height: 34px;
    }

    .hero-badge,
    .why-eyebrow,
    .faq-eyebrow {
        font-size: 0.72rem;
    }

    .hero-logos {
        gap: 0.9rem 1.35rem;
    }

    .hero-image {
        min-height: 408px;
    }

    .hero-svg-primary {
        width: 68%;
    }

    .hero-svg-secondary {
        width: 44%;
    }

    .hero-photo-frame {
        width: 96%;
        height: auto;
    }

    .brand-logo {
        height: 26px;
    }

    .service-card,
    .industry-card,
    .benefits-list li {
        padding: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .js-motion .reveal-on-scroll {
        opacity: 1;
        transform: none;
        filter: none;
    }

    body.modal-open .page-shell {
        filter: none;
        transform: none;
    }

    .modal-backdrop,
    .modal-panel,
    .modal-panel.is-active .form-field {
        transition: none !important;
        animation: none !important;
    }
}