/* ===========================
   Reset & Variables
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from logo */
    --primary: #1565c0;
    --primary-light: #1e88e5;
    --primary-dark: #0d47a1;
    --primary-gradient: linear-gradient(135deg, #1565c0 0%, #1e88e5 100%);

    /* Neutrals */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--gray-50);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    /* Multi-layer frosted glass */
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.75) 100%
        );
    /* Advanced blur with saturation boost */
    backdrop-filter: blur(32px) saturate(200%) brightness(110%);
    -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(110%);
    /* Subtle borders for depth */
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    /* Layered shadows for realism */
    box-shadow:
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
        0 0 0 0.5px rgba(0, 0, 0, 0.02),
        0 2px 8px rgba(0, 0, 0, 0.02),
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Prevent color bleeding */
    isolation: isolate;
}

/* Noise texture overlay for realism */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Shine/reflection effect */
.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 255, 255, 0.1) 100%
    );
    pointer-events: none;
    opacity: 0.6;
}

/* Enhanced state on scroll */
.header.scrolled {
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.78) 50%,
            rgba(255, 255, 255, 0.8) 100%
        );
    backdrop-filter: blur(36px) saturate(200%) brightness(109%);
    -webkit-backdrop-filter: blur(36px) saturate(200%) brightness(109%);
    box-shadow:
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.35),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.55),
        0 0 0 0.5px rgba(0, 0, 0, 0.03),
        0 2px 10px rgba(0, 0, 0, 0.03),
        0 6px 20px rgba(0, 0, 0, 0.05),
        0 12px 40px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.nav__logo .logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s var(--ease-smooth);
}

.nav__logo .logo:hover {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav__link {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-800);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: -0.01em;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-smooth);
}

.nav__link:hover {
    color: var(--primary);
    background: rgba(21, 101, 192, 0.05);
}

.nav__link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 77px;
        left: 0;
        right: 0;
        flex-direction: column;
        background:
            linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.88) 0%,
                rgba(255, 255, 255, 0.85) 100%
            );
        backdrop-filter: blur(40px) saturate(200%) brightness(110%);
        -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(110%);
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
        box-shadow:
            inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
            0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 1.5rem;
        gap: 0.25rem;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-smooth);
        isolation: isolate;
    }

    .nav__menu::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.015;
        mix-blend-mode: overlay;
        pointer-events: none;
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a2540 0%, #1565c0 50%, #1e88e5 100%);
    overflow: hidden;
    padding-top: 140px;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.4), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero__shape--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.3), transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.hero__shape--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem 2rem 3rem;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s var(--ease-smooth);
}

.hero__badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero__badge-icon {
    width: 18px;
    height: 18px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
}

.hero__title--gradient {
    display: block;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-smooth);
}

.btn--primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(255, 255, 255, 0.4);
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: 7rem 0;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section__label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(30, 136, 229, 0.1));
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===========================
   About Section
   =========================== */
.about {
    background: white;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    aspect-ratio: 1;
}

.about__image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
}

.about__image-placeholder svg {
    width: 40%;
    height: 40%;
    color: white;
    opacity: 0.5;
}

.about__floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatCard 3s ease-in-out infinite;
}

.about__floating-card--1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.about__floating-card--2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card__icon {
    font-size: 1.5rem;
}

.floating-card__text {
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
}

.about__features-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s var(--ease-smooth);
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.feature-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item__icon svg {
    width: 24px;
    height: 24px;
}

.feature-item__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-item__description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__floating-card--1 {
        right: 5%;
    }

    .about__floating-card--2 {
        left: 5%;
    }
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: var(--gray-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-smooth);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    transition: all 0.4s var(--ease-smooth);
}

.service-card:hover .service-card__number {
    color: var(--primary-light);
}

.service-card__title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card__description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card__list li {
    padding: 0.625rem 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.service-card__link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-smooth);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

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

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: white;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__card {
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-smooth);
}

.contact__card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact__card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact__card-icon svg {
    width: 24px;
    height: 24px;
}

.contact__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact__card-text {
    color: var(--gray-600);
    line-height: 1.7;
}

.contact__card-text a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s var(--ease-smooth);
}

.contact__card-text a:hover {
    color: var(--primary-light);
}

