/* ========================================
   IBS CONSULT - MAIN STYLESHEET
   Based on Requirements.txt specifications
   ======================================== */

/* CSS Variables - IBS Consult Color Palette */
:root {
    /* Primary Colors from Requirements */
    --primary-navy: #0D2B5E;
    --primary-sky: #1E6FBF;
    --primary-gold: #F4A700;
    
    /* Secondary Colors */
    --light-blue: #E8F2FC;
    --accent-blue: #4A90D9;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --dark-text: #1A1A2E;
    --gray-text: #5A6A7A;
    --light-gray: #F6F9FC;
    --border-gray: #E2E8F0;
    
    /* Typography - Asap for headings + DM Sans for body */
    --font-heading: 'Asap', sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    --space-4xl: 7rem;
    --space-5xl: 10rem;
    
    /* Container Widths */
    --container-large: 1294px;
    --container-x-large: 1280px;
    --container-big: 1164px;
    --container-x-big: 1114px;
    --container-medium: 1000px;
    --container-x-medium: 924px;
    --container-small: 728px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-default: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Shadows */
    --shadow-sm: 0 0.2rem 2.3rem rgba(13, 43, 94, 0.08);
    --shadow-md: 0 4px 20px rgba(13, 43, 94, 0.12);
    --shadow-lg: 0 8px 30px rgba(13, 43, 94, 0.15);
    --shadow-gold: 0 4px 20px rgba(244, 167, 0, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-default);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: var(--space-md);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-large);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--x-large {
    max-width: var(--container-x-large);
}

.container--big {
    max-width: var(--container-big);
}

.container--x-big {
    max-width: var(--container-x-big);
}

.container--medium {
    max-width: var(--container-medium);
}

.container--x-medium {
    max-width: var(--container-x-medium);
}

.container--small {
    max-width: var(--container-small);
}

/* ========================================
   ICONS - SVG Icon System
   ======================================== */
.icon {
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-sm {
    width: 1.6rem;
    height: 1.6rem;
}

.icon-lg {
    width: 3.2rem;
    height: 3.2rem;
}

.icon-xl {
    width: 4.8rem;
    height: 4.8rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Adjust body to account for fixed header */
body {
    padding-top: 0;
}

.header__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12rem;
}

.header__logo img {
    height: 10rem;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.header__content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__nav li {
    display: flex;
    align-items: center;
}

.header__nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.header__nav a.header__phone {
    color: var(--primary-sky);
    gap: var(--space-xs);
    padding: 0.8rem 1.6rem;
    background-color: var(--light-blue);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--primary-sky);
}

.header__nav a.header__phone:hover {
    color: var(--white);
    background-color: var(--primary-sky);
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-sky);
    transition: var(--transition-default);
}

.header__nav a.header__phone::after {
    display: none;
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    transition: var(--transition-default);
    cursor: pointer;
}

.cta:hover {
    background-color: #e09500;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cta--secondary {
    background-color: var(--primary-sky);
    color: var(--white);
}

.cta--secondary:hover {
    background-color: var(--primary-navy);
}

.cta--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    transition: var(--transition-default);
    cursor: pointer;
}

.cta--outline:hover {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.cta--outline-blue {
    background-color: transparent;
    color: var(--primary-sky);
    border: 2px solid var(--primary-sky);
}

.cta--outline-blue:hover {
    background-color: var(--primary-sky);
    color: var(--white);
}

.cta-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-sky);
    transition: var(--transition-default);
}

.cta-arrow:hover {
    color: var(--primary-navy);
    gap: var(--space-md);
}

.cta-arrow svg {
    width: 2rem;
    height: 2rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: transparent;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

/* Hero decorative shapes - professional responsive design */
.hero__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

/* Large organic blob - top right */
.hero__shape--blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 70%;
    height: 90%;
    background: linear-gradient(135deg, rgba(30, 111, 191, 0.08) 0%, rgba(13, 43, 94, 0.04) 100%);
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(-10deg);
}

/* Secondary blob - middle right */
.hero__shape--blob2 {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 45%;
    height: 60%;
    background: linear-gradient(225deg, rgba(244, 167, 0, 0.06) 0%, rgba(30, 111, 191, 0.03) 100%);
    border-radius: 50% 60% 40% 70% / 60% 40% 70% 40%;
}

/* Circle decoration 1 */
.hero__shape--circle1 {
    position: absolute;
    top: 8%;
    right: 35%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(30, 111, 191, 0.12);
    border-radius: 50%;
}

/* Circle decoration 2 - filled */
.hero__shape--circle2 {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 111, 191, 0.1) 0%, rgba(13, 43, 94, 0.05) 100%);
    border-radius: 50%;
}

/* Gold accent dot */
.hero__shape--dot {
    position: absolute;
    top: 12%;
    right: 28%;
    width: 24px;
    height: 24px;
    background: rgba(244, 167, 0, 0.25);
    border-radius: 50%;
}

/* Small outlined circle */
.hero__shape--circle3 {
    position: absolute;
    top: 50%;
    right: 8%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(13, 43, 94, 0.08);
    border-radius: 50%;
}

/* Diamond shape */
.hero__shape--diamond {
    position: absolute;
    top: 20%;
    right: 42%;
    width: 30px;
    height: 30px;
    background: rgba(30, 111, 191, 0.1);
    transform: rotate(45deg);
}

/* Curved line */
.hero__shape--curve {
    position: absolute;
    top: 5%;
    right: 22%;
    width: 100px;
    height: 100px;
    border-top: 2px solid rgba(30, 111, 191, 0.1);
    border-right: 2px solid rgba(30, 111, 191, 0.1);
    border-radius: 0 100% 0 0;
}

/* Banner Animations */
@keyframes bannerFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes bannerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bannerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

@keyframes bannerSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px);
    }
}

@keyframes bannerBlobMorph {
    0%, 100% {
        border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        border-radius: 40% 60% 50% 70% / 60% 40% 50% 60%;
    }
}

/* Apply animations to banner shapes */
.hero__shape--blob {
    animation: bannerBlobMorph 15s ease-in-out infinite;
}

.hero__shape--circle1 {
    animation: bannerRotate 30s linear infinite;
}

.hero__shape--circle2 {
    animation: bannerFloat 8s ease-in-out infinite;
}

.hero__shape--dot {
    animation: bannerPulse 3s ease-in-out infinite;
}

.hero__shape--diamond {
    animation: bannerRotate 20s linear infinite;
}

/* Animate decorative icons in banners */
.hero svg {
    animation: bannerFloat 6s ease-in-out infinite;
}

.hero svg:nth-child(2) {
    animation: bannerFloat 8s ease-in-out infinite 1s;
}

.hero svg:nth-child(3) {
    animation: bannerFloat 7s ease-in-out infinite 2s;
}

/* Hero picture on the right side */
.hero__picture {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 700px;
    z-index: 1;
}

.hero__picture img {
    width: 100%;
    height: auto;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 55%;
    padding-right: var(--space-xl);
}

