/* =========================================================
   CAREMORE LIMITED — WEBSITE STYLES
   Brand: Deep Teal + Purple + White + Dark
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --teal: #0D6173;
    --teal-dark: #084653;
    --teal-deep: #062F39;

    --purple: #9136A1;
    --purple-dark: #72277F;
    --purple-light: #B66AC2;

    --white: #FFFFFF;
    --off-white: #F7F9FA;
    --light-grey: #EEF2F3;

    --text: #17252A;
    --text-light: #5E6A6E;
    --border: #DCE4E6;

    --container: 1180px;

    --shadow-sm: 0 8px 25px rgba(6, 47, 57, 0.06);
    --shadow-md: 0 20px 50px rgba(6, 47, 57, 0.10);
    --shadow-lg: 0 30px 80px rgba(6, 47, 57, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 26px;

    --transition: 0.3s ease;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}


/* =========================================================
   3. GLOBAL UTILITIES
========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section-padding {
    padding: 120px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;

    color: var(--purple);

    margin-bottom: 22px;
}

.section-label span {
    width: 32px;
    height: 2px;
    background: var(--purple);
    display: inline-block;
}

.light-label {
    color: rgba(255, 255, 255, 0.8);
}

.light-label span {
    background: var(--purple-light);
}

h1,
h2,
h3,
h4 {
    line-height: 1.15;
}

h2 {
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -2px;
}

h2 em {
    font-style: normal;
    color: var(--teal);
}

.section-intro {
    max-width: 760px;
}

.section-intro.centered {
    margin: 0 auto 70px;
    text-align: center;
}

.section-intro.centered .section-label {
    justify-content: center;
}

.section-intro.centered p {
    max-width: 650px;
    margin: 25px auto 0;
    color: var(--text-light);
}


/* =========================================================
   4. HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(220, 228, 230, 0.7);

    transition: var(--transition);
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo {
    width: 155px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.nav-link {
    position: relative;

    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);

    padding: 8px 0;

    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--purple);

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--teal);
    color: var(--white);

    padding: 13px 22px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;

    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--purple);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: none;
    background: var(--light-grey);

    border-radius: 50%;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--teal);
    transition: var(--transition);
}


/* =========================================================
   5. HERO
========================================================= */

.hero {
    position: relative;
    min-height: 850px;

    padding-top: 82px;

    background:
        radial-gradient(circle at 85% 20%, rgba(145, 54, 161, 0.17), transparent 32%),
        radial-gradient(circle at 70% 80%, rgba(13, 97, 115, 0.18), transparent 30%),
        var(--teal-deep);

    color: var(--white);

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.7);

    margin-bottom: 28px;
}

.eyebrow::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--purple-light);
}

.hero h1 {
    font-size: clamp(52px, 6vw, 82px);
    letter-spacing: -4px;

    max-width: 800px;

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    color: var(--purple-light);
}

.hero-description {
    max-width: 650px;

    color: rgba(255,255,255,0.72);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;

    transition: var(--transition);

    border: 1px solid transparent;
}

.btn span {
    font-size: 18px;
    line-height: 0;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(145, 54, 161, 0.28);
}

.btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--teal);
    transform: translateY(-3px);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 45px;

    font-size: 11px;
    font-weight: 700;

    color: rgba(255,255,255,0.5);

    letter-spacing: 0.5px;
}

.location-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--purple-light);

    box-shadow: 0 0 0 5px rgba(182,106,194,0.12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.orbit-one {
    width: 500px;
    height: 500px;
}

.orbit-two {
    width: 350px;
    height: 350px;

    border-color: rgba(145,54,161,0.25);
}

.main-card {
    position: relative;
    z-index: 3;

    width: min(100%, 350px);

    padding: 40px;

    border-radius: 28px;

    background:
        linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));

    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(20px);

    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}

.card-number {
    display: block;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    color: var(--purple-light);

    margin-bottom: 40px;
}

.card-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(145,54,161,0.18);

    color: var(--purple-light);

    font-size: 34px;

    margin-bottom: 28px;
}

.main-card h3 {
    font-size: 27px;
    margin-bottom: 15px;
}

.main-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

