:root {
    --red: #B62331;
    --red-dark: #981c29;
    --blue: #222F5B;
    --blue-dark: #131d3f;
    --white: #ffffff;
    --light: #f6f8fc;
    --light-2: #eef2f8;
    --text: #172033;
    --muted: #64708a;
    --border: rgba(34, 47, 91, 0.12);
    --shadow: 0 18px 45px rgba(34, 47, 91, 0.12);
    --shadow-lg: 0 28px 75px rgba(34, 47, 91, 0.16);
    --container: 1220px;
}

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

html {
    width: 100%;
    scroll-behavior: smooth;
}
 
body {
    width: 100%; 
    min-height: 100vh;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: clip;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

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

button {
    cursor: pointer;
}

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

.section {
    padding: 90px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 10px 2px 14px;
    /* background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(34, 47, 91, 0.08); */
}

.header-container {
    width: min(100% - 4px, 1218px);
    min-height: 74px;
    margin: 0 auto;
    padding: 0 12px 0 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(34, 47, 91, 0.12);
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(34, 47, 91, 0.11);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
}

.site-logo {
    width: 118px;
    max-height: 62px;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 999px;
    color: #2d3758;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.25s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--blue);
    background: rgba(34, 47, 91, 0.08);
}

.dropdown-arrow {
    font-size: 11px;
    transition: all 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.services-mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: 680px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: all 0.25s ease;
}

.services-mega-menu::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
}

.nav-dropdown:hover .services-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(34, 47, 91, 0.13);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
}

.mega-menu-card {
    min-height: 116px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.08);
    transition: all 0.25s ease;
}

.mega-menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(182, 35, 49, 0.28);
    box-shadow: 0 16px 35px rgba(34, 47, 91, 0.11);
}

.mega-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.mega-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.mega-content strong {
    color: var(--blue);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -0.035em;
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.mega-content small {
    color: #5f6b84;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.01em;
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.header-cta {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 14px;
    font-weight: 550;
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(182, 35, 49, 0.25);
    transition: all 0.25s ease;
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(182, 35, 49, 0.34);
}

.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: rgba(34, 47, 91, 0.08);
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(34, 47, 91, 0.13);
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: var(--blue);
    transition: all 0.25s ease;
}

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

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

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

.site-main {
    min-height: 70vh;
    overflow: hidden;
}

.btn {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(182, 35, 49, 0.26);
}

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

@media (max-width: 1060px) {
    .header-container {
        padding-left: 24px;
    }

    .header-cta {
        display: none;
    }

    .site-logo {
        width: 112px;
    }

    .nav-menu > li > a {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 920px) {
    .site-header {
        padding: 10px;
    }

    .header-container {
        min-height: 68px;
        padding: 0 12px 0 18px;
        border-radius: 24px;
    }

    .site-logo {
        width: 112px;
        max-height: 52px;
    }

 

    .main-navigation {
        position: fixed;
        top: 92px;
        left: 10px;
        right: 10px;
        display: none;
        padding: 14px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(34, 47, 91, 0.14);
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        z-index: 9998;
    }

    .main-navigation.show {
        display: block;
        animation: menuIn 0.22s ease forwards;
    }

    @keyframes menuIn {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

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

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .nav-menu > li > a {
        width: 100%;
        min-height: 52px;
        justify-content: space-between;
        padding: 0 16px;
        border-radius: 16px;
        background: rgba(34, 47, 91, 0.045);
        font-size: 15px;
    }

    .services-mega-menu {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        margin-top: 8px;
    }

    .services-mega-menu::before {
        display: none;
    }

    .nav-dropdown:hover .services-mega-menu {
        transform: none;
    }

    .nav-dropdown.open .services-mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 10px;
        border-radius: 18px;
        box-shadow: none;
        background: var(--light);
    }

    .mega-menu-card {
        min-height: auto;
        padding: 14px;
        border-radius: 16px;
    }

    .mega-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 14px;
    }

    .mega-content strong {
        font-size: 15.5px;
    }

     
}

@media (max-width: 520px) {
    .site-header {
        padding: 8px;
    }

    .header-container {
        min-height: 64px;
        border-radius: 20px;
        padding-left: 14px;
    }

    .site-logo {
        width: 104px;
        max-height: 46px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .main-navigation {
        top: 82px;
        left: 8px;
        right: 8px;
        border-radius: 20px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 72px 0;
    }
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 86px 0 28px;
    background:
        radial-gradient(circle at 15% 20%, rgba(182, 35, 49, 0.20), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(34, 47, 91, 0.28), transparent 34%),
        linear-gradient(135deg, #111a36 0%, #182347 42%, #222F5B 100%);
    color: #ffffff;
}

.footer-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    pointer-events: none;
}

.footer-glow-red {
    left: -120px;
    bottom: 40px;
    background: var(--red);
}

.footer-glow-blue {
    right: -110px;
    top: 40px;
    background: #ffffff;
    opacity: 0.12;
}

.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.85fr 1.1fr;
    gap: 34px;
    align-items: flex-start;
}

.footer-brand-col {
    max-width: 410px;
}

.footer-logo {
    width: 138px;
    min-height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.footer-logo img {
    width: 112px;
    max-height: 58px;
    object-fit: contain;
}

.footer-about {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15.5px;
    line-height: 1.78;
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-mini a,
.footer-contact-mini span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    line-height: 1.5;
}

.footer-contact-mini a {
    font-weight: 700;
    transition: all 0.25s ease;
}

.footer-contact-mini a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links-col h3,
.footer-cta-card h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links-col a {
    position: relative;
    display: inline-flex;
    width: fit-content;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.footer-links-col a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background: #ffffff;
    transition: all 0.25s ease;
}

.footer-links-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links-col a:hover::before {
    width: 100%;
}

.footer-cta-card {
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.footer-cta-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.22);
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-cta-card h3 {
    margin-bottom: 12px;
    font-size: 23px;
    line-height: 1.18;
}

.footer-cta-card p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14.5px;
    line-height: 1.65;
}

.footer-cta-btn {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 18px 38px rgba(182, 35, 49, 0.35);
    transition: all 0.25s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(182, 35, 49, 0.45);
}

.footer-middle {
    position: relative;
    z-index: 2;
    margin-top: 44px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-service-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-service-tags span {
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 650;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 650;
    transition: all 0.25s ease;
}

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

.footer-legal span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
}

@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        max-width: 100%;
    }

    .footer-cta-col {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .site-footer {
        padding: 66px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-cta-col {
        grid-column: span 1;
    }

    .footer-cta-card {
        padding: 24px;
        border-radius: 24px;
    }

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

    .footer-service-tags {
        gap: 8px;
    }

    .footer-service-tags span {
        font-size: 12.5px;
    }
}

/* =========================================================
   AZ Simple Solution - Complete Homepage CSS
========================================================= */

/* ---------- Homepage Shared Styles ---------- */

.eyebrow {
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.08);
    border: 1px solid rgba(182, 35, 49, 0.14);
    color: var(--red);
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(182, 35, 49, 0.26);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(182, 35, 49, 0.34);
}

.btn-secondary {
    background: #ffffff;
    color: var(--blue);
    border-color: rgba(34, 47, 91, 0.12);
    box-shadow: 0 14px 30px rgba(34, 47, 91, 0.08);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 47, 91, 0.22);
    box-shadow: 0 22px 44px rgba(34, 47, 91, 0.12);
}

.section-header {
    max-width: 790px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-header h2,
.section-content h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.section-header p,
.section-content p {
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.section-content .lead {
    margin-bottom: 16px;
    color: #4f5c75;
    font-size: 18px;
    line-height: 1.75;
}

.section-content .btn {
    margin-top: 28px;
}

/* =========================================================
   Premium Hero Section
========================================================= */

.az-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 8% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(34, 47, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.az-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.az-hero-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.az-hero-bg-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 110px;
    background: rgba(182, 35, 49, 0.16);
}

.az-hero-bg-blue {
    width: 460px;
    height: 460px;
    right: -170px;
    top: 30px;
    background: rgba(34, 47, 91, 0.17);
}

.az-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.az-hero-content {
    max-width: 650px;
}

.az-hero-badge {
    width: fit-content;
    margin-bottom: 24px;
    padding: 9px 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.12);
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 10px 30px rgba(34, 47, 91, 0.08);
}

.az-hero-badge span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(182, 35, 49, 0.12);
}

.az-hero h1 {
    margin-bottom: 24px;
    color: #101936;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.075em;
    font-weight: 900;
}

.az-hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--blue), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.az-hero-text {
    max-width: 620px;
    margin-bottom: 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.az-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.az-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 520px;
}

.az-hero-stats div {
    padding: 17px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.08);
}

.az-hero-stats strong {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.az-hero-stats span {
    display: block;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35;
}

.az-hero-visual {
    position: relative;
    min-height: 555px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.az-hero-panel {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    padding: 24px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.18);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.az-panel-header {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.az-panel-header div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.az-panel-header span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(34, 47, 91, 0.16);
}

.az-panel-header span:first-child {
    background: var(--red);
}

.az-panel-header strong {
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
}

.az-panel-intro {
    margin-bottom: 20px;
}

.az-panel-intro h3 {
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.az-panel-intro p {
    color: var(--muted);
    font-size: 14.5px;
}

.az-panel-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.az-panel-service {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.09);
    transition: all 0.25s ease;
}

.az-panel-service:hover,
.az-panel-service.active {
    transform: translateX(5px);
    border-color: rgba(182, 35, 49, 0.24);
    box-shadow: 0 16px 34px rgba(34, 47, 91, 0.10);
}

.az-panel-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}

.az-panel-service strong {
    display: block;
    margin-bottom: 3px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.az-panel-service small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.az-panel-footer {
    margin-top: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 40%),
        linear-gradient(135deg, #f8f9fd, #ffffff);
    border: 1px solid rgba(34, 47, 91, 0.10);
}

.az-panel-footer span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.az-panel-footer strong {
    display: block;
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.az-panel-footer a {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(182, 35, 49, 0.25);
    transition: all 0.25s ease;
}

.az-panel-footer a:hover {
    transform: translateY(-3px);
}

.az-floating-note {
    position: absolute;
    z-index: 3;
    padding: 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 22px 50px rgba(34, 47, 91, 0.14);
}

.az-floating-note span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.az-floating-note strong {
    display: block;
    color: var(--blue);
    font-size: 15px;
    font-weight: 900;
}

.az-note-one {
    top: 94px;
    right: 0;
}

.az-note-two {
    left: 0;
    bottom: 86px;
}

/* =========================================================
   Trust Bar
========================================================= */

.trust-section {
    position: relative;
    z-index: 5;
    margin-top: -34px;
}

.trust-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 24px 60px rgba(34, 47, 91, 0.12);
}

.trust-item {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.08);
}

.trust-item span {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
}

.trust-item strong {
    display: block;
    color: var(--blue);
    font-size: 15px;
    line-height: 1.35;
}

/* =========================================================
   About Preview
========================================================= */

.home-about {
    background: #ffffff;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 60px;
    align-items: center;
}

.about-visual-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(182, 35, 49, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f6f8fc);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 30px 80px rgba(34, 47, 91, 0.12);
}