.hero__title {
    font-size: 5.2rem;
    color: var(--primary-navy);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.hero__subtitle {
    font-size: 1.9rem;
    color: var(--gray-text);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Tagline - Creative replacement for stats */
.hero__tagline {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-gray);
    position: relative;
}

.hero__tagline-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
}

.hero__tagline-part {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
}

.hero__tagline-accent {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    position: relative;
}

.hero__tagline-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.hero__tagline-highlight {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    background: var(--primary-gold);
    padding: 0.2rem 1rem;
    border-radius: var(--radius-sm);
    transform: rotate(-2deg);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(244, 167, 0, 0.3);
}

/* SVG Circle Drawing Animation */
.hero__tagline-circled {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.circle-draw {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 145%;
    height: 170%;
    pointer-events: none;
    z-index: 0;
}

.circle-path {
    animation: drawStroke 2.5s ease-in-out forwards 1s;
}

@keyframes drawStroke {
    from {
        stroke-dashoffset: 500;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    to {
        stroke-dashoffset: 0;
        opacity: 0.85;
    }
}

/* Pulse animation after drawing */
@keyframes circlePulseAfter {
    0%, 100% {
        opacity: 0.85;
        stroke-width: 3.5;
    }
    50% {
        opacity: 1;
        stroke-width: 4;
    }
}

.circle-path {
    animation: drawStroke 2.5s ease-in-out forwards 1s, circlePulseAfter 3s ease-in-out infinite 3.5s;
}


.hero__tagline-decoration {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.hero__tagline-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-sky);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.hero__tagline-dot--gold {
    background: var(--primary-gold);
    width: 12px;
    height: 12px;
    animation-delay: 0.5s;
}

.hero__tagline-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-sky) 0%, var(--primary-gold) 50%, transparent 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.hero__tagline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: lineShine 3s ease-in-out infinite;
}

@keyframes lineShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}



/* Responsive adjustments for hero tagline */
@media (max-width: 768px) {
    .hero__tagline {
        padding-top: var(--space-lg);
    }
    
    .hero__tagline-part {
        font-size: 1.8rem;
    }
    
    .hero__tagline-accent {
        font-size: 2.2rem;
    }
    
    .hero__tagline-highlight {
        font-size: 2rem;
    }
}

/* ========================================
   FEATURES SECTION (5 Cards)
   ======================================== */
.features {
    padding: 0 0 var(--space-2xl) 0;
    background: var(--white);
}

.features__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.features__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.features__title-text {
    font-size: 3rem;
    font-weight: 500;
}

.features__title .highlight-word {
    font-size: 3rem;
    font-weight: 700;
}

.features__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border-gray);
}

.feature:last-child {
    border-bottom: none;
}

.feature:nth-child(even) .feature__content {
    order: 2;
}

.feature:nth-child(even) .feature__visual {
    order: 1;
}

.feature__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.feature__image {
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Feature Decorative Shapes */
.feature__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
}

.feature__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.feature__shape {
    position: absolute;
    opacity: 0.6;
}

/* Feature 1 - Creation (Blue blob shapes) */
.feature__shape--1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(30, 111, 191, 0.15) 0%, rgba(13, 43, 94, 0.08) 100%);
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
    top: 10%;
    right: 5%;
    transform: rotate(-15deg);
}

.feature__shape--2 {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(30, 111, 191, 0.2);
    border-radius: 50%;
    top: 5%;
    left: 15%;
}

.feature__shape--3 {
    width: 60px;
    height: 60px;
    background: rgba(244, 167, 0, 0.15);
    border-radius: 50%;
    bottom: 15%;
    right: 20%;
}

/* Feature 2 - Suivi (Gold accent shapes) */
.feature__shape--4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(225deg, rgba(244, 167, 0, 0.12) 0%, rgba(30, 111, 191, 0.06) 100%);
    border-radius: 50% 60% 40% 70% / 60% 40% 70% 40%;
    top: 15%;
    left: 10%;
}

.feature__shape--5 {
    width: 80px;
    height: 80px;
    background: rgba(30, 111, 191, 0.1);
    border-radius: 50%;
    top: 5%;
    right: 25%;
}

.feature__shape--6 {
    width: 40px;
    height: 40px;
    background: rgba(244, 167, 0, 0.2);
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
}

/* Feature 3 - Declarations (Navy geometric shapes) */
.feature__shape--7 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(13, 43, 94, 0.08) 0%, rgba(30, 111, 191, 0.04) 100%);
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    top: 5%;
    right: 0;
    transform: rotate(10deg);
}

.feature__shape--8 {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(13, 43, 94, 0.15);
    border-radius: 50%;
    bottom: 10%;
    left: 10%;
}

.feature__shape--9 {
    width: 50px;
    height: 50px;
    background: rgba(30, 111, 191, 0.12);
    border-radius: 50%;
    top: 20%;
    left: 5%;
}

/* Feature 4 - Digital (Modern tech shapes) */
.feature__shape--10 {
    width: 260px;
    height: 260px;
    background: linear-gradient(180deg, rgba(30, 111, 191, 0.1) 0%, rgba(232, 242, 252, 0.5) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 5%;
}

.feature__shape--11 {
    width: 70px;
    height: 70px;
    border: 3px dashed rgba(30, 111, 191, 0.2);
    border-radius: 50%;
    top: 5%;
    right: 20%;
}

.feature__shape--12 {
    width: 30px;
    height: 30px;
    background: rgba(244, 167, 0, 0.25);
    border-radius: 50%;
    bottom: 25%;
    right: 15%;
}

/* Feature 5 - Conseil (Warm human shapes) */
.feature__shape--13 {
    width: 270px;
    height: 270px;
    background: linear-gradient(135deg, rgba(244, 167, 0, 0.1) 0%, rgba(30, 111, 191, 0.05) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 8%;
    right: 10%;
    transform: rotate(-10deg);
}

.feature__shape--14 {
    width: 90px;
    height: 90px;
    background: rgba(13, 43, 94, 0.08);
    border-radius: 50%;
    bottom: 15%;
    left: 15%;
}

.feature__shape--15 {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(244, 167, 0, 0.3);
    border-radius: 50%;
    top: 15%;
    left: 10%;
}

/* Animate shapes on scroll */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.feature__shape--1,
.feature__shape--4,
.feature__shape--7,
.feature__shape--10,
.feature__shape--13 {
    animation: float 6s ease-in-out infinite;
}

.feature__shape--3,
.feature__shape--6,
.feature__shape--9,
.feature__shape--12,
.feature__shape--15 {
    animation: pulse 4s ease-in-out infinite;
}

.feature__icon-wrap {
    width: 200px;
    height: 200px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon-wrap svg {
    width: 100px;
    height: 100px;
    color: var(--primary-sky);
}

.feature__subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-sky);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.feature__title {
    font-size: 3.2rem;
    margin-bottom: var(--space-md);
    color: var(--primary-navy);
}

.feature__text {
    font-size: 1.7rem;
    color: var(--gray-text);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.feature__list {
    margin-bottom: var(--space-xl);
}

.feature__list li {
    position: relative;
    padding-left: 2.8rem;
    margin-bottom: var(--space-md);
    font-size: 1.6rem;
    color: var(--gray-text);
}

.feature__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1.8rem;
    height: 1.8rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231E6FBF' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center no-repeat;
    background-size: contain;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: var(--space-4xl) 0;
    background: var(--light-blue);
}

.stats__content {
    text-align: center;
}

.stats__title {
    font-size: 3.6rem;
    margin-bottom: var(--space-3xl);
}

.stats__title span {
    color: var(--primary-sky);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat__item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat__icon {
    width: 6rem;
    height: 6rem;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.stat__icon svg {
    width: 3rem;
    height: 3rem;
    color: var(--primary-sky);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
}

.stat__label {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-top: var(--space-sm);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.why-us__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.why-us__title {
    font-size: 3.6rem;
    color: var(--primary-navy);
    margin-bottom: var(--space-md);
}

.why-us__title span {
    color: var(--primary-gold);
}

/* Animated Circle Highlight */
.highlight-word {
    position: relative;
    display: inline-block;
    color: var(--primary-navy);
    font-weight: 700;
    padding: 0 1.5rem;
}

.highlight-word::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 110%;
    height: 130%;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: circleDrawIn 2s ease-out forwards;
    animation-delay: 0.5s;
}

.highlight-word::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(5deg);
    width: 115%;
    height: 135%;
    border: 2px solid var(--primary-sky);
    border-radius: 50%;
    opacity: 0;
    animation: circleDrawIn 2s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes circleDrawIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-5deg) scale(0.5);
        stroke-dasharray: 0 1000;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) rotate(-5deg) scale(1);
        stroke-dasharray: 1000 1000;
    }
}