.contact__form-wrapper {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form__input {
    padding: 0.875rem 1.125rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-900);
    transition: all 0.3s var(--ease-smooth);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

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

    .form__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--gray-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer__wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--gray-50);
}

.footer__content {
    padding-top: 5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 400px;
}

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

.footer__description {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.9375rem;
}

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

.footer__column-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color 0.3s var(--ease-smooth);
}

.footer__list a:hover {
    color: white;
}

.footer__bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer__wave svg {
        height: 60px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 3.5rem;
    }

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

/* ===========================
   Animations
   =========================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ===========================
   Pricing Page Styles
   =========================== */
.pricing-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #0a2540 0%, #1565c0 50%, #1e88e5 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.pricing-hero .container {
    position: relative;
    z-index: 2;
}

.pricing-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.pricing-hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.pricing-table {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-smooth);
}

.pricing-table:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pricing-table__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.pricing-table__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-table__icon svg {
    width: 30px;
    height: 30px;
}

.pricing-table__title {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin: 0;
}

.pricing-table__content {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table__content thead {
    background: var(--gray-50);
}

.pricing-table__content th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.pricing-table__content td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.pricing-table__content tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table__content tbody tr:hover {
    background: var(--gray-50);
}

.pricing-table__content td:last-child {
    font-weight: 600;
    color: var(--primary);
}

.pricing-info {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(30, 136, 229, 0.1));
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
}

.pricing-info__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-info__icon svg {
    width: 30px;
    height: 30px;
}

.pricing-info__title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-info__list {
    list-style: none;
    padding: 0;
}

.pricing-info__list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.75rem;
}

.pricing-info__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.125rem;
}

.pricing-cta {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.pricing-cta__title {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-cta__text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.pricing-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-cta__buttons .btn--primary {
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-cta__buttons .btn--primary:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-cta__buttons .btn--secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--gray-200);
    font-weight: 600;
}

.pricing-cta__buttons .btn--secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary);
}

.contact__info--centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .pricing-table {
        padding: 1.5rem;
        overflow-x: auto;
    }

    .pricing-table__header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .pricing-table__content {
        font-size: 0.875rem;
    }

    .pricing-table__content th,
    .pricing-table__content td {
        padding: 0.75rem 1rem;
    }

    .pricing-info {
        flex-direction: column;
    }

    .pricing-cta {
        padding: 2.5rem 1.5rem;
    }

    .pricing-cta__buttons {
        flex-direction: column;
    }

    .pricing-cta__buttons .btn {
        width: 100%;
    }
}

/* ===========================
   Service Pages
   =========================== */
.service-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #0a2540 0%, #1565c0 50%, #1e88e5 100%);
    color: white;
    overflow: hidden;
}

.service-hero__breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.service-hero__breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s var(--ease-smooth);
}

.service-hero__breadcrumb a:hover {
    opacity: 0.7;
}

.service-hero__breadcrumb span:not(:has(svg)) {
    opacity: 0.5;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.service-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-hero__badge svg {
    width: 18px;
    height: 18px;
}

.service-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
}

.service-hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    opacity: 0.9;
}

.service-details {
    padding: 5rem 0;
    background: var(--gray-50);
}

.service-details__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.service-details__main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.service-detail-card__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.service-detail-card__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
}

.service-detail-card__text:last-child {
    margin-bottom: 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-feature-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-feature-item__icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-item__icon svg {
    width: 28px;
    height: 28px;
}

.service-feature-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.service-feature-item__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.service-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-process__step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-process__number {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.service-process__content {
    flex: 1;
}

.service-process__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-process__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.service-details__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.service-sidebar-card--highlight {
    background: var(--primary-gradient);
    color: white;
}

.service-sidebar-card--highlight .service-sidebar-card__title,
.service-sidebar-card--highlight .service-sidebar-card__text {
    color: white;
}

.service-sidebar-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-sidebar-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-sidebar-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-sidebar-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-sidebar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 1rem;
    transition: gap 0.3s var(--ease-smooth);
}

.service-sidebar-card__link:hover {
    gap: 0.75rem;
}

.service-sidebar-card__link svg {
    width: 18px;
    height: 18px;
}

.service-price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.service-price-item__label {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.service-price-item__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
}

.service-link-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

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

@media (max-width: 968px) {
    .service-details__grid {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 2rem;
    }
}

/* ===========================
   Utilities
   =========================== */
.text-center {
    text-align: center;
}