.floating-card {
    position: absolute;
    z-index: 4;

    display: flex;
    flex-direction: column;

    padding: 20px 23px;

    border-radius: 16px;

    background: var(--white);
    color: var(--text);

    box-shadow: var(--shadow-lg);
}

.floating-card strong {
    font-size: 25px;
    color: var(--teal);
}

.floating-card span {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-card-one {
    top: 65px;
    right: 0;
}

.floating-card-two {
    bottom: 65px;
    left: 0;
}

.hero-scroll {
    position: absolute;
    z-index: 3;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255,255,255,0.4);

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}


/* =========================================================
   6. STATS
========================================================= */

.stats-section {
    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    min-height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid var(--border);
}

.stat-item:first-child {
    border-left: 1px solid var(--border);
}

.stat-item strong {
    font-size: 38px;
    color: var(--teal);

    letter-spacing: -1px;
}

.stat-item span {
    margin-top: 3px;

    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;

    color: var(--text-light);
}


/* =========================================================
   7. ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.section-intro h2 {
    max-width: 800px;
}

.about-grid {
    margin-top: 75px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;

    align-items: center;
}

.about-text {
    max-width: 650px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 22px;
    font-size: 15px;
}

.about-text .lead-text {
    color: var(--text);
    font-size: 20px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-top: 18px;

    color: var(--teal);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;

    border-bottom: 1px solid var(--teal);

    padding-bottom: 5px;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--purple);
    border-color: var(--purple);
    gap: 18px;
}

.about-highlight {
    position: relative;

    padding: 48px;

    border-radius: 24px;

    background:
        linear-gradient(145deg, var(--teal-deep), var(--teal));

    color: var(--white);

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.about-highlight::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    bottom: -90px;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 50%;
}

.highlight-top {
    display: flex;
    justify-content: space-between;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    color: rgba(255,255,255,0.55);

    margin-bottom: 55px;
}

.highlight-number {
    color: var(--purple-light);
}

.about-highlight h3 {
    position: relative;
    z-index: 2;

    font-size: 28px;

    line-height: 1.45;
}

.highlight-line {
    width: 50px;
    height: 2px;

    background: var(--purple-light);

    margin: 35px 0 25px;
}

.about-highlight p {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,0.65);

    font-size: 13px;
}


/* =========================================================
   8. MISSION
========================================================= */

.mission-section {
    padding: 0 0 120px;

    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.mission-card {
    padding: 50px;

    background: var(--off-white);

    border-top: 3px solid var(--teal);
}

.vision-card {
    border-top-color: var(--purple);

    background: #FBF8FC;
}

.mission-label {
    display: block;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    color: var(--teal);

    margin-bottom: 25px;
}

.vision-card .mission-label {
    color: var(--purple);
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}


/* =========================================================
   9. SERVICES
========================================================= */

.services-section {
    background: var(--off-white);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 0.7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.services-header p {
    color: var(--text-light);
    font-size: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 360px;

    padding: 34px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition: var(--transition);
}

.service-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: linear-gradient(90deg, var(--teal), var(--purple));

    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

    border-color: transparent;
}

.service-card:hover::after {
    width: 100%;
}

.featured-service {
    background:
        linear-gradient(145deg, var(--teal-deep), var(--teal));

    color: var(--white);

    border-color: transparent;
}

.service-number {
    position: absolute;

    top: 25px;
    right: 28px;

    font-size: 11px;
    font-weight: 800;

    color: var(--purple);
}

.featured-service .service-number {
    color: var(--purple-light);
}

.service-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: rgba(13,97,115,0.08);

    color: var(--teal);

    font-size: 25px;

    margin-bottom: 28px;
}

.featured-service .service-icon {
    background: rgba(255,255,255,0.1);
    color: var(--purple-light);
}

.service-card h3 {
    max-width: 270px;

    font-size: 21px;

    margin-bottom: 17px;
}

.service-card p {
    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}

.featured-service p {
    color: rgba(255,255,255,0.65);
}

.service-card a {
    position: absolute;

    bottom: 30px;
    left: 34px;

    font-size: 11px;
    font-weight: 800;

    color: var(--teal);

    transition: var(--transition);
}

.featured-service a {
    color: var(--purple-light);
}

.service-card:hover a {
    letter-spacing: 0.5px;
}