.about-card-top {
    margin-bottom: 34px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.09);
}

.about-card-top > span {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: #ffffff;
    font-weight: 900;
}

.about-card-top strong {
    display: block;
    color: var(--blue);
    font-size: 18px;
}

.about-card-top small {
    color: var(--muted);
    font-size: 13px;
}

.about-progress-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.about-progress-list div {
    padding: 17px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(34, 47, 91, 0.08);
}

.about-progress-list span {
    color: var(--muted);
    font-weight: 700;
}

.about-progress-list strong {
    color: var(--red);
    font-weight: 900;
}

/* =========================================================
   Services Section
========================================================= */

.home-services {
    background:
        radial-gradient(circle at 10% 10%, rgba(34, 47, 91, 0.08), transparent 28%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

/* Homepage Services Grid - 3 Cards Per Row */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px !important;
    align-items: stretch;
}

 

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(34, 47, 91, 0.14);
}

.featured-service {
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.13), transparent 34%),
        #ffffff;
    border-color: rgba(182, 35, 49, 0.22);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.service-card p {
    margin-bottom: 20px;
    color: #5d6981;
    font-size: 14.5px;
    line-height: 1.65;
}

.service-card ul {
    margin-top: auto;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-card li {
    position: relative;
    padding-left: 19px;
    color: #46536d;
    font-size: 14px;
    font-weight: 650;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.service-link {
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}

/* =========================================================
   Why Choose Us
========================================================= */

.why-section {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-item {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.07);
}

.why-item > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-weight: 900;
}

.why-item h3 {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 19px;
    letter-spacing: -0.035em;
}

.why-item p {
    color: var(--muted);
    font-size: 14.5px;
}

/* =========================================================
   Pricing Preview
========================================================= */

.pricing-preview {
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 35, 49, 0.09), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

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


.price-card {
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
    transition: all 0.25s ease;
}

.price-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(34, 47, 91, 0.14);
}

.price-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(34, 47, 91, 0.07);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.price-card h3 {
    margin-bottom: 12px;
    color: var(--red);
    font-size: 34px;
    letter-spacing: -0.06em;
}

.price-card p {
    min-height: 82px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14.5px;
}

.price-card a {
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.highlighted-price {
    border-color: rgba(182, 35, 49, 0.24);
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 36%),
        #ffffff;
}

/* =========================================================
   Process Section
========================================================= */

.process-section {
    background: #ffffff;
}

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

.process-card {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.process-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(182, 35, 49, 0.20);
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.process-card h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 23px;
}

.process-card p {
    color: var(--muted);
    font-size: 15px;
}

/* =========================================================
   Team Preview
========================================================= */

.team-preview {
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 47, 91, 0.09), transparent 30%),
        #f7f9fd;
}

.team-preview-card {
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 42px;
    align-items: center;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 30px 80px rgba(34, 47, 91, 0.12);
}

.team-preview-content h2 {
    margin-bottom: 16px;
    color: #101936;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.team-preview-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.team-preview-content .btn {
    margin-top: 28px;
}

.team-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.team-mini-grid div {
    min-height: 150px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.09);
}

.team-mini-grid span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-weight: 900;
}

.team-mini-grid strong {
    color: var(--blue);
    font-size: 17px;
    line-height: 1.25;
}

/* =========================================================
   Final CTA
========================================================= */

.final-cta-section {
    padding: 96px 0;
    background: #ffffff;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
    text-align: center;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(182, 35, 49, 0.28), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.20);
}

.final-cta-card .eyebrow {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.final-cta-card h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.final-cta-card p {
    max-width: 620px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
}

.final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.final-cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   Homepage Responsive
========================================================= */

@media (max-width: 1100px) {
    .az-hero-grid,
    .about-preview-grid,
    .why-grid,
    .team-preview-card {
        grid-template-columns: 1fr;
    }

    .az-hero-content {
        max-width: 780px;
        text-align: center;
        margin: 0 auto;
    }

    .az-hero-badge,
    .az-hero-actions {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .az-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .az-hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .az-hero-visual {
        min-height: auto;
    }

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

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

    .section-content .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 760px) {
    .az-hero {
        padding: 74px 0 64px;
    }

    .az-hero h1 {
        font-size: clamp(42px, 14vw, 58px);
    }

    .az-hero-text {
        font-size: 16px;
    }

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

    .az-hero-actions .btn {
        width: 100%;
    }

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

    .az-hero-panel {
        padding: 18px;
        border-radius: 28px;
    }

    .az-panel-intro h3 {
        font-size: 25px;
    }

    .az-panel-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .az-panel-footer a {
        width: 100%;
    }

    .az-floating-note {
        position: static;
        margin-top: 14px;
    }

    .trust-section {
        margin-top: 0;
        padding-top: 24px;
    }

    .trust-grid,
    .services-grid,
    .pricing-grid,
    .process-grid,
    .team-mini-grid {
        grid-template-columns: 1fr;
    }

    .about-visual-card,
    .team-preview-card,
    .final-cta-card {
        padding: 28px;
        border-radius: 28px;
    }

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

    .final-cta-section {
        padding: 72px 0;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .az-hero h1 {
        font-size: 40px;
        letter-spacing: -0.065em;
    }

    .section-header h2,
    .section-content h2 {
        font-size: 34px;
    }

    .az-panel-service {
        align-items: flex-start;
    }

    .az-panel-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .process-card,
    .price-card,
    .service-card {
        padding: 24px;
        border-radius: 24px;
    }
}

/* =========================================================
   About Page
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 10% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 85% 16%, rgba(34, 47, 91, 0.13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.about-glow-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 120px;
    background: rgba(182, 35, 49, 0.16);
}

.about-glow-blue {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 40px;
    background: rgba(34, 47, 91, 0.17);
}

.about-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-hero-content h1 {
    margin-bottom: 22px;
    color: #101936;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.about-hero-content p {
    max-width: 630px;
    margin-bottom: 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.about-hero-visual {
    position: relative;
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.18);
}

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.about-floating-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-floating-card strong {
    color: var(--blue);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

/* About Intro */

.about-intro {
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: stretch;
}

.about-intro-card {
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.10), transparent 34%),
        linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 28px 70px rgba(34, 47, 91, 0.12);
}

.about-intro-card > span {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: #ffffff;
    font-weight: 900;
}

.about-intro-card h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.about-intro-card p {
    margin-bottom: 16px;
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.about-intro-card p:last-child {
    margin-bottom: 0;
}

.about-intro-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-point {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 16px 40px rgba(34, 47, 91, 0.08);
}

.about-point-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-weight: 900;
}

.about-point h3 {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 20px;
    letter-spacing: -0.035em;
}

.about-point p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* =========================================================
   Mission Section - Updated
========================================================= */

.mission-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 35, 49, 0.09), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(34, 47, 91, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.mission-header {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.mission-header .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.mission-header h2 {
    margin-bottom: 16px;
    color: #101936;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.mission-header p {
    color: #5d6981;
    font-size: 16.5px;
    line-height: 1.75;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.mission-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(34, 47, 91, 0.05), transparent 35%),
        #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 24px 60px rgba(34, 47, 91, 0.10);
}

.mission-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(182, 35, 49, 0.08);
    pointer-events: none;
}

.mission-dark {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.12), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(182, 35, 49, 0.26), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
}

.mission-dark::after {
    background: rgba(255, 255, 255, 0.08);
}

