:root {
    --brand-blue: #1d60df;
    --brand-blue-dark: #0f4fbf;
    --ink-900: #0d1b33;
    --ink-800: #11203d;
    --text-main: #445472;
    --text-soft: #64748b;
    --white: #ffffff;
    --line: #dde5f3;
    --bg-muted: #f4f7fc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--ink-800);
    background: #f6f8fc;
    line-height: 1.6;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding-top: 0;
    transition: padding-top 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-wrapper.scrolled {
    padding-top: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    padding: 20px 48px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.6s ease-in-out;
}

.nav-wrapper.scrolled .navbar {
    width: 85%;
    max-width: 960px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 14px 40px -10px rgba(0, 86, 210, 0.08),
                0 4px 12px -4px rgba(0, 0, 0, 0.04);
}

.nav-wrapper.scrolled .logo {
    width: 125px;
    height: 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 46px;
    background: var(--white);
    border-radius: 50px;
    border: 1px solid #bfdbfe;
    box-shadow: 0 2px 10px rgba(0, 86, 210, 0.05);
    transition: transform 0.3s ease, width 0.6s ease-in-out, height 0.6s ease-in-out;
    text-decoration: none;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(2.5);
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: gap 0.6s ease-in-out;
}

.nav-wrapper.scrolled .nav-links {
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--brand-blue);
    background: #eff6ff;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #0056d2;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(0, 86, 210, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #0043a8;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 86, 210, 0.3);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #d8e5ff;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 17px;
    height: 2px;
    background: #20416f;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-nav {
    display: none;
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    width: min(94%, 580px);
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.mobile-nav-inner {
    border-radius: 18px;
    border: 1px solid rgba(208, 222, 250, 0.95);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 36px -28px rgba(15, 41, 84, 0.45);
    padding: 12px;
    display: grid;
    gap: 6px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #334b72;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-nav-link:hover {
    background: #edf4ff;
    color: #0f57d8;
}

.mobile-nav-cta {
    margin-top: 6px;
    text-decoration: none;
    text-align: center;
    padding: 11px 14px;
    border-radius: 999px;
    background: #0056d2;
    color: #ffffff;
    font-weight: 600;
}

.mobile-nav-cta:hover {
    background: #0043a8;
}

body.menu-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-blue);
    color: var(--white);
    padding: 11px 22px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 10px 22px -14px rgba(15, 79, 191, 0.95);
}

.cta:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 90px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

.hero-inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid #d4dff4;
    background: rgba(255, 255, 255, 0.78);
    color: #2b3f62;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 18px;
    margin-bottom: 22px;
}

.hero-badge .accent {
    color: var(--brand-blue);
}