/* Continuous subtle pulse animation */
@keyframes circlePulse {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-5deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) rotate(-5deg) scale(1.05);
        opacity: 0.8;
    }
}

.highlight-word::before {
    animation: circleDrawIn 2s ease-out forwards, circlePulse 3s ease-in-out infinite 2.5s;
}

.highlight-word::after {
    animation: circleDrawIn 2s ease-out forwards 0.3s, circlePulse 3s ease-in-out infinite 2.8s;
}


.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.why-us__item {
    text-align: center;
    padding: var(--space-xl);
}

.why-us__icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us__icon svg {
    width: 6rem;
    height: 6rem;
    color: var(--primary-navy);
}

.why-us__subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
}

.why-us__text {
    font-size: 1.6rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ========================================
   SERVICES SECTION - For Services Page
   ======================================== */
.services-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.services-section__header {
    text-align: left;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
}

.services-section__subtitle {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gray-text);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: var(--space-sm);
}

.services-section__title {
    font-size: 4.2rem;
    color: var(--primary-navy);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.services-section__desc {
    font-size: 1.7rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.services-section__desc strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.services-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.services-section__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition-default);
    box-shadow: var(--shadow-sm);
}

.services-section__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Staggered layout - odd cards lower, even cards higher */
.services-section__card:nth-child(odd) {
    margin-top: 4rem;
}

.services-section__card:nth-child(even) {
    margin-top: 0;
}

.services-section__icon {
    width: 7rem;
    height: 7rem;
    background: var(--primary-sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: var(--transition-default);
}

.services-section__card:hover .services-section__icon {
    background: var(--primary-navy);
    transform: scale(1.05);
}

.services-section__icon svg {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--white);
    fill: var(--white);
}

.services-section__card-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.services-section__card-text {
    font-size: 1.5rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.services-section__card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-text);
    transition: var(--transition-default);
}

.services-section__card-link:hover {
    color: var(--primary-sky);
    gap: var(--space-md);
}

.services-section__card-link svg {
    width: 1.8rem;
    height: 1.8rem;
}

/* Responsive adjustments for services section */
@media (max-width: 1024px) {
    .services-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-section__card:nth-child(odd),
    .services-section__card:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .services-section__grid {
        grid-template-columns: 1fr;
    }
    
    .services-section__title {
        font-size: 3.2rem;
    }
}

.why-us__text strong {
    color: var(--primary-navy);
    font-weight: 600;
}

@media (max-width: 992px) {
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .why-us__title {
        font-size: 2.8rem;
    }
    
    .why-us__item {
        padding: var(--space-md);
    }
}

/* ========================================
   PRICING CARDS - New Design with Shapes
   ======================================== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gray);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Decorative gradient overlay */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sky) 0%, var(--primary-navy) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Decorative circle background */
.pricing-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 111, 191, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.pricing-card:hover::after {
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(30, 111, 191, 0.12) 0%, transparent 70%);
}

.pricing-card:hover {
    box-shadow: 0 12px 32px rgba(13, 43, 94, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary-sky);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

/* Decorative shapes */
.pricing-card__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.pricing-card__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.pricing-card__shape--1 {
    width: 150px;
    height: 150px;
    background: var(--primary-sky);
    top: -40px;
    right: -40px;
}

.pricing-card__shape--2 {
    width: 100px;
    height: 100px;
    background: var(--primary-navy);
    bottom: 20%;
    left: -30px;
}

.pricing-card__shape--3 {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    top: 30%;
    right: 10%;
    opacity: 0.15;
}

/* Featured card (Confort) */
.pricing-card--featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a6e 100%) !important;
    border-color: var(--primary-navy);
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(13, 43, 94, 0.25);
    position: relative;
    z-index: 2;
}

.pricing-card--featured .pricing-card__header,
.pricing-card--featured .pricing-card__price-section,
.pricing-card--featured .pricing-card__features,
.pricing-card--featured .pricing-card__btn,
.pricing-card--featured .pricing-card__badge {
    position: relative;
    z-index: 10;
}

.pricing-card--featured .pricing-card__title,
.pricing-card--featured .pricing-card__subtitle,
.pricing-card--featured .pricing-card__from,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .price-amount,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__features li {
    color: white !important;
}

.pricing-card--featured::before {
    background: linear-gradient(90deg, var(--primary-gold) 0%, #ffd700 100%);
    opacity: 1;
    height: 5px;
    z-index: 1;
}

.pricing-card--featured::after {
    background: radial-gradient(circle, rgba(244, 167, 0, 0.15) 0%, transparent 70%);
    top: -80px;
    right: -80px;
    z-index: 2;
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 48px rgba(13, 43, 94, 0.3);
}

.pricing-card__badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffd700 100%);
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    z-index: 11;
    box-shadow: 0 4px 16px rgba(244, 167, 0, 0.4);
    white-space: nowrap;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(244, 167, 0, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(244, 167, 0, 0.6);
    }
}

.pricing-card__header {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.pricing-card__dot {
    width: 12px;
    height: 12px;
    background: var(--primary-navy);
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
}

.pricing-card__title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: var(--space-xs);
}

.pricing-card__subtitle {
    font-size: 1.4rem;
    color: var(--gray-text);
    display: block;
}