.mission-label {
    width: fit-content;
    margin-bottom: 24px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-dark .mission-label {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.mission-card h3 {
    max-width: 520px;
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(30px, 3.3vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.mission-card p {
    max-width: 560px;
    margin-bottom: 28px;
    color: #5d6981;
    font-size: 16px;
    line-height: 1.78;
}

.mission-dark h3 {
    color: #ffffff;
}

.mission-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.mission-link {
    width: fit-content;
    min-height: 48px;
    margin-top: auto;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--blue);
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    transition: all 0.25s ease;
}

.mission-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.mission-link-dark {
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(182, 35, 49, 0.24);
}

.mission-link-dark:hover {
    box-shadow: 0 22px 42px rgba(182, 35, 49, 0.34);
}

@media (max-width: 920px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .mission-card {
        padding: 28px;
        border-radius: 28px;
    }

    .mission-card h3 {
        font-size: 32px;
    }

    .mission-header h2 {
        font-size: 34px;
    }
}

/* Who We Help */

.who-we-help {
    background: #ffffff;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.help-card {
    min-height: 280px;
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
    transition: all 0.25s ease;
}

.help-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(34, 47, 91, 0.14);
}

.help-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(182, 35, 49, 0.22);
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.help-card h3 {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 23px;
    letter-spacing: -0.04em;
}

.help-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Values */

.values-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(34, 47, 91, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.values-content h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.values-content p {
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.values-content .btn {
    margin-top: 28px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.value-item {
    padding: 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 16px 40px rgba(34, 47, 91, 0.08);
}

.value-item span {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 18px;
    font-weight: 900;
}

.value-item p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* About Process */

.about-process {
    background: #ffffff;
}

.about-process-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
    align-items: center;
}

.about-process-image {
    overflow: hidden;
    height: 560px;
    border-radius: 36px;
    background: #f7f9fd;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 30px 80px rgba(34, 47, 91, 0.12);
}

.about-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-process-content h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.about-process-content > p {
    margin-bottom: 28px;
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.process-mini-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-mini-list > div {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.07);
}

.process-mini-list span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}

.process-mini-list h3 {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 19px;
    letter-spacing: -0.035em;
}

.process-mini-list p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* About CTA */

.about-cta-section {
    padding: 96px 0;
    background: #ffffff;
}

.about-cta-card {
    position: relative;
    overflow: hidden;
    padding: 72px 42px;
    text-align: center;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(182, 35, 49, 0.28), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.20);
}

.about-cta-card .eyebrow {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.about-cta-card h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.about-cta-card p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
}

.about-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.about-cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* About Page Responsive */

@media (max-width: 1100px) {
    .about-hero-grid,
    .about-intro-grid,
    .values-grid,
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        max-width: 780px;
        text-align: center;
        margin: 0 auto;
    }

    .about-hero-content .eyebrow,
    .about-hero-actions,
    .values-content .eyebrow,
    .about-process-content .eyebrow {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .values-content,
    .about-process-content {
        text-align: center;
    }

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

    .about-process-image {
        height: 460px;
    }
}

@media (max-width: 760px) {
    .about-hero {
        padding: 74px 0 64px;
    }

    .about-hero-content h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .about-hero-content p {
        font-size: 16px;
    }

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

    .about-hero-actions .btn {
        width: 100%;
    }

    .about-image-wrap {
        min-height: 390px;
        border-radius: 28px;
    }

    .about-image-wrap img {
        height: 390px;
    }

    .about-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .about-floating-card strong {
        font-size: 18px;
    }

    .about-intro-card,
    .mission-card,
    .about-cta-card {
        padding: 28px;
        border-radius: 28px;
    }

    .mission-grid,
    .help-grid,
    .values-list {
        grid-template-columns: 1fr;
    }

    .mission-card {
        min-height: auto;
    }

    .help-card {
        min-height: auto;
    }

    .about-process-image {
        height: 360px;
        border-radius: 28px;
    }

    .process-mini-list > div,
    .about-point {
        flex-direction: column;
    }

    .about-cta-section {
        padding: 72px 0;
    }

    .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .about-intro-card h2,
    .values-content h2,
    .about-process-content h2 {
        font-size: 36px;
        letter-spacing: -0.06em;
    }

    .about-point,
    .value-item,
    .help-card,
    .process-mini-list > div {
        padding: 22px;
        border-radius: 22px;
    }
}

/* =========================================================
   Services Page
========================================================= */

.srv-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 8% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(34, 47, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.srv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.srv-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.srv-glow-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 120px;
    background: rgba(182, 35, 49, 0.16);
}

.srv-glow-blue {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 40px;
    background: rgba(34, 47, 91, 0.17);
}

.srv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 890px;
    margin: 0 auto;
    text-align: center;
}

.srv-hero-inner .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.srv-hero-inner h1 {
    margin-bottom: 22px;
    color: #101936;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.srv-hero-inner p {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.srv-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Services Overview */

.srv-overview {
    background: #ffffff;
}

.srv-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.srv-main-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(34, 47, 91, 0.045), transparent 34%),
        #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 22px 58px rgba(34, 47, 91, 0.10);
    transition: all 0.25s ease;
}

.srv-main-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 32px 80px rgba(34, 47, 91, 0.15);
}

.srv-featured-card {
    border-color: rgba(182, 35, 49, 0.24);
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 34%),
        #ffffff;
}

.srv-popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.srv-card-top {
    margin-bottom: 18px;
    padding-right: 82px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.srv-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 15px;
    font-weight: 900;
}