.hero h1 {
    font-size: clamp(2.3rem, 7vw, 5.5rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero h2 {
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 18px;
    color: #1f3558;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: var(--text-main);
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: #20416f;
    border: 1px solid #cfdbf5;
    box-shadow: none;
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
}

.hero-buttons .hero-cta-primary {
    background: #1f63e1;
    box-shadow: 0 12px 22px -14px rgba(20, 76, 177, 0.85);
}

.hero-buttons .hero-cta-outline {
    background: rgba(255, 255, 255, 0.82);
    color: #1d3966;
    border: 1px solid #c8d8f6;
    box-shadow: none;
}

.hero-buttons .hero-cta-outline:hover {
    background: #ffffff;
}

.section {
    padding: 100px 24px;
}

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

.section-dark-shell {
    background: radial-gradient(circle at 15% 10%, #1e4aa0 0%, #102548 35%, #0d1a32 100%);
    color: #e9f1ff;
}

.section-soft {
    background: #f3f6fc;
}

.section-process {
    background: #ffffff;
}

.section-about {
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.section-faq {
    background: #f7faff;
    padding-top: 44px;
    padding-bottom: 86px;
}

.section-faq .section-header h2 {
    color: #10233f;
}

.section-faq .section-subtext {
    color: #566f90;
}

.section-header {
    margin-bottom: 38px;
    max-width: 780px;
}

.section-kicker {
    color: #7aa7ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.15;
    color: #ffffff;
}

.section-process .section-header h2,
.section-about .section-header h2,
.section-soft .section-header h2 {
    color: #0e1d38;
}

.section-subtext {
    margin-top: 12px;
    color: #93a8cc;
    font-size: 1.02rem;
}

.section-soft .section-subtext,
.section-process .section-subtext,
.section-about .section-subtext {
    color: #536888;
}

.section-why {
    background: #ffffff;
    padding-top: 74px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(153, 184, 239, 0.3);
    border-radius: 20px;
    padding: 26px;
    min-height: 190px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 204, 250, 0.6);
    box-shadow: 0 24px 38px -30px rgba(0, 0, 0, 0.7);
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(116, 160, 246, 0.22) 0%, rgba(116, 160, 246, 0.08) 100%);
    border: 1px solid rgba(152, 189, 248, 0.46);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: #bdd5ff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    color: #ffffff;
}

.service-card p {
    color: #bfd1ee;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.why-card {
    border: 1px solid #d9e4f8;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 24px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: #bdd2f8;
    box-shadow: 0 22px 38px -30px rgba(23, 45, 83, 0.45);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: #eef5ff;
    border: 1px solid #d3e4ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.why-icon svg {
    width: 21px;
    height: 21px;
    stroke: #175ad9;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-size: 1.1rem;
    color: #10233f;
    margin-bottom: 10px;
}

.why-card p {
    color: #5d728f;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.work-card {
    background: #ffffff;
    border: 1px solid #dbe4f4;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.work-card:hover {
    transform: translateY(-6px);
    border-color: #bdd2f8;
    box-shadow: 0 24px 40px -28px rgba(30, 52, 89, 0.45);
}

.work-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 1px solid #e1e8f6;
}

.work-content {
    padding: 22px;
}

.work-content h3 {
    font-size: 1.16rem;
    margin-bottom: 8px;
    color: #0f1f3a;
}

.work-content p {
    color: #516785;
    margin-bottom: 18px;
}

.work-link {
    display: inline-flex;
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf4ff;
}

.work-link:hover {
    color: var(--brand-blue-dark);
    background: #dfeeff;
}

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

.process-step {
    border: 1px solid #d8e2f2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 24px;
}

.process-step span {
    display: inline-block;
    margin-bottom: 12px;
    color: #0f57d8;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
}

.process-step h3 {
    color: #10233f;
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.process-step p {
    color: #5d728f;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 26px;
    align-items: start;
}

.about-content h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: #0f213d;
}

.about-content p {
    color: #526986;
}

.about-content p + p {
    margin-top: 12px;
}

.about-panel {
    background: linear-gradient(180deg, #0f2244 0%, #132c57 100%);
    border: 1px solid rgba(126, 164, 228, 0.35);
    border-radius: 20px;
    padding: 26px;
}

.about-panel h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
    color: #ffffff;
}

.about-panel ul {
    list-style: none;
}

.about-panel li {
    color: #c7d9f6;
    padding-left: 18px;
    position: relative;
}

.about-panel li + li {
    margin-top: 10px;
}

.about-panel li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: #71a3ff;
    position: absolute;
    left: 0;
    top: 9px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid #d7e4fa;
    border-radius: 16px;
    background: #ffffff;
    padding: 4px 16px;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: #bfd5f8;
    box-shadow: 0 10px 20px -18px rgba(25, 52, 96, 0.35);
}

.faq-item[open] {
    background: #fbfdff;
    border-color: #c5d9fb;
    box-shadow: 0 14px 24px -20px rgba(25, 52, 96, 0.4);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: #142a4c;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    color: #566f90;
    padding: 0 0 14px;
    margin: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.32s ease;
}

.faq-answer > p {
    overflow: hidden;
}

.faq-marker {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid #c8dbfb;
    background: #f3f8ff;
    position: relative;
    flex-shrink: 0;
}