/* =========================================================
   10. WHO WE SERVE
========================================================= */

.clients-section {
    background: var(--teal-deep);

    color: var(--white);

    position: relative;

    overflow: hidden;
}

.clients-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.05);
}

.clients-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

.clients-heading h2 {
    font-size: clamp(38px, 4vw, 58px);
}

.clients-heading h2 em {
    color: var(--purple-light);
}

.clients-heading p {
    margin-top: 25px;

    color: rgba(255,255,255,0.6);

    max-width: 450px;
}

.client-list {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.client-item {
    display: grid;
    grid-template-columns: 50px 1fr;

    align-items: center;

    min-height: 92px;

    border-bottom: 1px solid rgba(255,255,255,0.12);

    transition: var(--transition);
}

.client-item span {
    color: var(--purple-light);

    font-size: 11px;
    font-weight: 800;
}

.client-item h3 {
    font-size: 18px;

    font-weight: 600;

    transition: var(--transition);
}

.client-item:hover {
    padding-left: 10px;
}

.client-item:hover h3 {
    color: var(--purple-light);
}


/* =========================================================
   11. APPROACH
========================================================= */

.approach-section {
    background: var(--white);
}

.approach-flow {
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;

    align-items: center;

    margin-bottom: 60px;
}

.approach-step {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 18px;

    min-height: 200px;

    transition: var(--transition);
}

.approach-step:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.approach-step > span {
    color: var(--purple);

    font-size: 11px;
    font-weight: 800;
}

.approach-step h3 {
    margin: 22px 0 10px;

    font-size: 20px;
}

.approach-step p {
    color: var(--text-light);

    font-size: 12px;
}

.approach-connector {
    height: 1px;
    background: var(--border);
}

.approach-result {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 32px 38px;

    border-radius: 18px;

    background: var(--off-white);

    border-left: 3px solid var(--purple);
}

.approach-result div:first-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.approach-result span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    color: var(--purple);
}

.approach-result strong {
    max-width: 850px;

    font-size: 16px;
}

.result-arrow {
    font-size: 35px;
    color: var(--teal);
}


/* =========================================================
   12. REGIONAL EXPERIENCE
========================================================= */

.regional-section {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg, rgba(6,47,57,0.98), rgba(6,47,57,0.78)),
        var(--teal-deep);

    color: var(--white);

    overflow: hidden;
}

.regional-background {
    position: absolute;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);

    width: 650px;
    height: 650px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.07);

    box-shadow:
        0 0 0 80px rgba(255,255,255,0.015),
        0 0 0 160px rgba(255,255,255,0.012);
}

.regional-content {
    position: relative;
    z-index: 2;
}

.regional-content h2 {
    font-size: clamp(50px, 6vw, 80px);

    max-width: 850px;

    letter-spacing: -3px;
}

.regional-content h2 em {
    color: var(--purple-light);
}

.regional-content > p {
    max-width: 600px;

    margin: 30px 0 45px;

    color: rgba(255,255,255,0.6);
}

.countries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.countries span {
    padding: 10px 18px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.16);

    color: rgba(255,255,255,0.8);

    font-size: 11px;
    font-weight: 700;

    transition: var(--transition);
}

.countries span:hover {
    background: var(--purple);
    border-color: var(--purple);
}


/* =========================================================
   13. TEAM
========================================================= */