.srv-category {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.srv-main-card h3 {
    color: var(--blue);
    font-size: 27px;
    line-height: 1.14;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.srv-main-card > p {
    margin-bottom: 24px;
    color: #5d6981;
    font-size: 15.5px;
    line-height: 1.75;
}

.srv-price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.srv-price-list div {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 16px;
    background: #f7f9fd;
    border: 1px solid rgba(34, 47, 91, 0.08);
}

.srv-price-list span {
    color: #3f4b66;
    font-size: 14.5px;
    font-weight: 700;
}

.srv-price-list strong {
    color: var(--blue);
    font-size: 14.5px;
    font-weight: 900;
    white-space: nowrap;
}

.srv-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.srv-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.srv-request {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(182, 35, 49, 0.22);
    transition: all 0.25s ease;
}

.srv-request:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(182, 35, 49, 0.32);
}

.srv-pricing-note {
    max-width: 780px;
    margin: 30px auto 0;
    padding: 18px 22px;
    text-align: center;
    border-radius: 18px;
    background: rgba(182, 35, 49, 0.07);
    border: 1px solid rgba(182, 35, 49, 0.12);
    color: #5d6981;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Benefits */

.srv-benefits {
    background:
        radial-gradient(circle at 12% 14%, rgba(34, 47, 91, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.srv-benefits-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
    align-items: center;
}

.srv-benefits-content h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.srv-benefits-content p {
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.srv-benefits-content .btn {
    margin-top: 28px;
}

.srv-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.srv-benefit-item {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.07);
}

.srv-benefit-item > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}

.srv-benefit-item h3 {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 20px;
    letter-spacing: -0.035em;
}

.srv-benefit-item p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Process */

.srv-process {
    background: #ffffff;
}

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

.srv-process-card {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.srv-process-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(182, 35, 49, 0.22);
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.srv-process-card h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 23px;
    letter-spacing: -0.04em;
}

.srv-process-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* Final CTA */

.srv-final-cta {
    padding: 96px 0;
    background: #ffffff;
}

.srv-final-card {
    position: relative;
    overflow: hidden;
    padding: 72px 42px;
    text-align: center;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(182, 35, 49, 0.28), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.20);
}

.srv-final-card .eyebrow {
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.srv-final-card h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.srv-final-card p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
}

.srv-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.srv-final-card .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* Responsive */

@media (max-width: 1100px) {
    .srv-benefits-grid {
        grid-template-columns: 1fr;
    }

    .srv-benefits-content {
        text-align: center;
    }

    .srv-benefits-content .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 920px) {
    .srv-main-grid,
    .srv-process-grid {
        grid-template-columns: 1fr;
    }

    .srv-main-card {
        padding: 28px;
    }
}

@media (max-width: 680px) {
    .srv-hero {
        padding: 74px 0 64px;
    }

    .srv-hero-inner h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.055em;
    }

    .srv-hero-inner p {
        font-size: 16px;
    }

    .srv-hero-actions,
    .srv-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .srv-hero-actions .btn,
    .srv-final-actions .btn {
        width: 100%;
    }

    .srv-card-top {
        padding-right: 0;
    }

    .srv-popular-badge {
        position: static;
        width: fit-content;
        margin-bottom: 16px;
    }

    .srv-price-list div,
    .srv-card-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .srv-request {
        width: 100%;
    }

    .srv-benefit-item {
        flex-direction: column;
    }

    .srv-process-card,
    .srv-main-card,
    .srv-final-card {
        border-radius: 26px;
    }

    .srv-final-card {
        padding: 42px 24px;
    }
}

/* =========================================================
   Team Page V2 With Images
========================================================= */

.team-hero-v2 {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 8% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(34, 47, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.team-hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.team-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.team-glow-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 120px;
    background: rgba(182, 35, 49, 0.16);
}

.team-glow-blue {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 40px;
    background: rgba(34, 47, 91, 0.17);
}

.team-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.team-hero-content h1 {
    margin-bottom: 22px;
    color: #101936;
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.team-hero-content p {
    max-width: 650px;
    margin-bottom: 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.team-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.team-hero-image-wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.18);
}

.team-hero-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.team-hero-image-fallback {
    display: none;
    width: 100%;
    height: 520px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.team-hero-image-wrap.image-missing .team-hero-image-fallback {
    display: flex;
}

.team-hero-image-fallback span {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.team-hero-image-fallback strong {
    color: var(--blue);
    font-size: 28px;
    font-weight: 900;
}

.team-hero-image-fallback small {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.team-hero-floating-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.team-hero-floating-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-hero-floating-card strong {
    color: var(--blue);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

/* Department Overview */

.team-departments-v2 {
    background: #ffffff;
}

.team-dept-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-dept-card-v2 {
    min-height: 285px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
    transition: all 0.25s ease;
}

.team-dept-card-v2:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(34, 47, 91, 0.14);
}

.team-dept-card-v2.featured {
    border-color: rgba(182, 35, 49, 0.24);
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 34%),
        #ffffff;
}

.team-dept-card-v2 > span {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-weight: 900;
}

.team-dept-card-v2 h3 {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.team-dept-card-v2 p {
    margin-top: auto;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Team Members */

.team-members-section-v2 {
    background: #ffffff;
}

.team-soft-bg {
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 35, 49, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.team-section-heading-v2 {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.team-section-heading-v2 .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.team-section-heading-v2 h2 {
    margin-bottom: 14px;
    color: #101936;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.team-section-heading-v2 p {
    color: #5d6981;
    font-size: 16.5px;
    line-height: 1.75;
}

.team-members-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.team-members-grid-v2.count-1 {
    grid-template-columns: minmax(0, 420px);
    justify-content: center;
}

.team-members-grid-v2.count-2 {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
}

.team-members-grid-v2.count-3 {
    grid-template-columns: repeat(3, 1fr);
}

.team-member-card-v2 {
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
    transition: all 0.25s ease;
}

.team-member-card-v2:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 75px rgba(34, 47, 91, 0.15);
}

.team-member-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.10), transparent 34%),
        linear-gradient(145deg, #f7f9fd, #ffffff);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:top;
    transition: all 0.35s ease;
}

.team-member-card-v2:hover .team-member-image img {
    transform: scale(1.04);
}

.team-initial-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f7f9fd);
    color: var(--red);
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.team-member-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.10);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.team-member-content {
    padding: 26px;
}

.team-member-content > span {
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    display: inline-flex;
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
}

.team-member-content h3 {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.team-member-content p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

/* Team Values */

.team-values-v2 {
    background:
        radial-gradient(circle at 12% 14%, rgba(34, 47, 91, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.team-values-grid-v2 {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
    align-items: center;
}

.team-values-content-v2 h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.team-values-content-v2 p {
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.team-values-content-v2 .btn {
    margin-top: 28px;
}

.team-values-list-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.team-value-item-v2 {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.07);
}

.team-value-item-v2 > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}

.team-value-item-v2 h3 {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 20px;
    letter-spacing: -0.035em;
}

.team-value-item-v2 p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Final CTA */

.team-final-cta-v2 {
    padding: 96px 0;
    background: #ffffff;
}

.team-final-card-v2 {
    position: relative;
    overflow: hidden;
    padding: 72px 42px;
    text-align: center;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(182, 35, 49, 0.28), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.20);
}

.team-final-card-v2 .eyebrow {
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.team-final-card-v2 h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.team-final-card-v2 p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
}

.team-final-actions-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.team-final-card-v2 .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* Responsive */

@media (max-width: 1100px) {
    .team-hero-grid,
    .team-values-grid-v2 {
        grid-template-columns: 1fr;
    }

    .team-hero-content,
    .team-values-content-v2 {
        text-align: center;
    }

    .team-hero-content .eyebrow,
    .team-hero-actions,
    .team-values-content-v2 .eyebrow {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .team-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .team-dept-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-members-grid-v2,
    .team-members-grid-v2.count-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .team-hero-v2 {
        padding: 74px 0 64px;
    }

    .team-hero-content h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.055em;
    }

    .team-hero-content p {
        font-size: 16px;
    }

    .team-hero-actions,
    .team-final-actions-v2 {
        flex-direction: column;
        align-items: stretch;
    }

    .team-hero-actions .btn,
    .team-final-actions-v2 .btn {
        width: 100%;
    }

    .team-hero-image-wrap {
        min-height: 390px;
        border-radius: 28px;
    }

    .team-hero-image-wrap img,
    .team-hero-image-fallback {
        height: 390px;
    }

    .team-hero-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .team-dept-grid-v2,
    .team-members-grid-v2,
    .team-members-grid-v2.count-1,
    .team-members-grid-v2.count-2,
    .team-members-grid-v2.count-3 {
        grid-template-columns: 1fr;
    }

    .team-member-image {
        height: 400px;
    }

    .team-value-item-v2 {
        flex-direction: column;
    }

    .team-final-card-v2 {
        padding: 42px 24px;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .team-hero-content h1,
    .team-section-heading-v2 h2,
    .team-values-content-v2 h2 {
        font-size: 36px;
        letter-spacing: -0.055em;
    }

    .team-member-image {
        height: 400px;
    }

    .team-member-content,
    .team-dept-card-v2,
    .team-value-item-v2 {
        padding: 22px;
    }
}


/* =========================================================
   FAQ Page
========================================================= */

.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 8% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(34, 47, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.faq-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.faq-glow-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 120px;
    background: rgba(182, 35, 49, 0.16);
}

.faq-glow-blue {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 40px;
    background: rgba(34, 47, 91, 0.17);
}

.faq-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.faq-hero-inner .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.faq-hero-inner h1 {
    margin-bottom: 22px;
    color: #101936;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.faq-hero-inner p {
    max-width: 720px;
    margin: 0 auto 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.faq-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Main FAQ Layout */

.faq-main {
    background: #ffffff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: flex-start;
}

.faq-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-sidebar-card {
    padding: 30px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.14), transparent 36%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 26px 70px rgba(34, 47, 91, 0.18);
}

.faq-sidebar-badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 13px;
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-sidebar-card h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.faq-sidebar-card p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.7;
}

.faq-contact-card {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.faq-contact-card h3 {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 22px;
    letter-spacing: -0.04em;
}

.faq-contact-card a {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 15px;
    font-weight: 850;
    word-break: break-word;
}

.faq-contact-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.faq-content {
    min-width: 0;
}

.faq-top-text {
    margin-bottom: 28px;
}

.faq-top-text h2 {
    max-width: 760px;
    margin-bottom: 14px;
    color: #101936;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.faq-top-text p {
    max-width: 700px;
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

/* Accordion */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.07);
    transition: all 0.25s ease;
}

.faq-item.active {
    border-color: rgba(182, 35, 49, 0.24);
    box-shadow: 0 22px 54px rgba(34, 47, 91, 0.11);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 120px 1fr 38px;
    align-items: center;
    gap: 18px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.faq-category {
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.08);
    color: var(--red);
    font-size: 11.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq-question strong {
    color: var(--blue);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.faq-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 50%;
    background: rgba(34, 47, 91, 0.07);
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.faq-item.active .faq-icon {
    background: var(--red);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px 162px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    max-width: 760px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
}

/* CTA */

.faq-cta-section {
    padding: 96px 0;
    background: #ffffff;
}

.faq-cta-card {
    position: relative;
    overflow: hidden;
    padding: 72px 42px;
    text-align: center;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(182, 35, 49, 0.28), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.20);
}

.faq-cta-card .eyebrow {
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.faq-cta-card h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.faq-cta-card p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
}

.faq-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.faq-cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* Responsive */

@media (max-width: 1100px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .faq-hero {
        padding: 74px 0 64px;
    }

    .faq-hero-inner h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.055em;
    }

    .faq-hero-inner p {
        font-size: 16px;
    }

    .faq-hero-actions,
    .faq-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-hero-actions .btn,
    .faq-cta-actions .btn {
        width: 100%;
    }

    .faq-sidebar {
        grid-template-columns: 1fr;
    }

    .faq-question {
        grid-template-columns: 1fr 38px;
        gap: 12px;
    }

    .faq-category {
        grid-column: 1 / -1;
    }

    .faq-answer {
        padding: 0 24px 24px;
    }

    .faq-cta-card {
        padding: 42px 24px;
        border-radius: 28px;
    }
}

/* =========================================================
   Contact Page
========================================================= */

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 8% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(34, 47, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.contact-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.contact-glow-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 120px;
    background: rgba(182, 35, 49, 0.16);
}

.contact-glow-blue {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 40px;
    background: rgba(34, 47, 91, 0.17);
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-inner .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-inner h1 {
    margin-bottom: 22px;
    color: #101936;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.contact-hero-inner p {
    max-width: 720px;
    margin: 0 auto 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Main Contact */

.contact-main {
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: flex-start;
}

.contact-info-panel {
    position: sticky;
    top: 120px;
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 24px 60px rgba(34, 47, 91, 0.10);
}

.contact-info-panel h2 {
    margin-bottom: 16px;
    color: #101936;
    font-size: clamp(32px, 3.6vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.contact-info-panel > p {
    margin-bottom: 28px;
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-info-item {
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.09);
}

.contact-info-item span {
    display: block;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-item a {
    color: var(--blue);
    font-size: 16px;
    font-weight: 850;
    word-break: break-word;
}

.contact-info-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact-support-card {
    padding: 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
}

.contact-support-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.contact-support-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Form */

.contact-form-panel {
    padding: 34px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 24px 60px rgba(34, 47, 91, 0.10);
}

.form-alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 14.5px;
    font-weight: 750;
    line-height: 1.6;
}

.form-alert.success {
    background: rgba(34, 160, 92, 0.10);
    border: 1px solid rgba(34, 160, 92, 0.18);
    color: #17643a;
}

.form-alert.error {
    background: rgba(182, 35, 49, 0.09);
    border: 1px solid rgba(182, 35, 49, 0.16);
    color: var(--red);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--blue);
    font-size: 14px;
    font-weight: 850;
}

.form-group label span {
    color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(34, 47, 91, 0.14);
    outline: none;
    border-radius: 18px;
    background: #f7f9fd;
    color: #172033;
    font-size: 15px;
    transition: all 0.25s ease;
}

.form-group input,
.form-group select {
    min-height: 56px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 160px;
    padding: 16px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #98a2b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: rgba(182, 35, 49, 0.35);
    box-shadow: 0 0 0 5px rgba(182, 35, 49, 0.08);
}

.contact-submit-btn {
    min-height: 58px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(182, 35, 49, 0.30);
    transition: all 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(182, 35, 49, 0.38);
}

.form-note {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

/* Process */

.contact-process {
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 35, 49, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

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

.contact-process-card {
    padding: 34px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.contact-process-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(182, 35, 49, 0.22);
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.contact-process-card h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 23px;
    letter-spacing: -0.04em;
}

.contact-process-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* Responsive */

@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .contact-hero {
        padding: 74px 0 64px;
    }

    .contact-hero-inner h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.055em;
    }

    .contact-hero-inner p {
        font-size: 16px;
    }

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

    .contact-hero-actions .btn {
        width: 100%;
    }

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

    .contact-info-panel,
    .contact-form-panel,
    .contact-process-card {
        padding: 26px;
        border-radius: 26px;
    }
}

/* =========================================================
   Human Resources Service Page
========================================================= */
.hr-price-badge {
    max-width: calc(100% - 36px);
    white-space: normal;
    line-height: 1.35;
}

.hr-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 8% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(34, 47, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.hr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.hr-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.hr-glow-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 120px;
    background: rgba(182, 35, 49, 0.16);
}

.hr-glow-blue {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 40px;
    background: rgba(34, 47, 91, 0.17);
}

.hr-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.hr-hero-content h1 {
    margin-bottom: 22px;
    color: #101936;
    font-size: clamp(40px, 4.7vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.hr-hero-content p {
    max-width: 650px;
    margin-bottom: 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.hr-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hr-hero-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.18);
}

.hr-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hr-hero-fallback {
    display: none;
    width: 100%;
    height: 520px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.hr-hero-image.image-missing .hr-hero-fallback {
    display: flex;
}

.hr-hero-fallback span {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.hr-hero-fallback strong {
    color: var(--blue);
    font-size: 28px;
    font-weight: 900;
}

.hr-hero-fallback small {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.hr-floating-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hr-floating-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hr-floating-card strong {
    display: block;
    margin-bottom: 2px;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.hr-floating-card small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

/* Stats */

.hr-stats-section {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    background: transparent;
}

.hr-stats-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 24px 60px rgba(34, 47, 91, 0.12);
}

.hr-stat-card {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.08);
}

.hr-stat-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hr-stat-card span {
    color: var(--blue);
    font-size: 14px;
    font-weight: 850;
}

/* Sub Services */

.hr-sub-services {
    background: #ffffff;
}

.hr-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hr-service-card {
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 22px 58px rgba(34, 47, 91, 0.10);
    transition: all 0.25s ease;
}

.hr-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 86px rgba(34, 47, 91, 0.16);
}

.hr-service-image {
    position: relative;
    height: 290px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.10), transparent 34%),
        linear-gradient(145deg, #f7f9fd, #ffffff);
}

.hr-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s ease;
}

.hr-service-card:hover .hr-service-image img {
    transform: scale(1.04);
}

.hr-image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.hr-service-image.image-missing .hr-image-fallback {
    display: flex;
}

.hr-image-fallback span {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
}

.hr-price-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.10);
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hr-service-content {
    padding: 30px;
}

.hr-service-content h3 {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hr-service-content p {
    margin-bottom: 20px;
    color: #5d6981;
    font-size: 15.5px;
    line-height: 1.72;
}

.hr-service-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 24px;
}

.hr-service-content li {
    position: relative;
    padding-left: 20px;
    color: #46536d;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.hr-service-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.hr-service-btn {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(182, 35, 49, 0.22);
    transition: all 0.25s ease;
}

.hr-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(182, 35, 49, 0.32);
}

.hr-pricing-note {
    max-width: 780px;
    margin: 30px auto 0;
    padding: 18px 22px;
    text-align: center;
    border-radius: 18px;
    background: rgba(182, 35, 49, 0.07);
    border: 1px solid rgba(182, 35, 49, 0.12);
    color: #5d6981;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Benefits */

.hr-benefits {
    background:
        radial-gradient(circle at 12% 14%, rgba(34, 47, 91, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.hr-benefits-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
    align-items: center;
}

.hr-benefits-content h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hr-benefits-content p {
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.hr-benefits-content .btn {
    margin-top: 28px;
}

.hr-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.hr-benefit-item {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.07);
}

.hr-benefit-item > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}

.hr-benefit-item h3 {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 20px;
    letter-spacing: -0.035em;
}

.hr-benefit-item p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Process */

.hr-process {
    background: #ffffff;
}

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

.hr-process-card {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.hr-process-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(182, 35, 49, 0.22);
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.hr-process-card h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 23px;
    letter-spacing: -0.04em;
}

.hr-process-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* FAQ */

.hr-faq {
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 35, 49, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.hr-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.hr-faq-card {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.hr-faq-card h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.hr-faq-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

/* Final CTA */

.hr-final-cta {
    padding: 96px 0;
    background: #ffffff;
}

.hr-final-card {
    position: relative;
    overflow: hidden;
    padding: 72px 42px;
    text-align: center;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(182, 35, 49, 0.28), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.20);
}

.hr-final-card .eyebrow {
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.hr-final-card h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hr-final-card p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
}

.hr-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hr-final-card .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* Responsive */

@media (max-width: 1100px) {
    .hr-hero-grid,
    .hr-benefits-grid {
        grid-template-columns: 1fr;
    }

    .hr-hero-content,
    .hr-benefits-content {
        text-align: center;
    }

    .hr-hero-content .eyebrow,
    .hr-hero-actions,
    .hr-benefits-content .eyebrow {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hr-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 920px) {
    .hr-services-grid,
    .hr-process-grid,
    .hr-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hr-hero {
        padding: 74px 0 64px;
    }

    .hr-hero-content h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.055em;
    }

    .hr-hero-content p {
        font-size: 16px;
    }

    .hr-hero-actions,
    .hr-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hr-hero-actions .btn,
    .hr-final-actions .btn {
        width: 100%;
    }

    .hr-hero-image {
        min-height: 390px;
        border-radius: 28px;
    }

    .hr-hero-image img,
    .hr-hero-fallback {
        height: 390px;
    }

    .hr-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .hr-stats-section {
        margin-top: 0;
        padding-top: 24px;
    }

    .hr-stats-grid {
        grid-template-columns: 1fr;
    }

    .hr-service-image {
        height: 240px;
    }

    .hr-service-content {
        padding: 24px;
    }

    .hr-service-content ul {
        grid-template-columns: 1fr;
    }

    .hr-benefit-item {
        flex-direction: column;
    }

    .hr-final-card {
        padding: 42px 24px;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .hr-hero-content h1,
    .hr-benefits-content h2,
    .hr-final-card h2 {
        font-size: 36px;
        letter-spacing: -0.055em;
    }

    .hr-service-content h3 {
        font-size: 24px;
    }

    .hr-process-card,
    .hr-faq-card {
        padding: 24px;
        border-radius: 24px;
    }
}

/* =========================================================
   Tech Services Page
========================================================= */

.tech-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at 8% 12%, rgba(182, 35, 49, 0.08), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(34, 47, 91, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.tech-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 47, 91, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 47, 91, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.tech-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.tech-glow-red {
    width: 360px;
    height: 360px;
    left: -140px;
    top: 120px;
    background: rgba(182, 35, 49, 0.16);
}

.tech-glow-blue {
    width: 460px;
    height: 460px;
    right: -180px;
    top: 40px;
    background: rgba(34, 47, 91, 0.17);
}

.tech-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.tech-hero-content h1 {
    margin-bottom: 22px;
    color: #101936;
    font-size: clamp(40px, 4.7vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.tech-hero-content p {
    max-width: 650px;
    margin-bottom: 32px;
    color: #536079;
    font-size: 18px;
    line-height: 1.78;
}

.tech-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.tech-hero-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.12), transparent 34%),
        linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.18);
}

.tech-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.tech-hero-fallback {
    display: none;
    width: 100%;
    height: 520px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.tech-hero-image.image-missing .tech-hero-fallback {
    display: flex;
}

.tech-hero-fallback span {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
}

.tech-hero-fallback strong {
    color: var(--blue);
    font-size: 28px;
    font-weight: 900;
}

.tech-hero-fallback small {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.tech-floating-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.12);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.tech-floating-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-floating-card strong {
    display: block;
    margin-bottom: 2px;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.tech-floating-card small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

/* Stats */

.tech-stats-section {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    background: transparent;
}

.tech-stats-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 24px 60px rgba(34, 47, 91, 0.12);
}

.tech-stat-card {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.08);
}

.tech-stat-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.tech-stat-card span {
    color: var(--blue);
    font-size: 14px;
    font-weight: 850;
}

/* Sub Services */

.tech-sub-services {
    background: #ffffff;
}

.tech-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tech-service-card {
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 22px 58px rgba(34, 47, 91, 0.10);
    transition: all 0.25s ease;
}

.tech-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 86px rgba(34, 47, 91, 0.16);
}

.tech-service-image {
    position: relative;
    height: 290px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(182, 35, 49, 0.10), transparent 34%),
        linear-gradient(145deg, #f7f9fd, #ffffff);
}

.tech-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s ease;
}

.tech-service-card:hover .tech-service-image img {
    transform: scale(1.04);
}

.tech-image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.tech-service-image.image-missing .tech-image-fallback {
    display: flex;
}

.tech-image-fallback span {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--blue), var(--red));
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
}

.tech-price-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 47, 91, 0.10);
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tech-service-content {
    padding: 30px;
}

.tech-service-content h3 {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.tech-service-content p {
    margin-bottom: 20px;
    color: #5d6981;
    font-size: 15.5px;
    line-height: 1.72;
}

.tech-service-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 24px;
}

.tech-service-content li {
    position: relative;
    padding-left: 20px;
    color: #46536d;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.tech-service-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.tech-service-btn {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #d73142);
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(182, 35, 49, 0.22);
    transition: all 0.25s ease;
}

.tech-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(182, 35, 49, 0.32);
}

.tech-pricing-note {
    max-width: 780px;
    margin: 30px auto 0;
    padding: 18px 22px;
    text-align: center;
    border-radius: 18px;
    background: rgba(182, 35, 49, 0.07);
    border: 1px solid rgba(182, 35, 49, 0.12);
    color: #5d6981;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Benefits */

.tech-benefits {
    background:
        radial-gradient(circle at 12% 14%, rgba(34, 47, 91, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.tech-benefits-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
    align-items: center;
}

.tech-benefits-content h2 {
    margin-bottom: 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.tech-benefits-content p {
    color: #5d6981;
    font-size: 16px;
    line-height: 1.75;
}

.tech-benefits-content .btn {
    margin-top: 28px;
}

.tech-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.tech-benefit-item {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 14px 34px rgba(34, 47, 91, 0.07);
}

.tech-benefit-item > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(182, 35, 49, 0.10);
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
}

.tech-benefit-item h3 {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 20px;
    letter-spacing: -0.035em;
}

.tech-benefit-item p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Process */

.tech-process {
    background: #ffffff;
}

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

.tech-process-card {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(145deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.tech-process-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(182, 35, 49, 0.22);
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.tech-process-card h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 23px;
    letter-spacing: -0.04em;
}

.tech-process-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* FAQ */

.tech-faq {
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 35, 49, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.tech-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tech-faq-card {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(34, 47, 91, 0.10);
    box-shadow: 0 18px 44px rgba(34, 47, 91, 0.08);
}

.tech-faq-card h3 {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.tech-faq-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

/* Final CTA */

.tech-final-cta {
    padding: 96px 0;
    background: #ffffff;
}

.tech-final-card {
    position: relative;
    overflow: hidden;
    padding: 72px 42px;
    text-align: center;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(182, 35, 49, 0.28), transparent 34%),
        linear-gradient(135deg, #131d3f, var(--blue));
    box-shadow: 0 34px 90px rgba(34, 47, 91, 0.20);
}

.tech-final-card .eyebrow {
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.tech-final-card h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.tech-final-card p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
}

.tech-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.tech-final-card .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* Responsive */

@media (max-width: 1100px) {
    .tech-hero-grid,
    .tech-benefits-grid {
        grid-template-columns: 1fr;
    }

    .tech-hero-content,
    .tech-benefits-content {
        text-align: center;
    }

    .tech-hero-content .eyebrow,
    .tech-hero-actions,
    .tech-benefits-content .eyebrow {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .tech-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 920px) {
    .tech-services-grid,
    .tech-process-grid,
    .tech-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .tech-hero {
        padding: 74px 0 64px;
    }

    .tech-hero-content h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.055em;
    }

    .tech-hero-content p {
        font-size: 16px;
    }

    .tech-hero-actions,
    .tech-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tech-hero-actions .btn,
    .tech-final-actions .btn {
        width: 100%;
    }

    .tech-hero-image {
        min-height: 390px;
        border-radius: 28px;
    }

    .tech-hero-image img,
    .tech-hero-fallback {
        height: 390px;
    }

    .tech-floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .tech-stats-section {
        margin-top: 0;
        padding-top: 24px;
    }

    .tech-stats-grid {
        grid-template-columns: 1fr;
    }

    .tech-service-image {
        height: 240px;
    }

    .tech-service-content {
        padding: 24px;
    }

    .tech-service-content ul {
        grid-template-columns: 1fr;
    }

    .tech-benefit-item {
        flex-direction: column;
    }

    .tech-final-card {
        padding: 42px 24px;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .tech-hero-content h1,
    .tech-benefits-content h2,
    .tech-final-card h2 {
        font-size: 36px;
        letter-spacing: -0.055em;
    }

    .tech-service-content h3 {
        font-size: 24px;
    }

    .tech-process-card,
    .tech-faq-card {
        padding: 24px;
        border-radius: 24px;
    }
}

/* ================================
   Tutoring Services Page
================================ */

.tutor-hero {
    position: relative;
    padding: 120px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(182, 35, 49, 0.10), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(34, 47, 91, 0.14), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.tutor-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.42;
    pointer-events: none;
}

.tutor-glow-red {
    width: 260px;
    height: 260px;
    background: rgba(182, 35, 49, 0.16);
    top: 70px;
    left: -90px;
}

.tutor-glow-blue {
    width: 300px;
    height: 300px;
    background: rgba(34, 47, 91, 0.15);
    right: -120px;
    bottom: 20px;
}

.tutor-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 60px;
    align-items: center;
}

.tutor-hero-content h1 {
    margin: 18px 0 22px;
    color: #101936;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.tutor-hero-content p {
    max-width: 660px;
    color: #586174;
    font-size: 18px;
    line-height: 1.8;
}

.tutor-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.tutor-hero-image {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #222f5b, #b62331);
    box-shadow: 0 30px 70px rgba(16, 25, 54, 0.20);
}

.tutor-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.tutor-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 25, 54, 0.03), rgba(16, 25, 54, 0.28));
    pointer-events: none;
}

.tutor-hero-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.tutor-hero-fallback span {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 30px;
    font-weight: 900;
}

.tutor-hero-fallback strong {
    font-size: 28px;
    line-height: 1.2;
}

.tutor-hero-fallback small {
    color: rgba(255, 255, 255, 0.78);
}

.tutor-hero-image.image-missing .tutor-hero-fallback {
    display: flex;
}

.tutor-floating-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    width: calc(100% - 48px);
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 35px rgba(16, 25, 54, 0.18);
}

.tutor-floating-card span {
    display: block;
    margin-bottom: 5px;
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.tutor-floating-card strong {
    display: block;
    color: #101936;
    font-size: 30px;
    font-weight: 900;
}

.tutor-floating-card small {
    color: #667085;
    font-size: 13px;
}

.tutor-stats-section {
    padding: 28px 0;
    background: #ffffff;
}

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

.tutor-stat-card {
    padding: 26px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.tutor-stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: #222f5b;
    font-size: 30px;
    font-weight: 900;
}

.tutor-stat-card span {
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.tutor-sub-services {
    background: #f7f9ff;
}

.tutor-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.tutor-service-card {
    overflow: hidden;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 25, 54, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tutor-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(16, 25, 54, 0.13);
}

.tutor-service-image {
    position: relative;
    min-height: 260px;
    background: linear-gradient(135deg, #222f5b, #b62331);
    overflow: hidden;
}

.tutor-service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.tutor-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(16, 25, 54, 0.33));
    pointer-events: none;
}

.tutor-image-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.tutor-image-fallback span {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 24px;
    font-weight: 900;
}

.tutor-service-image.image-missing .tutor-image-fallback {
    display: flex;
}

.tutor-price-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #b62331;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(16, 25, 54, 0.18);
}

.tutor-service-content {
    padding: 28px;
}

.tutor-service-content h3 {
    margin-bottom: 12px;
    color: #101936;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 900;
}

.tutor-service-content p {
    margin-bottom: 20px;
    color: #586174;
    line-height: 1.75;
}

.tutor-service-content ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.tutor-service-content li {
    position: relative;
    padding-left: 28px;
    color: #30384a;
    font-size: 15px;
    font-weight: 700;
}

.tutor-service-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(182, 35, 49, 0.10);
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
}

.tutor-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #222f5b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.tutor-service-btn:hover {
    transform: translateY(-2px);
    background: #b62331;
}

.tutor-pricing-note {
    max-width: 850px;
    margin: 28px auto 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.tutor-benefits {
    background: #ffffff;
}

.tutor-benefits-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.tutor-benefits-content h2 {
    margin: 14px 0 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.tutor-benefits-content p {
    margin-bottom: 26px;
    color: #586174;
    font-size: 17px;
    line-height: 1.8;
}

.tutor-benefits-list {
    display: grid;
    gap: 16px;
}

.tutor-benefit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.tutor-benefit-item > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(182, 35, 49, 0.10);
    color: #b62331;
    font-weight: 900;
}

.tutor-benefit-item h3 {
    margin-bottom: 6px;
    color: #101936;
    font-size: 19px;
    font-weight: 900;
}

.tutor-benefit-item p {
    color: #667085;
    line-height: 1.65;
}

.tutor-process {
    background: #f7f9ff;
}

.tutor-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.tutor-process-card {
    padding: 30px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(16, 25, 54, 0.07);
}

.tutor-process-card span {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: #222f5b;
    color: #ffffff;
    font-weight: 900;
}

.tutor-process-card h3 {
    margin-bottom: 10px;
    color: #101936;
    font-size: 21px;
    font-weight: 900;
}

.tutor-process-card p {
    color: #667085;
    line-height: 1.7;
}

.tutor-faq {
    background: #ffffff;
}

.tutor-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.tutor-faq-card {
    padding: 28px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.tutor-faq-card h3 {
    margin-bottom: 10px;
    color: #101936;
    font-size: 20px;
    font-weight: 900;
}

.tutor-faq-card p {
    color: #667085;
    line-height: 1.7;
}

.tutor-final-cta {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(182, 35, 49, 0.18), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #222f5b, #101936);
}

.tutor-final-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.tutor-final-card .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.tutor-final-card h2 {
    margin: 16px 0 16px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.tutor-final-card p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.tutor-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 1100px) {
    .tutor-hero-grid,
    .tutor-benefits-grid {
        grid-template-columns: 1fr;
    }

    .tutor-hero-image {
        min-height: 420px;
    }

    .tutor-hero-image img {
        min-height: 420px;
    }

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

@media (max-width: 760px) {
    .tutor-hero {
        padding: 92px 0 60px;
    }

    .tutor-hero-content h1 {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .tutor-hero-content p {
        font-size: 16px;
    }

    .tutor-hero-actions,
    .tutor-final-actions {
        flex-direction: column;
    }

    .tutor-hero-actions .btn,
    .tutor-final-actions .btn {
        width: 100%;
    }

    .tutor-services-grid,
    .tutor-process-grid,
    .tutor-faq-grid {
        grid-template-columns: 1fr;
    }

    .tutor-stats-grid {
        grid-template-columns: 1fr;
    }

    .tutor-service-content,
    .tutor-process-card,
    .tutor-faq-card {
        padding: 24px;
    }

    .tutor-benefit-item {
        grid-template-columns: 1fr;
    }

    .tutor-final-card {
        padding: 34px 22px;
        border-radius: 28px;
    }
}

/* ================================
   Nutrition Services Page
================================ */

.nutrition-hero {
    position: relative;
    padding: 120px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(182, 35, 49, 0.10), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(34, 47, 91, 0.14), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.nutrition-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.42;
    pointer-events: none;
}

.nutrition-glow-red {
    width: 260px;
    height: 260px;
    background: rgba(182, 35, 49, 0.16);
    top: 70px;
    left: -90px;
}

.nutrition-glow-blue {
    width: 300px;
    height: 300px;
    background: rgba(34, 47, 91, 0.15);
    right: -120px;
    bottom: 20px;
}

.nutrition-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 60px;
    align-items: center;
}

.nutrition-hero-content h1 {
    margin: 18px 0 22px;
    color: #101936;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.nutrition-hero-content p {
    max-width: 660px;
    color: #586174;
    font-size: 18px;
    line-height: 1.8;
}

.nutrition-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.nutrition-hero-image {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #222f5b, #b62331);
    box-shadow: 0 30px 70px rgba(16, 25, 54, 0.20);
}

.nutrition-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.nutrition-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 25, 54, 0.03), rgba(16, 25, 54, 0.28));
    pointer-events: none;
}

.nutrition-hero-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.nutrition-hero-fallback span {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 30px;
    font-weight: 900;
}

.nutrition-hero-fallback strong {
    font-size: 28px;
    line-height: 1.2;
}

.nutrition-hero-fallback small {
    color: rgba(255, 255, 255, 0.78);
}

.nutrition-hero-image.image-missing .nutrition-hero-fallback {
    display: flex;
}

.nutrition-floating-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    width: calc(100% - 48px);
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 35px rgba(16, 25, 54, 0.18);
}

.nutrition-floating-card span {
    display: block;
    margin-bottom: 5px;
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nutrition-floating-card strong {
    display: block;
    color: #101936;
    font-size: 30px;
    font-weight: 900;
}

.nutrition-floating-card small {
    color: #667085;
    font-size: 13px;
}

.nutrition-stats-section {
    padding: 28px 0;
    background: #ffffff;
}

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

.nutrition-stat-card {
    padding: 26px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.nutrition-stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: #222f5b;
    font-size: 30px;
    font-weight: 900;
}

.nutrition-stat-card span {
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.nutrition-sub-services {
    background: #f7f9ff;
}

.nutrition-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.nutrition-service-card {
    overflow: hidden;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 25, 54, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nutrition-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(16, 25, 54, 0.13);
}

.nutrition-service-image {
    position: relative;
    min-height: 240px;
    background: linear-gradient(135deg, #222f5b, #b62331);
    overflow: hidden;
}

.nutrition-service-image img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
}

.nutrition-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(16, 25, 54, 0.33));
    pointer-events: none;
}

.nutrition-image-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.nutrition-image-fallback span {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 24px;
    font-weight: 900;
}

.nutrition-service-image.image-missing .nutrition-image-fallback {
    display: flex;
}

.nutrition-price-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #b62331;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(16, 25, 54, 0.18);
}

.nutrition-service-content {
    padding: 26px;
}

.nutrition-service-content h3 {
    margin-bottom: 12px;
    color: #101936;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
}

.nutrition-service-content p {
    margin-bottom: 20px;
    color: #586174;
    line-height: 1.75;
}

.nutrition-service-content ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.nutrition-service-content li {
    position: relative;
    padding-left: 28px;
    color: #30384a;
    font-size: 15px;
    font-weight: 700;
}

.nutrition-service-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(182, 35, 49, 0.10);
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
}