.pricing-card__price-section {
    text-align: center;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.pricing-card--featured .pricing-card__price-section {
    border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-card__from {
    font-size: 1.4rem;
    color: var(--gray-text);
    margin-bottom: var(--space-xs);
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.pricing-card__period {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gray-text);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1.5rem;
    color: var(--gray-text);
}

.pricing-card__features li svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-sky);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__btn {
    display: block;
    width: 100%;
    padding: 1.4rem 2rem;
    background: var(--primary-navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-default);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.pricing-card__btn:hover {
    background: var(--primary-sky);
    transform: translateY(-2px);
}

.pricing-card__btn--white {
    background: var(--white);
    color: var(--primary-navy);
}

.pricing-card__btn--white:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

/* Responsive adjustments for pricing cards */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card--featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }
}

/* ========================================
   TRUST STATS SECTION
   ======================================== */
.trust-stats {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a6e 100%);
    position: relative;
    overflow: hidden;
}

.trust-stats__shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.trust-stats__shape {
    position: absolute;
    opacity: 0.1;
}

.trust-stats__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--primary-gold);
    border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.trust-stats__shape--2 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--white);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    animation: pulse 6s ease-in-out infinite;
}

.trust-stats__shape--3 {
    width: 150px;
    height: 150px;
    background: var(--primary-sky);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.trust-stats__shape--4 {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    transform: rotate(45deg);
    bottom: 20%;
    right: 15%;
    animation: pulse 5s ease-in-out infinite;
}

.trust-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.trust-stats__item {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
    transition: transform 0.3s ease;
}

.trust-stats__item:hover {
    transform: translateY(-10px);
}

.trust-stats__number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.trust-stats__number--small {
    font-size: 3.5rem;
}

.trust-stats__label {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.trust-stats__sublabel {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.trust-stats__sublabel--gold {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.6rem;
}

.trust-stats__line {
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    margin: var(--space-md) auto 0;
    transition: width 0.3s ease;
}

.trust-stats__item:hover .trust-stats__line {
    width: 80px;
}

/* Highlight item - Digital */
.trust-stats__item--highlight {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stats__badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
}

/* Featured item - 24h Response */
.trust-stats__item--featured {
    background: var(--primary-gold);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.trust-stats__item--featured .trust-stats__number,
.trust-stats__item--featured .trust-stats__label {
    color: var(--primary-navy);
}

.trust-stats__item--featured .trust-stats__sublabel {
    color: var(--primary-navy);
    opacity: 0.9;
}

.trust-stats__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto var(--space-sm);
    color: var(--primary-navy);
}

.trust-stats__icon svg {
    width: 100%;
    height: 100%;
}

.trust-stats__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-md);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .trust-stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .trust-stats__number {
        font-size: 3.5rem;
    }
    
    .trust-stats__shape--1,
    .trust-stats__shape--2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .trust-stats__grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats__item {
        padding: var(--space-lg);
    }
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    padding: var(--space-4xl) 0;
    background: var(--light-gray);
}

.team__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.team__subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-sky);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.team__title {
    font-size: 3.6rem;
}

.team__member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-xl);
}

.team__photo {
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.team__info {
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team__name {
    font-size: 2.8rem;
    margin-bottom: var(--space-xs);
}

.team__role {
    font-size: 1.8rem;
    color: var(--primary-sky);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.team__desc {
    font-size: 1.6rem;
    color: var(--gray-text);
    line-height: 1.8;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.testimonials__title {
    font-size: 3.6rem;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: var(--space-3xl);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.testimonial__avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
}

.testimonial__content {
    position: relative;
}

.testimonial__quote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--primary-navy);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: 3rem;
}

.testimonial__quote::before {
    content: '"';
    font-size: 8rem;
    color: var(--primary-sky);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: 0;
    font-family: Georgia, serif;
}

.testimonial__author {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.testimonial__role {
    font-size: 1.5rem;
    color: var(--gray-text);
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
    padding: var(--space-4xl) 0;
    background: var(--light-gray);
}

.blog__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.blog__title {
    font-size: 3.2rem;
    margin-bottom: var(--space-md);
}

.blog__subtitle {
    font-size: 1.8rem;
    color: var(--gray-text);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog__card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-default);
}

.blog__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog__image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog__content {
    padding: var(--space-lg);
}

.blog__category {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-sky);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.blog__card-title {
    font-size: 1.9rem;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.blog__excerpt {
    font-size: 1.5rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.blog__meta {
    font-size: 1.4rem;
    color: var(--text-light);
}

.blog__footer {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a6e 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.cta-banner__title {
    color: var(--white);
    font-size: 3.6rem;
    margin-bottom: var(--space-md);
}

.cta-banner__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    margin-bottom: var(--space-xl);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
}

.footer__main {
    padding: var(--space-4xl) 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

.footer__brand img {
    height: 8rem;
    margin-bottom: var(--space-md);
    max-width: 280px;
    object-fit: contain;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.footer__title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-body);
    font-weight: 700;
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
}

.footer__links a:hover {
    color: var(--primary-gold);
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.footer__contact a {
    color: var(--white);
}

.footer__contact a:hover {
    color: var(--primary-gold);
}

.footer__certification {
    margin-top: var(--space-lg);
}

.footer__certification img {
    height: 6rem;
    width: auto;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
}

.footer__legal a:hover {
    color: var(--white);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a6e 100%);
    padding: calc(var(--space-4xl) + 12rem) 0 var(--space-3xl);
    text-align: center;
}

.page-hero__title {
    color: var(--white);
    font-size: 4.2rem;
    margin-bottom: var(--space-md);
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-size: 1.4rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb__separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__current {
    color: var(--white);
}

/* ========================================
   PRICING CARDS
   ======================================== */

/* Pricing Section Background */
.pricing-section {
    background: 
        linear-gradient(135deg, rgba(232, 242, 252, 0.5) 0%, transparent 50%),
        linear-gradient(-135deg, rgba(244, 167, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fc 30%, #f0f4f8 70%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(30, 111, 191, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(13, 43, 94, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.pricing-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.pricing-section__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(40px);
}

.pricing-section__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 111, 191, 0.2) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation: float 20s ease-in-out infinite;
}

.pricing-section__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 167, 0, 0.18) 0%, transparent 70%);
    top: 10%;
    right: -120px;
    animation: float 25s ease-in-out infinite reverse;
}

.pricing-section__shape--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(13, 43, 94, 0.12) 0%, transparent 70%);
    bottom: 5%;
    left: 8%;
    animation: float 30s ease-in-out infinite;
}

.pricing-section__shape--4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(30, 111, 191, 0.15) 0%, transparent 70%);
    bottom: -80px;
    right: 12%;
    animation: float 22s ease-in-out infinite reverse;
}

.pricing-section__shape--5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 167, 0, 0.2) 0%, transparent 70%);
    top: 45%;
    left: 45%;
    animation: pulse-shape 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 15px) scale(1.02);
    }
}

@keyframes pulse-shape {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* Decorative dots pattern */
.pricing-section__dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(30, 111, 191, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(244, 167, 0, 0.12) 2px, transparent 2px);
    background-size: 50px 50px, 70px 70px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
    z-index: 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.pricing__card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--border-gray);
    overflow: hidden;
}

/* Decorative top bar */
.pricing__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sky) 0%, var(--primary-navy) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing__card:hover::before {
    opacity: 1;
}