.team-section {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.team-content {
    max-width: 620px;
}

.team-content p {
    color: var(--text-light);

    margin: 25px 0;
}

.team-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.team-stat {
    min-height: 190px;

    padding: 35px;

    border-radius: 18px;

    background: var(--white);

    border: 1px solid var(--border);

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: var(--transition);
}

.team-stat:last-child {
    grid-column: span 2;

    background: var(--teal-deep);
    color: var(--white);
}

.team-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.team-stat strong {
    font-size: 48px;

    color: var(--teal);

    letter-spacing: -2px;
}

.team-stat:last-child strong {
    color: var(--purple-light);
}

.team-stat span {
    margin-top: 4px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    color: var(--text-light);
}

.team-stat:last-child span {
    color: rgba(255,255,255,0.55);
}


/* =========================================================
   14. CTA
========================================================= */

.cta-section {
    position: relative;

    background:
        linear-gradient(110deg, var(--purple-dark), var(--purple));

    color: var(--white);

    overflow: hidden;
}

.cta-container {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.cta-label {
    display: block;

    margin-bottom: 22px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;

    color: rgba(255,255,255,0.65);
}

.cta-content h2 {
    font-size: clamp(45px, 5vw, 70px);

    letter-spacing: -3px;
}

.cta-content h2 em {
    color: rgba(255,255,255,0.62);
}

.cta-content p {
    max-width: 600px;

    margin: 25px 0 32px;

    color: rgba(255,255,255,0.72);
}

.btn-white {
    background: var(--white);
    color: var(--purple-dark);
}

.btn-white:hover {
    background: var(--teal-deep);
    color: var(--white);

    transform: translateY(-3px);
}

.cta-shape {
    position: absolute;

    right: -200px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 0 0 80px rgba(255,255,255,0.025),
        0 0 0 160px rgba(255,255,255,0.02);
}


/* =========================================================
   15. CONTACT
========================================================= */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

.contact-info {
    max-width: 520px;
}

.contact-info > p {
    color: var(--text-light);

    margin: 28px 0 45px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(13,97,115,0.08);

    color: var(--teal);

    font-size: 17px;
}

.contact-item small {
    display: block;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: var(--purple);

    margin-bottom: 5px;
}

.contact-item p {
    font-size: 13px;
    color: var(--text);
}

.contact-item a {
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--purple);
}

.contact-card {
    padding: 45px;

    background: var(--off-white);

    border-radius: 24px;

    border: 1px solid var(--border);
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 35px;
}

.contact-card-header span {
    color: var(--purple);

    font-size: 11px;
    font-weight: 800;
}

.contact-card-header p {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 800;

    color: var(--text);

    letter-spacing: 0.4px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: var(--white);

    color: var(--text);

    font-size: 13px;

    outline: none;

    transition: var(--transition);

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);

    box-shadow: 0 0 0 3px rgba(145,54,161,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A5AFB2;
}

.form-submit {
    border: none;

    cursor: pointer;

    width: auto;
}

.form-note {
    margin-top: 14px;

    font-size: 10px;

    color: var(--text-light);
}


/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
    background: #041F27;

    color: var(--white);

    padding-top: 75px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;

    gap: 60px;

    padding-bottom: 65px;
}

.footer-logo {
    display: block;

    width: 155px;

    margin-bottom: 22px;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 300px;

    color: rgba(255,255,255,0.5);

    font-size: 12px;

    line-height: 1.8;
}

.footer-region {
    display: inline-block;

    margin-top: 20px;

    color: var(--purple-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--white);
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,0.45);

    font-size: 11px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--purple-light);
}

.footer-column p {
    margin-top: 8px;

    line-height: 1.7;
}

.footer-bottom {
    min-height: 75px;

    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    font-size: 9px;

    color: rgba(255,255,255,0.3);

    letter-spacing: 0.3px;
}