.nutrition-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #222f5b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nutrition-service-btn:hover {
    transform: translateY(-2px);
    background: #b62331;
}

.nutrition-pricing-note {
    max-width: 900px;
    margin: 28px auto 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.nutrition-benefits {
    background: #ffffff;
}

.nutrition-benefits-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.nutrition-benefits-content h2 {
    margin: 14px 0 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.nutrition-benefits-content p {
    margin-bottom: 26px;
    color: #586174;
    font-size: 17px;
    line-height: 1.8;
}

.nutrition-benefits-list {
    display: grid;
    gap: 16px;
}

.nutrition-benefit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.nutrition-benefit-item > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(182, 35, 49, 0.10);
    color: #b62331;
    font-weight: 900;
}

.nutrition-benefit-item h3 {
    margin-bottom: 6px;
    color: #101936;
    font-size: 19px;
    font-weight: 900;
}

.nutrition-benefit-item p {
    color: #667085;
    line-height: 1.65;
}

.nutrition-process {
    background: #f7f9ff;
}

.nutrition-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.nutrition-process-card {
    padding: 30px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(16, 25, 54, 0.07);
}

.nutrition-process-card span {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: #222f5b;
    color: #ffffff;
    font-weight: 900;
}

.nutrition-process-card h3 {
    margin-bottom: 10px;
    color: #101936;
    font-size: 21px;
    font-weight: 900;
}

.nutrition-process-card p {
    color: #667085;
    line-height: 1.7;
}

.nutrition-faq {
    background: #ffffff;
}

.nutrition-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.nutrition-faq-card {
    padding: 28px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.nutrition-faq-card h3 {
    margin-bottom: 10px;
    color: #101936;
    font-size: 20px;
    font-weight: 900;
}

.nutrition-faq-card p {
    color: #667085;
    line-height: 1.7;
}

.nutrition-final-cta {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(182, 35, 49, 0.18), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #222f5b, #101936);
}

.nutrition-final-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.nutrition-final-card .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.nutrition-final-card h2 {
    margin: 16px 0 16px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.nutrition-final-card p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.nutrition-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 1100px) {
    .nutrition-hero-grid,
    .nutrition-benefits-grid {
        grid-template-columns: 1fr;
    }

    .nutrition-hero-image {
        min-height: 420px;
    }

    .nutrition-hero-image img {
        min-height: 420px;
    }

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

@media (max-width: 760px) {
    .nutrition-hero {
        padding: 92px 0 60px;
    }

    .nutrition-hero-content h1 {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .nutrition-hero-content p {
        font-size: 16px;
    }

    .nutrition-hero-actions,
    .nutrition-final-actions {
        flex-direction: column;
    }

    .nutrition-hero-actions .btn,
    .nutrition-final-actions .btn {
        width: 100%;
    }

    .nutrition-services-grid,
    .nutrition-process-grid,
    .nutrition-faq-grid,
    .nutrition-stats-grid {
        grid-template-columns: 1fr;
    }

    .nutrition-service-content,
    .nutrition-process-card,
    .nutrition-faq-card {
        padding: 24px;
    }

    .nutrition-benefit-item {
        grid-template-columns: 1fr;
    }

    .nutrition-final-card {
        padding: 34px 22px;
        border-radius: 28px;
    }
}

/* ================================
   AI Consultancy Services Page
================================ */

.ai-hero {
    position: relative;
    padding: 120px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(182, 35, 49, 0.10), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(34, 47, 91, 0.14), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.ai-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.42;
    pointer-events: none;
}

.ai-glow-red {
    width: 260px;
    height: 260px;
    background: rgba(182, 35, 49, 0.16);
    top: 70px;
    left: -90px;
}

.ai-glow-blue {
    width: 300px;
    height: 300px;
    background: rgba(34, 47, 91, 0.15);
    right: -120px;
    bottom: 20px;
}

.ai-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 60px;
    align-items: center;
}

.ai-hero-content h1 {
    margin: 18px 0 22px;
    color: #101936;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.ai-hero-content p {
    max-width: 660px;
    color: #586174;
    font-size: 18px;
    line-height: 1.8;
}

.ai-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.ai-hero-image {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #222f5b, #b62331);
    box-shadow: 0 30px 70px rgba(16, 25, 54, 0.20);
}

.ai-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.ai-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 25, 54, 0.03), rgba(16, 25, 54, 0.28));
    pointer-events: none;
}