.faq-marker::before,
.faq-marker::after {
    content: "";
    position: absolute;
    background: #3f69a9;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-marker::before {
    width: 10px;
    height: 2px;
}

.faq-marker::after {
    width: 2px;
    height: 10px;
}

.faq-item[open] .faq-marker::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.2);
}

.faq-item[open] .faq-answer {
    height: auto;
}

.section-cta {
    background: #edf3ff;
    padding-top: 44px;
}

.cta-banner {
    background: linear-gradient(135deg, #0056d2 0%, #1d60df 50%, #3e8cff 100%);
    border: 1px solid rgba(207, 225, 255, 0.45);
    border-radius: 30px;
    padding: 56px 48px 48px;
    display: grid;
    justify-items: center;
    gap: 18px;
    box-shadow: 0 26px 46px -34px rgba(0, 56, 145, 0.55);
}

.cta-banner h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    line-height: 1.18;
    max-width: 860px;
    text-align: center;
}

.cta-connect {
    background: #ffffff;
    color: #0f3f9e;
    border: 1px solid #dbe8ff;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    box-shadow: 0 12px 24px -18px rgba(0, 37, 103, 0.7);
}

.cta-connect:hover {
    background: #f5f9ff;
    transform: translateY(-1px);
    color: #0d3790;
}

.cta-support {
    color: #deebff;
    text-align: center;
    max-width: 860px;
    font-size: 1.04rem;
    line-height: 1.7;
}