/* Decorative background circle */
.pricing__card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 111, 191, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.pricing__card:hover::after {
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(30, 111, 191, 0.1) 0%, transparent 70%);
}

.pricing__card:hover {
    box-shadow: 0 12px 32px rgba(13, 43, 94, 0.15);
    border-color: var(--primary-sky);
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.pricing__card--featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a6e 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(13, 43, 94, 0.25);
    border-color: var(--primary-navy);
    z-index: 2;
}

.pricing__card--featured * {
    position: relative;
    z-index: 3;
}

.pricing__card--featured::before {
    background: linear-gradient(90deg, var(--primary-gold) 0%, #ffd700 100%);
    opacity: 1;
    height: 5px;
    z-index: 1;
}

.pricing__card--featured::after {
    background: radial-gradient(circle, rgba(244, 167, 0, 0.12) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
    z-index: 1;
}

.pricing__card--featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 48px rgba(13, 43, 94, 0.3);
}

.pricing__card--featured .pricing__title,
.pricing__card--featured .pricing__price,
.pricing__card--featured .pricing__description,
.pricing__card--featured .pricing__features li {
    color: var(--white) !important;
    z-index: 3;
}

.pricing__card--featured .pricing__title,
.pricing__card--featured .pricing__price,
.pricing__card--featured .pricing__features li {
    color: var(--white);
}

.pricing__badge {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffd700 100%);
    color: var(--primary-navy);
    padding: 0.6rem 1.6rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(244, 167, 0, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.pricing__title {
    font-size: 2.4rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.pricing__description {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.pricing__card--featured .pricing__description {
    color: rgba(255, 255, 255, 0.8);
}

.pricing__price {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 1;
}

.pricing__price span {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gray-text);
}

.pricing__card--featured .pricing__price span {
    color: rgba(255, 255, 255, 0.8);
}

.pricing__features {
    margin: var(--space-xl) 0;
    position: relative;
    z-index: 1;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 1.5rem;
}

.pricing__card--featured .pricing__features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing__features li svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-sky);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pricing__card:hover .pricing__features li svg {
    transform: scale(1.1);
}

.pricing__card--featured .pricing__features li svg {
    color: var(--primary-gold);
}

/* ========================================
   ACTIVITY SELECTOR
   ======================================== */
.activity-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.activity__card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Creative decorative element */
.activity__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--light-blue) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.activity__card:hover {
    border-color: var(--primary-sky);
    background: var(--light-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(13, 43, 94, 0.15);
}

.activity__card:hover::before {
    opacity: 0.3;
    top: -20%;
    right: -20%;
}

.activity__card--selected {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a6e 100%);
    border-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(13, 43, 94, 0.25);
}

.activity__card--selected::before {
    opacity: 0.2;
    background: linear-gradient(135deg, transparent 0%, var(--primary-gold) 100%);
    top: -20%;
    right: -20%;
}

.activity__card--selected .activity__title,
.activity__card--selected .activity__description {
    color: var(--white);
}

/* Fix for inline styled elements */
.activity__card--selected h3,
.activity__card--selected p {
    color: var(--white) !important;
}

.activity__icon {
    width: 6rem;
    height: 6rem;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.activity__card:hover .activity__icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-sky);
}

.activity__icon svg {
    width: 3rem;
    height: 3rem;
    color: var(--primary-sky);
    transition: all 0.4s ease;
}

.activity__card:hover .activity__icon svg {
    color: var(--white);
    transform: scale(1.1);
}

.activity__card--selected .activity__icon {
    background: var(--primary-gold);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(244, 167, 0, 0.4);
}

.activity__card--selected .activity__icon svg {
    color: var(--primary-navy);
}

.activity__title {
    font-size: 1.9rem;
    margin-bottom: var(--space-xs);
}

.activity__description {
    font-size: 1.4rem;
    color: var(--gray-text);
}

.activity__check {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 2.8rem;
    height: 2.8rem;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-default);
}

.activity__card--selected .activity__check {
    opacity: 1;
}

.activity__check svg {
    width: 1.6rem;
    height: 1.6rem;
    color: var(--primary-navy);
}

/* Activity Grid - Desktop Layout */
@media (min-width: 769px) {
    .activity-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .activity-grid {
        gap: var(--space-xl) !important;
    }
}

/* Disable transform on mobile for better performance */
@media (max-width: 768px) {
    .activity__card:hover,
    .activity__card--selected {
        transform: none !important;
    }
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--dark-text);
}

.form__label span {
    color: var(--primary);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 1.6rem;
    transition: var(--transition-default);
    background: var(--white);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-sky);
    box-shadow: 0 0 0 3px rgba(30, 111, 191, 0.1);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 1.4rem;
    color: var(--gray-text);
}

.form__checkbox input {
    margin-top: 0.3rem;
}

.form__checkbox a {
    color: var(--primary-sky);
    text-decoration: underline;
}

/* ========================================
   ACCORDION
   ======================================== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion__item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion__header {
    width: 100%;
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 600;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-text);
}

.accordion__header:hover {
    background: var(--light-gray);
}

.accordion__icon {
    width: 2rem;
    height: 2rem;
    transition: var(--transition-default);
}

.accordion__item--open .accordion__icon {
    transform: rotate(45deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__item--open .accordion__content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__body {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--gray-text);
    font-size: 1.5rem;
}

/* ========================================
   MOBILE RESPONSIVE FIXES - 5 Sections
   ======================================== */