.ai-hero-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.ai-hero-fallback span {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 30px;
    font-weight: 900;
}

.ai-hero-fallback strong {
    font-size: 28px;
    line-height: 1.2;
}

.ai-hero-fallback small {
    color: rgba(255, 255, 255, 0.78);
}

.ai-hero-image.image-missing .ai-hero-fallback {
    display: flex;
}

.ai-floating-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    width: calc(100% - 48px);
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 35px rgba(16, 25, 54, 0.18);
}

.ai-floating-card span {
    display: block;
    margin-bottom: 5px;
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.ai-floating-card strong {
    display: block;
    color: #101936;
    font-size: 30px;
    font-weight: 900;
}

.ai-floating-card small {
    color: #667085;
    font-size: 13px;
}

.ai-stats-section {
    padding: 28px 0;
    background: #ffffff;
}

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

.ai-stat-card {
    padding: 26px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.ai-stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: #222f5b;
    font-size: 30px;
    font-weight: 900;
}

.ai-stat-card span {
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.ai-sub-services {
    background: #f7f9ff;
}

.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.ai-service-card {
    overflow: hidden;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 25, 54, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(16, 25, 54, 0.13);
}

.ai-service-image {
    position: relative;
    min-height: 255px;
    background: linear-gradient(135deg, #222f5b, #b62331);
    overflow: hidden;
}

.ai-service-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.ai-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(16, 25, 54, 0.33));
    pointer-events: none;
}

.ai-image-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.ai-image-fallback span {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 24px;
    font-weight: 900;
}

.ai-service-image.image-missing .ai-image-fallback {
    display: flex;
}

.ai-price-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #b62331;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(16, 25, 54, 0.18);
}