.site-footer {
    background: #0b1428;
    color: #c6d5ee;
    padding: 80px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-col p {
    color: #9eb3d4;
}

.footer-logo {
    width: 152px;
    height: auto;
    margin-bottom: 12px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a {
    color: #b6c8e7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-email {
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #b6c8e7;
    text-decoration: none;
}

.contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(138, 171, 221, 0.2);
    border: 1px solid rgba(138, 171, 221, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 15px;
    height: 15px;
    stroke: #cde0ff;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom {
    max-width: 1200px;
    margin: 28px auto 0;
    padding-top: 14px;
    border-top: 1px solid rgba(130, 155, 194, 0.25);
    color: #8da6cc;
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

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

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

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

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

    .navbar {
        width: 100%;
        padding: 16px 24px;
    }

    .logo {
        width: 132px;
        height: 42px;
    }

    .nav-cta {
        display: none;
    }

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

    .mobile-nav {
        display: block;
    }

    .nav-wrapper.scrolled .navbar {
        width: 100%;
        max-width: none;
        padding: 12px 24px;
        justify-content: space-between;
    }

    .hero {
        min-height: auto;
        padding-top: 140px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.3rem);
    }

    .hero p {
        font-size: 1.02rem;
        max-width: 640px;
    }

    .section-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 700px) {
    .nav-wrapper {
        padding-top: 0;
    }

    .nav-wrapper.scrolled {
        padding-top: 0;
    }

    .navbar {
        width: 100%;
        padding: 12px 20px;
    }

    .logo {
        width: 116px;
        height: 38px;
    }

    .cta {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 120px 16px 72px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .section {
        padding: 76px 16px;
    }

    .services-grid,
    .work-grid,
    .process-grid,
    .footer-container,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 12px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .work-card img {
        height: 190px;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-icon {
        margin-top: 2px;
    }

    .faq-item {
        padding-left: 14px;
        padding-right: 14px;
    }

    .faq-item summary {
        font-size: 0.95rem;
    }

    .faq-marker {
        width: 20px;
        height: 20px;
    }

    .about-panel {
        padding: 22px;
    }

    .footer-logo {
        width: 138px;
    }

    .cta-banner {
        padding: 34px 20px 24px;
        border-radius: 24px;
        gap: 18px;
    }

    .cta-banner h2 {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .cta-support {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .hero p {
        font-size: 0.95rem;
    }

    .work-content,
    .service-card,
    .why-card,
    .process-step {
        padding: 18px;
    }

    .contact-item {
        gap: 8px;
        font-size: 0.92rem;
    }
}

/* ===== Redesigned sections (post-hero only) ===== */
.services-prime {
    background: #f6f7fb;
    padding-top: 80px;
    padding-bottom: 80px;
}

.services-prime-head {
    margin-bottom: 30px;
}

.services-prime-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
}

.services-prime-title-wrap {
    max-width: 760px;
}

.services-prime-title-wrap h2 {
    color: #111827;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.services-prime-title-wrap h2 span,
.story-copy h2 span,
.growth-head-copy h2 span,
.hero h1 .highlight {
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-prime-title-wrap p {
    color: #64748b;
    font-size: 1.07rem;
    line-height: 1.6;
}

.services-prime-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-width: 220px;
    padding: 14px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #3f76ef 100%);
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

.services-prime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-prime-col {
    display: grid;
    gap: 20px;
}

.services-prime-card,
.services-prime-featured {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-prime-card:hover,
.services-prime-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.services-prime-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #d5e3ff;
    background: #f7faff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.services-prime-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #2563eb;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-prime-card h3,
.services-prime-featured h3 {
    color: #111827;
    font-size: 1.95rem;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    margin-bottom: 10px;
}

.services-prime-card p,
.services-prime-featured p {
    color: #6b7280;
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.services-prime-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.02rem;
}

.services-prime-featured {
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(12, 23, 39, 0.35) 0%, rgba(9, 20, 36, 0.75) 100%),
        url("assets/images/hero_bg.png") center/cover no-repeat;
    min-height: 100%;
}

.services-prime-featured-overlay {
    height: 100%;
    padding: 28px;
    display: grid;
    gap: 22px;
    align-content: space-between;
}

.services-prime-featured-item h3,
.services-prime-featured-item p,
.services-prime-featured .services-prime-link {
    color: #f8fbff;
}

.services-prime-featured .services-prime-icon {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.38);
}

.services-prime-featured .services-prime-icon svg {
    stroke: #f2f7ff;
}

.story-section {
    padding-top: 88px;
    padding-bottom: 64px;
    background: #FEFEFE;
}

.story-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.story-copy h2 {
    font-size: clamp(2rem, 4.6vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #161f31;
    margin-bottom: 14px;
}

.story-copy > p:not(.minimal-eyebrow) {
    color: #5a657a;
    max-width: 560px;
    margin-bottom: 24px;
}

.story-copy .minimal-eyebrow {
    margin-left: 0;
    margin-right: 0;
}

.minimal-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.minimal-tags span {
    border: 1px solid #d4e2fb;
    background: #f5f9ff;
    color: #45648f;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 10px;
}

.story-right img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    display: block;
}

.growth-section {
    background: #f5f8fd;
}

.growth-inner {
    display: grid;
    gap: 30px;
}

.growth-header {
    width: 100%;
    margin: 0 0 16px 0;
    text-align: left;
}

.growth-header > .minimal-eyebrow {
    display: inline-flex;
    margin: 0 0 16px 0;
}

.minimal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid #e4e8ef;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 251, 0.98) 100%);
    color: #4f607f;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    box-shadow: 0 8px 18px -14px rgba(18, 32, 58, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.label-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #e4e8ef;
    background: #fbfcff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.label-icon svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #5d79b1;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.label-text {
    line-height: 1;
    white-space: nowrap;
}

.growth-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.growth-head-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.growth-head-copy p {
    max-width: 560px;
    font-size: 1.02rem;
    color: #64748b;
}

.growth-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-width: 140px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease;
}

.growth-cta:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.growth-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 22px;
}

.growth-card {
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.growth-link-card {
    text-decoration: none;
    display: block;
    position: relative;
}

.growth-link-card::after {
    content: "View Project \2192";
    position: absolute;
    right: 18px;
    bottom: 96px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.8);
    padding: 6px 10px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 3;
}

.growth-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.1);
}

.growth-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

.growth-card-overlay {
    display: none;
}

.growth-card-arrow {
    display: none;
}