/* Mobile First Base Styles */
@media (max-width: 768px) {
    /* Section 1: Hero - Mobile Fixes */
    .hero {
        min-height: auto !important;
        padding: 8rem 0 0 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hero__container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
    }
    
    .hero__picture {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        order: 1 !important;
    }
    
    .hero__picture img {
        width: 100% !important;
        height: auto !important;
        max-height: 300px !important;
        object-fit: cover !important;
        object-position: center top !important;
    }
    
    .hero__content {
        max-width: 100% !important;
        padding: var(--space-lg) var(--space-md) !important;
        text-align: center !important;
        order: 2 !important;
        background: linear-gradient(180deg, transparent 0%, var(--white) 10%) !important;
        margin-top: -2rem !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .hero__title {
        font-size: 2.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .hero__subtitle {
        font-size: 1.5rem !important;
        line-height: 1.5 !important;
        margin-bottom: var(--space-lg) !important;
    }
    
    .hero__cta {
        flex-direction: column !important;
        gap: var(--space-sm) !important;
        margin-bottom: var(--space-xl) !important;
    }
    
    .hero__cta .cta,
    .hero__cta .cta--outline {
        width: 100% !important;
        padding: 1.2rem 1.5rem !important;
        font-size: 1.5rem !important;
    }
    
    .hero__stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--space-sm) !important;
        padding-top: var(--space-lg) !important;
        margin-top: var(--space-lg) !important;
    }
    
    .hero__stat {
        padding: var(--space-xs) !important;
    }
    
    .hero__stat-number {
        font-size: 2rem !important;
    }
    
    .hero__stat-label {
        font-size: 1.1rem !important;
    }
    
    /* Section 2: Features (5 Pillars) - Mobile Fixes */
    .features {
        padding: 0 0 var(--space-2xl) 0 !important;
    }
    
    .features__title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .features__title-text {
        font-size: 2rem;
    }
    
    .features__title .highlight-word {
        font-size: 2.2rem;
    }
    
    .feature {
        display: flex !important;
        flex-direction: column !important;
        padding: var(--space-xl) 0 !important;
        gap: var(--space-lg) !important;
    }
    
    .feature__visual {
        order: -1 !important;
        min-height: 200px !important;
        width: 100% !important;
    }
    
    .feature__image {
        max-height: 200px !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .feature__content {
        text-align: center !important;
        padding: 0 var(--space-sm) !important;
    }
    
    .feature__subtitle {
        font-size: 1.2rem !important;
    }
    
    .feature__title {
        font-size: 2rem !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .feature__text {
        font-size: 1.5rem !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .feature__list {
        text-align: left !important;
        margin-bottom: var(--space-lg) !important;
    }
    
    .feature__list li {
        font-size: 1.4rem !important;
        padding-left: 2.4rem !important;
        margin-bottom: var(--space-sm) !important;
    }
    
    .feature__list li::before {
        width: 1.6rem !important;
        height: 1.6rem !important;
    }
    
    /* Section 3: Why Us - Mobile Fixes */
    .why-us {
        padding: var(--space-2xl) 0 !important;
    }
    
    .why-us__header {
        margin-bottom: var(--space-xl) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .why-us__title {
        font-size: 2.2rem !important;
    }
    
    .why-us__grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .why-us__item {
        padding: var(--space-md) !important;
    }
    
    .why-us__icon {
        width: 5rem !important;
        height: 5rem !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .why-us__icon svg {
        width: 3rem !important;
        height: 3rem !important;
    }
    
    .why-us__subtitle {
        font-size: 1.6rem !important;
    }
    
    .why-us__text {
        font-size: 1.4rem !important;
    }
    
    /* Section 4: Trust Stats - Mobile Fixes */
    .trust-stats {
        padding: var(--space-2xl) 0 !important;
    }
    
    .trust-stats__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-md) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .trust-stats__item {
        padding: var(--space-md) !important;
    }
    
    .trust-stats__item--featured {
        grid-column: span 2 !important;
    }
    
    .trust-stats__number {
        font-size: 2.8rem !important;
    }
    
    .trust-stats__number--small {
        font-size: 2.4rem !important;
    }
    
    .trust-stats__label {
        font-size: 1.3rem !important;
    }
    
    .trust-stats__sublabel {
        font-size: 1.2rem !important;
    }
    
    /* Section 5: Team - Mobile Fixes */
    .team {
        padding: var(--space-2xl) 0 !important;
    }
    
    .team__header {
        margin-bottom: var(--space-xl) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .team__subtitle {
        font-size: 1.2rem !important;
    }
    
    .team__title {
        font-size: 2.2rem !important;
    }
    
    .team__member {
        display: flex !important;
        flex-direction: column !important;
        margin: 0 var(--space-md) !important;
    }
    
    .team__photo {
        min-height: 250px !important;
        width: 100% !important;
    }
    
    .team__info {
        padding: var(--space-lg) !important;
    }
    
    .team__name {
        font-size: 2rem !important;
    }
    
    .team__role {
        font-size: 1.5rem !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .team__desc {
        font-size: 1.4rem !important;
    }
    
    .team__desc p {
        margin-bottom: var(--space-sm) !important;
    }
    
    /* Section 6: Testimonials - Mobile Fixes */
    .testimonials {
        padding: var(--space-2xl) 0 !important;
    }
    
    .testimonials__header {
        margin-bottom: var(--space-xl) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .testimonials__title {
        font-size: 2.2rem !important;
    }
    
    .testimonial {
        display: flex !important;
        flex-direction: column !important;
        padding: var(--space-lg) !important;
        margin: 0 var(--space-md) !important;
        text-align: center !important;
    }
    
    .testimonial__avatar {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .testimonial__quote {
        font-size: 1.6rem !important;
        padding-left: 0 !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .testimonial__quote::before {
        display: none !important;
    }
    
    .testimonial__author {
        font-size: 1.5rem !important;
    }
    
    .testimonial__role {
        font-size: 1.3rem !important;
    }
    
    /* Section 7: Blog - Mobile Fixes */
    .blog {
        padding: var(--space-2xl) 0 !important;
    }
    
    .blog__header {
        margin-bottom: var(--space-xl) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .blog__title {
        font-size: 2.2rem !important;
    }
    
    .blog__subtitle {
        font-size: 1.5rem !important;
    }
    
    .blog__grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .blog__card {
        max-width: 100% !important;
    }
    
    .blog__image {
        height: 180px !important;
    }
    
    .blog__content {
        padding: var(--space-md) !important;
    }
    
    .blog__category {
        font-size: 1.2rem !important;
    }
    
    .blog__card-title {
        font-size: 1.7rem !important;
    }
    
    .blog__excerpt {
        font-size: 1.4rem !important;
    }
    
    .blog__footer {
        margin-top: var(--space-lg) !important;
    }
    
    /* Section 8: CTA Banner - Mobile Fixes */
    .cta-banner {
        padding: var(--space-2xl) var(--space-md) !important;
    }
    
    .cta-banner__title {
        font-size: 2.2rem !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .cta-banner__text {
        font-size: 1.5rem !important;
        margin-bottom: var(--space-lg) !important;
    }
    
    .cta-banner .cta {
        width: 100% !important;
        max-width: 300px !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Hero - Small Mobile */
    .hero__picture img {
        max-height: 220px !important;
    }
    
    .hero__title {
        font-size: 2rem !important;
    }
    
    .hero__subtitle {
        font-size: 1.4rem !important;
    }
    
    .hero__stat-number {
        font-size: 1.8rem !important;
    }
    
    .hero__stat-label {
        font-size: 1rem !important;
    }
    
    /* Features - Small Mobile */
    .feature__title {
        font-size: 1.8rem !important;
    }
    
    .feature__visual {
        min-height: 160px !important;
    }
    
    .feature__image {
        max-height: 160px !important;
    }
    
    /* Trust Stats - Small Mobile */
    .trust-stats__grid {
        grid-template-columns: 1fr !important;
    }
    
    .trust-stats__item--featured {
        grid-column: span 1 !important;
    }
    
    /* Team - Small Mobile */
    .team__photo {
        min-height: 200px !important;
    }
    
    /* Testimonial - Small Mobile */
    .testimonial__avatar {
        width: 80px !important;
        height: 80px !important;
    }
    
    .testimonial__quote {
        font-size: 1.4rem !important;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature:nth-child(even) .feature__content,
    .feature:nth-child(even) .feature__visual {
        order: unset;
    }
    
    .feature__visual {
        order: -1;
    }
    
    /* Scale down shapes on tablet */
    .feature__shape--1,
    .feature__shape--4,
    .feature__shape--7,
    .feature__shape--10,
    .feature__shape--13 {
        width: 200px;
        height: 200px;
    }
    
    .feature__shape--2,
    .feature__shape--5,
    .feature__shape--8,
    .feature__shape--11,
    .feature__shape--14 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 1200px) {
    .hero__content {
        max-width: 48%;
    }
    
    .hero__picture {
        width: 50%;
        right: 1%;
    }
    
    .hero__shape--blob {
        width: 75%;
        right: -15%;
    }
    
    .hero__shape--blob2 {
        width: 50%;
        right: 0;
    }
}

@media (max-width: 992px) {
    .header__nav,
    .header .cta {
        display: none;
    }
    
    .hero {
        padding-top: 4rem;
    }
    
    .hero__shapes {
        opacity: 0.6;
    }
    
    .hero__shape--blob {
        width: 85%;
        right: -20%;
        top: -5%;
    }
    
    .hero__shape--blob2 {
        width: 55%;
        right: -5%;
    }
    
    .hero__shape--circle1,
    .hero__shape--circle2,
    .hero__shape--dot,
    .hero__shape--diamond,
    .hero__shape--curve {
        display: none;
    }
    
    .hero__content {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero__picture {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: var(--space-xl) auto 0;
    }
    
    .hero__title {
        font-size: 3.6rem;
    }
    
    .feature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature:nth-child(even) .feature__content,
    .feature:nth-child(even) .feature__visual {
        order: unset;
    }
    
    .feature__visual {
        order: -1;
    }
    
    .feature__icon-wrap {
        width: 150px;
        height: 150px;
    }
    
    .feature__icon-wrap svg {
        width: 70px;
        height: 70px;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team__member {
        grid-template-columns: 1fr;
    }
    
    .team__photo {
        min-height: 300px;
    }
    
    .testimonial {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .blog__grid,
    .pricing__grid,
    .activity-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hide decorative shapes on mobile for better performance */
    .hero__shape--blob,
    .hero__shape--blob2,
    .hero__shape--circle1,
    .hero__shape--circle2,
    .hero__shape--circle3,
    .hero__shape--dot,
    .hero__shape--diamond,
    .hero__shape--curve,
    .trust-stats__shape,
    .feature__shape {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        position: fixed;
        top: 2.5rem;
        right: 1.5rem;
        z-index: 1003;
    }
    
    /* Hide desktop nav on mobile */
    .header__nav,
    .header__content .cta {
        display: none !important;
    }
    
    /* Adjust header for mobile */
    .header {
        position: fixed;
        top: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-sm);
        z-index: 1000;
    }
    
    .header__grid {
        height: 10rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header__content {
        display: none;
    }
    
    /* Adjust body padding for mobile */
    body {
        padding-top: 10rem;
    }
    
    /* Inner pages hero mobile adjustments */
    .hero {
        padding-top: 10rem !important;
        padding-bottom: 0 !important;
        min-height: auto !important;
    }
    
    .hero h1 {
        font-size: 3.2rem !important;
    }
    
    .hero p {
        font-size: 1.7rem !important;
    }
    
    /* Shapes adjustments for mobile */
    .hero__shape--blob {
        width: 100% !important;
        height: 60% !important;
        right: -30% !important;
        top: -5% !important;
    }
    
    .hero__shape--circle1,
    .hero__shape--circle2,
    .hero__shape--dot,
    .hero__shape--diamond {
        display: none !important;
    }
    
    /* Feature shapes mobile - smaller and simplified */
    .feature__shape {
        opacity: 0.4;
    }
    
    .feature__shape--1,
    .feature__shape--4,
    .feature__shape--7,
    .feature__shape--10,
    .feature__shape--13 {
        width: 150px;
        height: 150px;
    }
    
    .feature__shape--2,
    .feature__shape--5,
    .feature__shape--8,
    .feature__shape--11,
    .feature__shape--14 {
        width: 60px;
        height: 60px;
    }
    
    .feature__shape--3,
    .feature__shape--6,
    .feature__shape--9,
    .feature__shape--12,
    .feature__shape--15 {
        width: 25px;
        height: 25px;
    }
    
    /* Grid layouts for mobile */
    .pricing__grid,
    .activity-selector,
    .blog-preview__grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Contact grid mobile */
    .contact__grid {
        grid-template-columns: 1fr !important;
    }
    
    .header__grid {
        height: 8rem;
    }
    
    .header__logo img {
        height: 6rem;
    }
    
    /* Mobile Hero Redesign */
    .hero {
        min-height: auto;
        padding: 9rem 0 0 0;
        display: flex;
        flex-direction: column;
    }
    
    .hero__shapes {
        opacity: 0.4;
    }
    
    .hero__shape--blob {
        width: 120%;
        height: 70%;
        right: -30%;
        top: -10%;
        opacity: 0.6;
    }
    
    .hero__shape--blob2 {
        width: 80%;
        height: 50%;
        right: -20%;
        top: 5%;
        opacity: 0.4;
    }
    
    .hero__shape--circle1,
    .hero__shape--circle2,
    .hero__shape--circle3,
    .hero__shape--dot,
    .hero__shape--diamond,
    .hero__shape--curve {
        display: none;
    }
    
    .hero__container {
        display: flex;
        flex-direction: column;
    }
    
    .hero__content {
        max-width: 100%;
        padding: var(--space-xl) var(--space-md);
        text-align: center;
        order: 2;
        background: linear-gradient(180deg, transparent 0%, var(--white) 20%);
        margin-top: -3rem;
        position: relative;
        z-index: 2;
    }
    
    .hero__picture {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
        order: 1;
        z-index: 1;
    }
    
    .hero__picture img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
        object-position: center top;
    }
    
    .hero__title {
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }
    
    .hero__subtitle {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: var(--space-lg);
    }
    
    .hero__cta {
        flex-direction: column;
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
    }
    
    .hero__cta .cta,
    .hero__cta .cta--outline {
        width: 100%;
        padding: 1.4rem 2rem;
        font-size: 1.6rem;
    }
    
    .hero__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
        padding-top: var(--space-lg);
        border-top: 1px solid var(--border-gray);
    }
    
    .hero__stat {
        flex: none;
        text-align: center;
        padding: var(--space-sm);
    }
    
    .hero__stat-number {
        font-size: 2.4rem;
    }
    
    .hero__stat-label {
        font-size: 1.2rem;
    }
    
    .features {
        padding: 0 0 var(--space-3xl) 0;
    }
    
    .feature {
        padding: var(--space-2xl) 0;
    }
    
    .feature__title {
        font-size: 2.4rem;
    }
    
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    
    .stat__item {
        padding: var(--space-lg);
    }
    
    .stat__number {
        font-size: 3.2rem;
    }
    
    .team__info {
        padding: var(--space-xl);
    }
    
    .team__name {
        font-size: 2.2rem;
    }
    
    .testimonial {
        padding: var(--space-xl);
    }
    
    .testimonial__quote {
        font-size: 1.8rem;
        padding-left: 0;
    }
    
    .testimonial__quote::before {
        display: none;
    }
    
    .blog__grid,
    .pricing__grid,
    .activity-selector {
        grid-template-columns: 1fr;
    }
    
    /* Footer - Mobile Fixes */
    .footer__main {
        padding: var(--space-2xl) 0 !important;
    }
    
    .footer__grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-xl) !important;
        padding: 0 var(--space-md) !important;
    }
    
    .footer__brand img {
        height: 6rem !important;
        max-width: 240px !important;
    }
    
    .footer__brand p {
        font-size: 1.4rem !important;
    }
    
    .footer__title {
        font-size: 1.6rem !important;
        margin-bottom: var(--space-md) !important;
    }
    
    .footer__links a {
        font-size: 1.4rem !important;
    }
    
    .footer__contact p {
        font-size: 1.4rem !important;
    }
    
    .footer__certification img {
        height: 4rem !important;
    }
    
    .footer__bottom {
        padding: var(--space-md) 0 !important;
    }
    
    .footer__bottom-content {
        flex-direction: column !important;
        gap: var(--space-md) !important;
        text-align: center !important;
        padding: 0 var(--space-md) !important;
    }
    
    .footer__legal {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: var(--space-md) !important;
    }
    
    .footer__legal a {
        font-size: 1.3rem !important;
    }
    
    .footer__copyright {
        font-size: 1.3rem !important;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 56.25%;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .header {
        top: 0;
    }
    
    .header__grid {
        height: 7rem;
    }
    
    .header__logo img {
        height: 5rem;
    }
    
    .footer__brand img {
        height: 7rem;
        max-width: 220px;
    }
    
    /* Inner pages mobile hero adjustments */
    .hero {
        padding-top: 8rem !important;
        min-height: auto !important;
    }
    
    .hero h1 {
        font-size: 2.4rem !important;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.5rem !important;
    }
    
    .breadcrumb {
        font-size: 1.3rem;
        flex-wrap: wrap;
    }
    
    /* Mobile section spacing */
    section[style*="padding: var(--space-4xl)"] {
        padding: var(--space-2xl) 0 !important;
    }
    
    /* Pricing cards mobile */
    .pricing__grid,
    .activity-selector,
    .blog-preview__grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Contact form mobile */
    .contact__grid {
        grid-template-columns: 1fr !important;
    }
    
    .form__row {
        grid-template-columns: 1fr !important;
    }
    
    /* Small Mobile Hero */
    .hero {
        padding: 8rem 0 0 0;
    }
    
    .hero__shapes {
        opacity: 0.3;
    }
    
    .hero__shape--blob {
        width: 140%;
        height: 60%;
        right: -40%;
    }
    
    .hero__shape--blob2 {
        width: 100%;
        height: 45%;
        right: -30%;
    }
    
    .hero__picture img {
        max-height: 220px;
    }
    
    .hero__content {
        padding: var(--space-lg) var(--space-md);
        margin-top: -2rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.4rem;
    }
    
    .hero__cta .cta,
    .hero__cta .cta--outline {
        padding: 1.2rem 1.5rem;
        font-size: 1.5rem;
    }
    
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .hero__stat {
        padding: 0.5rem;
    }
    
    .hero__stat-number {
        font-size: 1.8rem;
    }
    
    .hero__stat-label {
        font-size: 1rem;
    }
    
    .feature__title {
        font-size: 1.8rem;
    }
    
    .feature__list li {
        font-size: 1.4rem;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .stat__number {
        font-size: 3.6rem;
    }
    
    .team__photo {
        min-height: 200px;
    }
    
    .testimonial__avatar {
        width: 80px;
        height: 80px;
    }
    
    .pricing__card--featured {
        transform: none;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Inner pages specific fixes */
    .pricing__card {
        padding: var(--space-lg) !important;
    }
    
    .pricing__title {
        font-size: 2rem !important;
    }
    
    .pricing__price {
        font-size: 3.6rem !important;
    }
    
    .activity__card {
        padding: var(--space-md) !important;
    }
    
    .activity__icon {
        width: 4rem !important;
        height: 4rem !important;
    }
    
    .activity__title {
        font-size: 1.6rem !important;
    }
    
    /* Form mobile fixes */
    .form__input,
    .form__select,
    .form__textarea {
        font-size: 1.5rem !important;
        padding: 1rem 1.2rem !important;
    }
    
    /* Accordion mobile */
    .accordion__header {
        padding: var(--space-md) !important;
        font-size: 1.5rem !important;
    }
    
    .accordion__body {
        padding: 0 var(--space-md) var(--space-md) !important;
        font-size: 1.4rem !important;
    }
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4.8rem;
    height: 4.8rem;
    background: var(--light-blue);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 1rem;
    gap: 0.5rem;
    z-index: 1003;
    transition: var(--transition-default);
    position: fixed;
    top: 1.1rem;
    right: 1.5rem;
}

.mobile-menu-toggle:hover {
    background: var(--primary-sky);
}

.mobile-menu-toggle:hover span {
    background: white;
}

/* Mobile menu open state */
.mobile-nav.active {
    display: flex;
}

.mobile-menu-toggle.active {
    background: var(--primary-navy);
    z-index: 9999 !important;
}

.mobile-menu-toggle.active span {
    background: white;
}

.mobile-menu-toggle span {
    display: block;
    width: 2.4rem;
    height: 0.25rem;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: var(--transition-default);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.6rem, -0.6rem);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1002;
    padding: 10rem 2rem 2rem;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex !important;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav__item {
    border-bottom: 1px solid var(--border-gray);
}

.mobile-nav__link {
    display: block;
    padding: 2rem 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-navy);
    transition: var(--transition-default);
}

.mobile-nav__link:hover {
    color: var(--primary-sky);
    padding-left: 1rem;
}

.mobile-nav__link.active {
    color: var(--primary-sky);
}

.mobile-nav__cta {
    margin-top: 2rem;
    padding: 1.6rem;
    font-size: 1.6rem;
    text-align: center;
}

.mobile-nav__contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.mobile-nav__contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    font-size: 1.5rem;
    color: var(--gray-text);
}

/* Mobile responsive grids */
@media (max-width: 768px) {
    .pricing__grid,
    .activity-selector,
    .blog-preview__grid {
        grid-template-columns: 1fr !important;
    }
    
    .activity__card {
        min-height: auto;
        padding: var(--space-lg);
    }
    
    .contact__grid {
        grid-template-columns: 1fr !important;
    }
    
    .form__row {
        grid-template-columns: 1fr !important;
    }
}

.mobile-nav__contact-item svg {
    color: var(--primary-sky);
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .mobile-nav {
        padding: 9rem 2rem 2rem !important;
    }
    
    .mobile-nav__link {
        padding: 1.8rem 0 !important;
        font-size: 1.8rem !important;
    }
    
    .mobile-nav__cta {
        margin-top: 1.5rem !important;
        padding: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        padding: 8rem 1.5rem 1.5rem !important;
    }
    
    .mobile-nav__link {
        padding: 1.5rem 0 !important;
        font-size: 1.6rem !important;
    }
    
    .mobile-nav__cta {
        font-size: 1.5rem !important;
    }
    
    .mobile-nav__contact-item {
        font-size: 1.4rem !important;
        padding: 1rem 0 !important;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