.ai-service-content {
    padding: 26px;
}

.ai-service-content h3 {
    margin-bottom: 12px;
    color: #101936;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
}

.ai-service-content p {
    margin-bottom: 20px;
    color: #586174;
    line-height: 1.75;
}

.ai-service-content ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.ai-service-content li {
    position: relative;
    padding-left: 28px;
    color: #30384a;
    font-size: 15px;
    font-weight: 700;
}

.ai-service-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(182, 35, 49, 0.10);
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
}

.ai-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #222f5b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ai-service-btn:hover {
    transform: translateY(-2px);
    background: #b62331;
}

.ai-pricing-note {
    max-width: 900px;
    margin: 28px auto 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

.ai-benefits {
    background: #ffffff;
}

.ai-benefits-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.ai-benefits-content h2 {
    margin: 14px 0 18px;
    color: #101936;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.ai-benefits-content p {
    margin-bottom: 26px;
    color: #586174;
    font-size: 17px;
    line-height: 1.8;
}

.ai-benefits-list {
    display: grid;
    gap: 16px;
}

.ai-benefit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.ai-benefit-item > span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(182, 35, 49, 0.10);
    color: #b62331;
    font-weight: 900;
}

.ai-benefit-item h3 {
    margin-bottom: 6px;
    color: #101936;
    font-size: 19px;
    font-weight: 900;
}

.ai-benefit-item p {
    color: #667085;
    line-height: 1.65;
}

.ai-process {
    background: #f7f9ff;
}

.ai-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.ai-process-card {
    padding: 30px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(16, 25, 54, 0.07);
}

.ai-process-card span {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: #222f5b;
    color: #ffffff;
    font-weight: 900;
}

.ai-process-card h3 {
    margin-bottom: 10px;
    color: #101936;
    font-size: 21px;
    font-weight: 900;
}

.ai-process-card p {
    color: #667085;
    line-height: 1.7;
}

.ai-faq {
    background: #ffffff;
}

.ai-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.ai-faq-card {
    padding: 28px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 25, 54, 0.06);
}

.ai-faq-card h3 {
    margin-bottom: 10px;
    color: #101936;
    font-size: 20px;
    font-weight: 900;
}

.ai-faq-card p {
    color: #667085;
    line-height: 1.7;
}

.ai-final-cta {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(182, 35, 49, 0.18), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #222f5b, #101936);
}

.ai-final-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.ai-final-card .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.ai-final-card h2 {
    margin: 16px 0 16px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.ai-final-card p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.ai-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 1100px) {
    .ai-hero-grid,
    .ai-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ai-hero-image {
        min-height: 420px;
    }

    .ai-hero-image img {
        min-height: 420px;
    }

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

@media (max-width: 760px) {
    .ai-hero {
        padding: 92px 0 60px;
    }

    .ai-hero-content h1 {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .ai-hero-content p {
        font-size: 16px;
    }

    .ai-hero-actions,
    .ai-final-actions {
        flex-direction: column;
    }

    .ai-hero-actions .btn,
    .ai-final-actions .btn {
        width: 100%;
    }

    .ai-services-grid,
    .ai-process-grid,
    .ai-faq-grid,
    .ai-stats-grid {
        grid-template-columns: 1fr;
    }

    .ai-service-content,
    .ai-process-card,
    .ai-faq-card {
        padding: 24px;
    }

    .ai-benefit-item {
        grid-template-columns: 1fr;
    }

    .ai-final-card {
        padding: 34px 22px;
        border-radius: 28px;
    }
}

.policy-section {
    background: #f7f9ff;
}

.policy-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 46px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 25, 54, 0.08);
}

.policy-meta {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(182, 35, 49, 0.08);
}