.growth-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 20px;
}

.growth-card h3 {
    color: #1b263f;
    font-size: 1.12rem;
}

.growth-visit {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.growth-card:hover img {
    opacity: 0.98;
}

.growth-card:hover .growth-link-card::after {
    opacity: 1;
    transform: translateY(0);
}

.growth-card:nth-child(2) {
    margin-top: -8px;
    margin-bottom: -8px;
}

.growth-card:nth-child(2) img {
    height: 360px;
}

.choose-section {
    background: #f3f5f9;
    border-top: 1px solid #e4e9f3;
    border-bottom: 1px solid #e4e9f3;
}

.about-impact-head {
    max-width: 980px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-impact-head h2 {
    color: #111827;
    font-size: clamp(2.6rem, 5.8vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.about-impact-head p {
    margin: 18px auto 0;
    color: #6b7280;
    font-size: clamp(1.05rem, 1.45vw, 1.7rem);
    max-width: 900px;
    line-height: 1.55;
}

.about-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.about-impact-side {
    display: grid;
    gap: 24px;
}

.about-impact-card {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    padding: 30px;
}

.about-impact-number {
    color: #0f172a;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.about-impact-desc {
    color: #6b7280;
    font-size: clamp(15px, 1.3vw, 1.35rem);
    line-height: 1.55;
}

.about-impact-card-featured {
    position: relative;
    overflow: hidden;
    color: #f8fbff;
    background:
        radial-gradient(circle at 20% 10%, rgba(225, 236, 255, 0.3) 0%, rgba(225, 236, 255, 0) 50%),
        linear-gradient(160deg, #aebad2 0%, #7d92b6 45%, #4f678e 70%, #3c547d 100%);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-impact-card-featured h3 {
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    margin-bottom: 10px;
}

.about-impact-card-featured p {
    color: rgba(241, 246, 255, 0.97);
    font-size: 1.02rem;
    line-height: 1.6;
}

.about-impact-stars {
    margin-top: 20px;
    color: #ffffff;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    opacity: 0.95;
}

.mission-process {
    background: linear-gradient(180deg, #ffffff, #f3f6fb);
    padding: 120px 0;
    border-top: 1px solid #ebf0f9;
    border-bottom: 1px solid #ebf0f9;
}

.mission-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 56px;
    text-align: left;
}

.mission-head h2 {
    color: #18202f;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
    max-width: 840px;
}

.mission-head > p:not(.minimal-eyebrow) {
    color: #6b7280;
    font-size: 1.04rem;
    max-width: 620px;
}

.mission-head .minimal-eyebrow {
    background: #f7f9fc;
    border-color: #e5ebf5;
    color: #5c6880;
    box-shadow: none;
}

.process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.process-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 36px -30px rgba(15, 41, 84, 0.45);
}

.process-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.process-timeline {
    position: relative;
    padding-left: 24px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 10px;
    bottom: 10px;
    border-left: 2px dashed #2563EB;
}

.process-timeline-step {
    position: relative;
    padding-left: 34px;
}

.process-timeline-step + .process-timeline-step {
    margin-top: 40px;
}

.process-step-label {
    display: inline-block;
    color: #2563eb;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.process-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.process-step-icon {
    position: absolute;
    left: -18px;
    top: 26px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.process-step-head h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.process-timeline-step p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-refresh {
    background: #f3f6fb;
    padding-top: 72px;
    padding-bottom: 72px;
}

.faq-head {
    margin-bottom: 26px;
    text-align: left;
}

.faq-head p {
    margin-bottom: 0;
}

.faq-head h2 {
    margin-top: 0;
    color: #2f3440;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.faq-subline {
    margin-top: 10px;
    color: #656b78;
    font-size: 1.05rem;
}

.faq-refresh .faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-refresh .faq-item {
    border: 1px solid #e4e5e8;
    border-radius: 22px;
    background: #f7f7f8;
    padding: 0 16px;
    box-shadow: 0 14px 22px -22px rgba(20, 27, 45, 0.25);
}

.faq-refresh .faq-item summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    font-size: 1.04rem;
    color: #1f2531;
    font-weight: 500;
}

.faq-refresh .faq-item[open] {
    border-color: #dcdee3;
    background: #f4f4f5;
}

.faq-refresh .faq-marker {
    width: 34px;
    height: 34px;
    background: #f3f3f4;
    border: 1px solid #e2e3e7;
    box-shadow: 0 8px 14px -12px rgba(16, 23, 39, 0.35);
}

.faq-refresh .faq-marker::before,
.faq-refresh .faq-marker::after {
    background: #5f84d2;
}

.faq-refresh .faq-item p {
    color: #5c6370;
    font-size: 0.98rem;
    padding-top: 2px;
    padding-bottom: 18px;
}

.faq-refresh .faq-item summary > span:first-child {
    font-size: 1.04rem;
}

.faq-refresh .faq-item:not([open]) summary > span:first-child {
    font-size: 1.04rem;
}

@media (max-width: 900px) {
    .faq-head h2 {
        font-size: clamp(1.7rem, 8vw, 2.9rem);
    }

    .faq-subline {
        font-size: 0.96rem;
    }

    .faq-refresh .faq-item summary > span:first-child,
    .faq-refresh .faq-item:not([open]) summary > span:first-child {
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .faq-refresh .faq-list {
        max-width: 100%;
    }

    .faq-refresh .faq-item {
        border-radius: 18px;
    }

    .faq-refresh .faq-item summary {
        min-height: 68px;
    }

    .faq-refresh .faq-item summary > span:first-child,
    .faq-refresh .faq-item:not([open]) summary > span:first-child {
        font-size: 0.97rem;
    }
}

.contact-cinematic {
    background: #4e84e8;
    color: #f4f8ff;
    padding-top: 36px;
    padding-bottom: 28px;
}

.contact-overlay {
    position: relative;
}

.contact-overlay::before {
    content: "";
    position: absolute;
    inset: 10px 24px;
    border: 1px dashed rgba(222, 235, 255, 0.35);
    border-radius: 20px;
}

.contact-form-shell,
.contact-meta {
    position: relative;
    z-index: 1;
}

.contact-form-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: start;
    padding: 38px 12px 24px;
}

.contact-form-left h2 {
    font-size: clamp(2.1rem, 4.8vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 420px;
    margin-bottom: 14px;
}

.contact-form-left p {
    color: #e2ecff;
    max-width: 420px;
    margin-bottom: 20px;
}

.contact-form-left .minimal-eyebrow {
    margin-bottom: 20px;
    color: #2f4f90;
}

.contact-stars {
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.14em;
    color: #ffd54d;
}

.contact-form-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
}

.contact-form-panel label {
    display: grid;
    gap: 8px;
    color: #eef4ff;
}

.contact-form-panel label span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e6efff;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(228, 239, 255, 0.85);
    background: transparent;
    color: #ffffff;
    padding: 8px 2px 9px;
    font-size: 1rem;
    outline: none;
}

.contact-form-panel input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
    opacity: 0.8;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    border-bottom-color: #ffffff;
}

.contact-message {
    grid-column: 1 / -1;
}

.contact-form-panel textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-submit {
    grid-column: 1 / -1;
    justify-self: start;
    border: 1px solid rgba(227, 237, 255, 0.7);
    background: #dce5f5;
    color: #2c58a8;
    font-size: 2.1rem;
    border-radius: 999px;
    padding: 12px 26px;
    min-width: 220px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-form-feedback {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transition: color 0.2s ease, opacity 0.2s ease;
    color: rgba(255, 255, 255, 0.65);
}

.contact-form-feedback[data-state="success"] {
    color: #8df7c8;
    opacity: 1;
}

.contact-form-feedback[data-state="error"] {
    color: #ffb3a6;
    opacity: 1;
}

.contact-submit:hover {
    transform: translateY(-1px);
    background: #edf3ff;
}

.contact-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 12px 12px 36px;
}

.contact-brand p {
    color: #dbe7ff;
    max-width: 470px;
}

.contact-email {
    justify-self: end;
    align-self: center;
}

.contact-email p {
    color: #d5e2ff;
    margin-bottom: 8px;
}

.contact-email a {
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
}

.footer-revamp {
    position: relative;
    background: #f6f7fb;
    padding-top: 56px;
    overflow: hidden;
}

.footer-grid-revamp {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.4fr;
    gap: 52px;
    padding: 24px 0 28px;
    position: relative;
    z-index: 1;
}

.footer-watermark {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    font-size: clamp(6rem, 18vw, 20rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: rgba(135, 150, 204, 0.08);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

.footer-brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 26px;
    line-height: 0;
}

.footer-brand-mark .footer-logo {
    width: auto;
    height: 52px;
    display: block;
    margin-bottom: 0;
}

.footer-contact-block + .footer-contact-block {
    margin-top: 34px;
}

.footer-contact-block h5 {
    color: #545f7a;
    font-size: 2rem;
    font-size: clamp(1.1rem, 1.8vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-contact-block p {
    color: #2f3b57;
    font-size: clamp(1rem, 1.45vw, 2rem);
    line-height: 1.4;
    margin: 0;
}

.footer-contact-block a {
    color: #2f3b57;
    font-size: clamp(1rem, 1.45vw, 2rem);
    line-height: 1.4;
    text-decoration: none;
}

.footer-revamp h4 {
    color: #4a62ff;
    font-size: clamp(1.06rem, 1.3vw, 1.45rem);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-subhead {
    margin-top: 26px;
}

.footer-stack {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #2f3b57;
    text-decoration: none;
    font-size: clamp(1.05rem, 1.3vw, 1.95rem);
    line-height: 1.35;
}

.footer-news-col h4 {
    color: #252f4d;
    font-size: clamp(1.9rem, 2.4vw, 3rem);
    margin-bottom: 8px;
}

.footer-news-col p {
    color: #6a748f;
    margin-bottom: 20px;
    font-size: clamp(1.05rem, 1.2vw, 1.55rem);
    line-height: 1.4;
}

.footer-news-form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    background: #e8ecf8;
    border: 1px solid #e2e8f5;
    border-radius: 999px;
    padding: 6px;
    max-width: 650px;
}

.footer-news-form input {
    border: 0;
    background: transparent;
    outline: none;
    color: #3e4f73;
    font-size: clamp(1rem, 1.15vw, 1.35rem);
    padding: 0 20px;
}

.footer-news-form input::placeholder {
    color: #5e6f95;
}

.footer-news-form button {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(140deg, #3059f5 0%, #5a7aff 100%);
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.footer-revamp .footer-bottom {
    border-top: 1px solid #dde3f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.footer-revamp .footer-bottom p {
    color: #5b6e8f;
    font-size: 0.96rem;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    color: #506483;
    text-decoration: none;
    font-size: 0.96rem;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover,
.footer-contact-block a:hover,
.footer-bottom-links a:hover {
    color: #395dff;
}

@media (max-width: 1100px) {
    .story-shell,
    .mission-head,
    .contact-form-shell,
    .contact-meta {
        grid-template-columns: 1fr;
    }

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

    .services-prime-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-prime-featured {
        grid-column: 1 / -1;
        min-height: 480px;
    }

    .growth-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .growth-card:nth-child(2) {
        margin-top: 0;
        margin-bottom: 0;
    }

    .growth-card:nth-child(2) img {
        height: 320px;
    }

    .process-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .about-impact-card-featured {
        grid-column: 1 / -1;
        min-height: 340px;
    }

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

    .contact-email {
        justify-self: start;
    }

    .contact-form-panel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .growth-grid,
    .services-prime-grid {
        grid-template-columns: 1fr;
    }

    .services-prime-featured {
        grid-column: auto;
        min-height: 420px;
    }

    .services-prime-card,
    .services-prime-featured-overlay {
        padding: 22px;
    }

    .services-prime-title-wrap p {
        font-size: 0.98rem;
    }

    .mission-process {
        padding: 90px 0;
    }

    .mission-head h2 {
        font-size: clamp(1.8rem, 7.4vw, 2.5rem);
    }

    .mission-head > p:not(.minimal-eyebrow) {
        font-size: 0.95rem;
    }

    .process-timeline {
        padding-left: 18px;
    }

    .process-timeline::before {
        left: 14px;
    }

    .process-timeline-step {
        padding-left: 28px;
    }

    .process-step-icon {
        left: -14px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .process-step-head h3 {
        font-size: 1.12rem;
    }

    .process-timeline-step p {
        font-size: 0.95rem;
    }

    .story-visual {
        min-height: 350px;
    }

    .story-rating {
        position: static;
        margin: 16px;
        width: max-content;
    }

    .story-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .about-impact-grid {
        grid-template-columns: 1fr;
    }

    .about-impact-side {
        gap: 14px;
    }

    .about-impact-card {
        padding: 22px;
    }

    .about-impact-number {
        font-size: 40px;
    }

    .about-impact-head h2 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .contact-form-shell {
        gap: 24px;
        padding: 24px 8px 18px;
    }

    .contact-form-panel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-submit {
        font-size: 1.6rem;
        min-width: 170px;
        padding: 10px 18px;
    }

    .footer-revamp .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid-revamp {
        grid-template-columns: 1fr;
        padding-top: 16px;
    }

    .footer-revamp h4,
    .footer-contact-block h5,
    .footer-contact-block p,
    .footer-contact-block a,
    .footer-links a {
        font-size: 1.2rem;
    }

    .footer-news-form button {
        width: 48px;
        height: 42px;
        font-size: 1.4rem;
    }

    .growth-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

.policy-hero,
.terms-hero {
    padding: 110px 0 50px;
    background: linear-gradient(135deg, #040c22 0%, #0d3a8a 55%, #04785b 100%);
    color: #f8fbff;
    border-radius: 42px;
    box-shadow: 0 30px 80px rgba(6, 11, 31, 0.45);
    margin-bottom: 40px;
}

.policy-hero__lead {
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
}

.policy-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.policy-card {
    background: #fff;
    border-radius: 26px;
    padding: 26px 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-card__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0d3a8a;
}

.policy-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0f172a;
    line-height: 1.4;
}

.policy-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.policy-card__muted {
    color: #0d3a8a;
    font-size: 0.95rem;
}

.policy-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #475569;
}

.policy-list li {
    line-height: 1.55;
    margin-bottom: 0.2rem;
}

.privacy-details,
.terms-details {
    padding: 60px 0 10px;
    background: #f8fbff;
}

.terms-details {
    padding-top: 40px;
}

.privacy-details .container,
.terms-details .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.privacy-details article h2,
.terms-details article h2 {
    font-size: clamp(1.6rem, 4vw, 1.95rem);
    margin-bottom: 12px;
    color: #0f172a;
}

.privacy-details article p,
.privacy-details article ul,
.terms-details article p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.privacy-contact {
    padding: 60px 0 80px;
    background: #0f172a;
}

.privacy-contact__panel {
    background: linear-gradient(120deg, rgba(34, 197, 94, 0.12), rgba(59, 130, 246, 0.2));
    border-radius: 32px;
    padding: 48px;
    color: #f4f6ff;
    display: grid;
    gap: 16px;
}

.privacy-contact__panel h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.privacy-contact__panel p {
    margin: 0;
    max-width: 640px;
    line-height: 1.6;
    color: rgba(244, 246, 255, 0.9);
}

.privacy-contact__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.privacy-contact__actions .cta {
    border-radius: 999px;
}

@media (max-width: 900px) {
    .policy-hero,
    .terms-hero {
        padding: 70px 0 40px;
    }

    .policy-card {
        padding: 20px;
    }
}