/* =========================================================
   17. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 20px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-visual {
        transform: scale(0.9);
    }

    .about-grid,
    .team-grid,
    .contact-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-flow {
        grid-template-columns: 1fr 30px 1fr;
        gap: 15px;
    }

    .approach-step:nth-of-type(5),
    .approach-step:nth-of-type(6),
    .approach-step:nth-of-type(7) {
        margin-top: 15px;
    }

    .footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: span 3;
    }
}


/* =========================================================
   18. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 30px, var(--container));
    }

    .section-padding {
        padding: 80px 0;
    }


    /* Header */

    .nav-container {
        min-height: 72px;
    }

    .logo {
        width: 130px;
    }

    .main-nav {
        position: absolute;

        top: 72px;
        left: 15px;
        right: 15px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: var(--white);

        border-radius: 16px;

        box-shadow: var(--shadow-lg);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: var(--transition);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 15px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }


    /* Hero */

    .hero {
        min-height: auto;

        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .hero h1 {
        font-size: clamp(45px, 13vw, 64px);

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 420px;

        transform: none;
    }

    .orbit-one {
        width: 350px;
        height: 350px;
    }

    .orbit-two {
        width: 260px;
        height: 260px;
    }

    .main-card {
        width: 290px;
        padding: 32px;
    }

    .floating-card-one {
        right: 0;
        top: 25px;
    }

    .floating-card-two {
        left: 0;
        bottom: 25px;
    }

    .hero-scroll {
        display: none;
    }


    /* Stats */

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        min-height: 120px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-left: 1px solid var(--border);
    }

    .stat-item strong {
        font-size: 30px;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        margin-top: 50px;

        gap: 45px;
    }

    .about-text .lead-text {
        font-size: 18px;
    }

    .about-highlight {
        padding: 35px;
    }

    .about-highlight h3 {
        font-size: 23px;
    }


    /* Mission */

    .mission-section {
        padding-bottom: 80px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 35px;
    }

    .mission-card p {
        font-size: 16px;
    }


    /* Services */

    .services-header {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
    }


    /* Clients */

    .clients-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .client-item h3 {
        font-size: 16px;
    }


    /* Approach */

    .approach-flow {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .approach-connector {
        display: none;
    }

    .approach-step {
        min-height: auto;
    }

    .approach-result {
        align-items: flex-start;
        gap: 20px;

        padding: 25px;
    }


    /* Regional */

    .regional-section {
        min-height: 520px;
    }

    .regional-content h2 {
        font-size: clamp(45px, 12vw, 65px);
    }

    .regional-background {
        width: 450px;
        height: 450px;

        right: -280px;
    }


    /* Team */

    .team-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .team-stat:last-child {
        grid-column: auto;
    }


    /* CTA */

    .cta-container {
        min-height: 500px;
    }

    .cta-content h2 {
        font-size: clamp(43px, 11vw, 62px);
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* Footer */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;
    }

    .footer-column:last-child {
        grid-column: span 2;
    }

    .footer-bottom {
        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;
    }

}


/* =========================================================
   19. SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .main-card {
        width: 260px;
    }

    .floating-card {
        padding: 15px 17px;
    }

    .floating-card strong {
        font-size: 20px;
    }

    .stat-item strong {
        font-size: 26px;
    }

    .stat-item span {
        font-size: 8px;
    }

    h2 {
        letter-spacing: -1.5px;
    }

}


/* =========================================================
   20. BASIC ANIMATIONS
========================================================= */

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

.floating-card-one {
    animation: float 5s ease-in-out infinite;
}

.floating-card-two {
    animation: float 5s ease-in-out infinite 1.5s;
}


/* =========================================================
   21. ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(145,54,161,0.35);
    outline-offset: 3px;
}

/* =========================================================
   22. VISUAL POLISH — STEP 6A
========================================================= */

/* Smooth page rendering */
html {
    scroll-behavior: smooth;
}

/* Slightly stronger section transitions */
.about-section,
.services-section,
.approach-section,
.team-section,
.contact-section {
    position: relative;
}

/* Subtle service-card refinement */
.service-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Make service icons feel more premium */
.service-icon {
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.04);
    background: rgba(145, 54, 161, 0.10);
}

/* Approach cards */
.approach-step {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.approach-step:hover {
    transform: translateY(-7px);
}

/* Mission cards */
.mission-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

/* Client list interaction */
.client-item {
    cursor: default;
}

/* Contact card refinement */
.contact-card {
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Better form inputs */
.form-group input,
.form-group textarea {
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #C4CED1;
}

/* CTA button polish */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-primary,
.btn-white,
.nav-cta {
    will-change: transform;
}

/* Footer links */
.footer-column a {
    position: relative;
    width: fit-content;
}

/* Better text-link arrow movement */
.text-link span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

/* Slight hero-card movement */
.main-card {
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.main-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 45px 110px rgba(0, 0, 0, 0.30);
}

/* Improve floating cards */
.floating-card {
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

/* Accessibility — respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   MOBILE MENU — POLISH
========================================================= */

@media (max-width: 760px) {

    .menu-toggle {
        position: relative;
        z-index: 1002;
    }

    .main-nav {
        z-index: 1001;
    }

    .menu-toggle span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .main-nav.active + .nav-cta + .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .main-nav.active + .nav-cta + .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .main-nav.active + .nav-cta + .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}

/* =========================================================
   23. SCROLL REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Staggered animation for cards */

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

/* =========================================================
   22. SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}