.policy-meta span {
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.policy-meta strong {
    color: #101936;
    font-size: 15px;
    font-weight: 900;
}

.policy-content h2 {
    margin: 34px 0 12px;
    color: #101936;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 16px;
    color: #586174;
    font-size: 16px;
    line-height: 1.8;
}

.policy-content ul {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.policy-content li {
    position: relative;
    padding-left: 28px;
    color: #30384a;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
}

.policy-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(182, 35, 49, 0.10);
    color: #b62331;
    font-size: 12px;
    font-weight: 900;
}

.policy-contact-box {
    margin-top: 24px;
    padding: 24px;
    border-radius: 22px;
    background: #f7f9ff;
    border: 1px solid rgba(34, 47, 91, 0.10);
}

.policy-contact-box p {
    margin-bottom: 8px;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

.policy-contact-box a {
    color: #b62331;
    font-weight: 800;
    text-decoration: none;
}

.policy-contact-box a:hover {
    color: #222f5b;
}

@media (max-width: 760px) {
    .policy-card {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .policy-content h2 {
        font-size: 23px;
    }
}

/* =====================================================
   CSS-Only Mobile Navigation
===================================================== */

.mobile-menu-checkbox,
.mobile-nav-panel {
    display: none;
}

@media (max-width: 920px) {

    .header-container {
        position: relative;
    }

    .main-navigation {
        display: none !important;
    }

    .header-cta {
        display: none !important;
    }

    .mobile-menu-checkbox {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: 0;
        padding: 0;
        opacity: 0;
        overflow: hidden;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 10002;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(34, 47, 91, 0.12);
        border-radius: 12px;
        background: #ffffff;
        cursor: pointer;
        touch-action: manipulation;
        box-shadow: 0 8px 20px rgba(16, 25, 54, 0.08);
    }

    .mobile-menu-toggle span {
        display: block;
        width: 23px;
        height: 2px;
        border-radius: 10px;
        background: #222f5b;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .mobile-menu-checkbox:checked
        ~ .header-actions
        .mobile-menu-toggle
        span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-checkbox:checked
        ~ .header-actions
        .mobile-menu-toggle
        span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-checkbox:checked
        ~ .header-actions
        .mobile-menu-toggle
        span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        z-index: 10001;
        display: none;
        flex-direction: column;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 100px);
        padding: 16px;
        overflow-y: auto;
        border: 1px solid rgba(34, 47, 91, 0.1);
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 25px 55px rgba(16, 25, 54, 0.18);
        transform: translateX(-50%);
    }

    .mobile-menu-checkbox:checked ~ .mobile-nav-panel {
        display: flex;
    }

    .mobile-nav-panel > a,
    .mobile-services-details > summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 16px;
        border: 0;
        border-radius: 12px;
        background: transparent;
        color: #222f5b;
        font-family: inherit;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.4;
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-nav-panel > a:hover,
    .mobile-nav-panel > a.active,
    .mobile-services-details > summary:hover {
        background: rgba(182, 35, 49, 0.08);
        color: #b62331;
    }

    .mobile-services-details {
        width: 100%;
    }

    .mobile-services-details > summary {
        list-style: none;
    }

    .mobile-services-details > summary::-webkit-details-marker {
        display: none;
    }

    .mobile-summary-arrow {
        transition: transform 0.25s ease;
    }

    .mobile-services-details[open] .mobile-summary-arrow {
        transform: rotate(180deg);
    }

    .mobile-services-list {
        display: grid;
        gap: 5px;
        margin: 4px 0 8px;
        padding: 8px;
        border-radius: 14px;
        background: #f7f9ff;
    }

    .mobile-services-list a {
        display: block;
        padding: 12px 14px;
        border-radius: 10px;
        color: #30384a;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4;
        text-decoration: none;
    }

    .mobile-services-list a:hover {
        background: #ffffff;
        color: #b62331;
    }

    .mobile-nav-panel .mobile-nav-cta {
        justify-content: center;
        margin-top: 10px;
        background: #b62331;
        color: #ffffff;
        text-align: center;
    }

    .mobile-nav-panel .mobile-nav-cta:hover {
        background: #222f5b;
        color: #ffffff;
    }
}

@media (min-width: 921px) {
    .mobile-menu-toggle,
    .mobile-nav-panel,
    .mobile-menu-checkbox {
        display: none !important;
    }
}


/* =====================================================
   Mobile Sticky Header
===================================================== */

@media (max-width: 920px) {
    html,
    body {
        overflow-x: clip;
    }

    .site-header {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999 !important;
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 6px 20px rgba(16, 25, 54, 0.08);
    }

    .header-container {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
}

 
/* =====================================================
   Team Profile Buttons and Popup
===================================================== */

.team-member-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-profile-btn {
    width: fit-content;
    min-height: 44px;
    margin-top: auto;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(182, 35, 49, 0.18);
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.08);
    color: var(--red);
    font-size: 13.5px;
    font-weight: 850;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.team-profile-btn span {
    transition: transform 0.25s ease;
}

.team-profile-btn:hover {
    transform: translateY(-2px);
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.team-profile-btn:hover span {
    transform: translateX(3px);
}

body.team-modal-open {
    overflow: hidden;
}

.team-profile-modal[hidden] {
    display: none !important;
}

.team-profile-modal {
    position: fixed;
    inset: 0;
    z-index: 200000;
    padding: 22px;
    display: grid;
    place-items: center;
}

.team-profile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 38, 0.76);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.team-profile-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 1050px);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 38px 110px rgba(7, 13, 31, 0.36);
}

.team-profile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(34, 47, 91, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--blue);
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(16, 25, 54, 0.13);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.team-profile-close:hover {
    transform: rotate(90deg);
    background: var(--red);
    color: #ffffff;
}

.team-profile-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    min-height: 560px;
}

 
/* Popup image with label directly below it */
.team-profile-photo {
    position: relative;
    min-height: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 16px;
    overflow: hidden;
    background:transparent;
}

.team-profile-photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 560px;
    display: block;
    object-fit: contain;
    object-position: center top;
    border-radius: 24px;
}

/* Remove full-image dark overlay */
.team-profile-photo::after {
    display: none;
}

/* Label now appears immediately below the image */
.team-profile-photo-label {
    position: static;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(16, 25, 54, 0.10);
}

.team-profile-photo-label span {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-profile-photo-label strong {
    display: block;
    color: var(--blue);
    font-size: 17px;
    line-height: 1.3;
}




.team-profile-details {
    padding: 48px;
}

.team-profile-kicker {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.09);
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.team-profile-details h2 {
    margin-bottom: 7px;
    padding-right: 45px;
    color: #101936;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.team-profile-role {
    margin-bottom: 22px;
    color: var(--red);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
}

.team-profile-summary {
    margin-bottom: 14px;
    color: #5c6780;
    font-size: 15px;
    line-height: 1.75;
}

.team-profile-stats {
    margin: 26px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.team-profile-stats div {
    padding: 17px 13px;
    border: 1px solid rgba(34, 47, 91, 0.09);
    border-radius: 18px;
    background: #f7f9fd;
    text-align: center;
}

.team-profile-stats strong {
    display: block;
    margin-bottom: 5px;
    color: var(--red);
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
}

.team-profile-stats span {
    display: block;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.35;
    font-weight: 700;
}

.team-profile-section {
    margin-top: 26px;
}

.team-profile-section h3 {
    margin-bottom: 13px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 900;
}

.team-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-profile-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(34, 47, 91, 0.09);
    border-radius: 999px;
    background: #f7f9fd;
    color: #46536d;
    font-size: 12px;
    font-weight: 750;
}

.team-profile-highlights {
    display: grid;
    gap: 10px;
}

.team-profile-highlights li {
    position: relative;
    padding-left: 25px;
    color: #556178;
    font-size: 14px;
    line-height: 1.6;
}

.team-profile-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--red);
    font-weight: 900;
}

.team-profile-contact-note {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid rgba(34, 47, 91, 0.09);
    border-radius: 20px;
    background: #f7f9fd;
}

.team-profile-contact-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 16px;
}

.team-profile-contact-note p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.team-profile-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

@media (max-width: 820px) {
    .team-profile-modal {
        padding: 12px;
    }

    .team-profile-dialog {
        max-height: calc(100vh - 24px);
        border-radius: 24px;
    }

    .team-profile-layout {
        grid-template-columns: 1fr;
    }

   .team-profile-photo { padding: 16px; gap: 14px; } 
    .team-profile-photo img { max-height: 460px; }

    .team-profile-details {
        padding: 34px 24px;
    }

    .team-profile-close {
        position: fixed;
        top: 22px;
        right: 22px;
    }
}

@media (max-width: 540px) {
  .team-profile-photo { padding: 12px; } .team-profile-photo img { max-height: 390px; border-radius: 18px; } .team-profile-photo-label { padding: 16px; border-radius: 16px; }
    .team-profile-details {
        padding: 30px 20px;
    }

    .team-profile-details h2 {
        font-size: 34px;
    }

    .team-profile-stats {
        grid-template-columns: 1fr;
    }

    .team-profile-actions {
        flex-direction: column;
    }

    .team-profile-actions .btn {
        width: 100%;
    }
}
 
 
/* =====================================================
   Team Profile Button
===================================================== */

.team-member-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member-content > p {
    margin-bottom: 22px;
}

.team-profile-btn {
    width: fit-content;
    min-height: 44px;
    margin-top: 0px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(182, 35, 49, 0.20);
    border-radius: 999px;
    background: rgba(182, 35, 49, 0.08);
    color: var(--red);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.team-profile-btn span {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.team-profile-btn:hover {
    transform: translateY(-2px);
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(182, 35, 49, 0.22);
}

.team-profile-btn:hover span {
    transform: translateX(3px);
}

.team-profile-btn:focus-visible {
    outline: 3px solid rgba(182, 35, 49, 0.20);
    outline-offset: 3px;
}

.error-page-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(182, 35, 49, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.error-page-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 40px;
    text-align: center;
    border: 1px solid rgba(34, 47, 91, 0.10);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(16, 25, 54, 0.10);
}

.error-page-card h1 {
    margin: 14px 0 16px;
    color: var(--blue);
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    font-weight: 900;
}

.error-page-card p {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.error-page-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 540px) {
    .error-page-card {
        padding: 50px 22px;
        border-radius: 24px;
    }
}
