/* ======================
   CSS Variables & Reset
   ====================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Modern Teal/Cyan Palette from Logo */
    --brand-primary: #14B8A6;
    --brand-primary-dark: #0D9488;
    --brand-secondary: #06B6D4;
    --brand-accent: #2DD4BF;
    --brand-deep: #0f172a;

    /* Service Card Colors - Refined Premium Tones */
    --service-blue: #3B82F6;
    --service-pink: #EC4899;
    --service-purple: #8B5CF6;
    --service-cyan: #06B6D4;
    --service-teal: #14B8A6;
    --service-emerald: #10B981;

    /* Neutral Colors */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Typography */
    --font-sans: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-900);
    background-color: white;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 70px;
}

@media (min-width: 768px) {
    body {
        padding-top: 75px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ======================
   Utility Classes
   ====================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.hidden {
    display: none;
}

.text-accent {
    color: var(--brand-accent);
}

.text-brand {
    color: var(--brand-primary);
}

.center {
    text-align: center;
}

/* ======================
   Header & Navigation
   ====================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08), 0 2px 8px -2px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo {
    height: 2.75rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--brand-deep);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-top: 0.95rem;
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--slate-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 1.25rem;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 1px;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--brand-primary);
    background: rgba(20, 184, 166, 0.06);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    transition: all 0.25s ease;
}

.dropdown-btn:hover {
    color: var(--brand-primary);
    background: rgba(20, 184, 166, 0.06);
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.375rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    margin-top: 0.5rem;
    width: 15rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 0.625rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
    color: var(--brand-primary);
    transform: translateX(4px);
}

.cta-desktop {
    display: none;
}

.cta-desktop .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    box-shadow: 0 4px 12px -2px rgba(20, 184, 166, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-desktop .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(20, 184, 166, 0.45);
}

.mobile-menu-btn {
    padding: 0.625rem;
    color: var(--slate-700);
    border-radius: 0.625rem;
    transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Sidebar Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu:not(.hidden) {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    flex-shrink: 0;
}

.mobile-menu-header .logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.mobile-menu-header .logo {
    height: 1.75rem;
    filter: brightness(0) invert(1);
}

.mobile-menu-header .logo-text {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: white;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-menu-close svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-content {
    flex: 1;
    padding: 0.5rem 1rem 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Get Started Button at Top */
.mobile-menu-cta-top {
    display: block;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px -2px rgba(20, 184, 166, 0.35);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-menu-cta-top:hover,
.mobile-menu-cta-top:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -4px rgba(20, 184, 166, 0.45);
}

.mobile-menu-link {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1rem;
    color: var(--slate-800);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
}

.mobile-dropdown {
    margin: 0;
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1rem;
    color: var(--slate-800);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-dropdown-btn:hover,
.mobile-dropdown-btn:active {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
}

.mobile-dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
    color: var(--slate-500);
    flex-shrink: 0;
}

.mobile-dropdown-btn.active .mobile-dropdown-icon {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

.mobile-dropdown-menu {
    padding: 0.25rem 0 0.5rem 0.75rem;
    margin: 0 0 0 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-left: 2px solid rgba(20, 184, 166, 0.2);
}

.mobile-dropdown-menu:not(.hidden) {
    max-height: 600px;
}

.mobile-dropdown-item {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    color: var(--slate-600);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active {
    color: var(--brand-primary);
    background: rgba(20, 184, 166, 0.06);
}

/* Remove footer from mobile menu */
.mobile-menu-footer {
    display: none;
}

.mobile-menu-cta {
    display: none;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ======================
   Buttons
   ====================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    cursor: pointer;
    max-width: 100%;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        white-space: normal;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
}

.btn-primary {
    background-color: var(--brand-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}

.btn-primary:hover {
    background-color: var(--brand-primary-dark);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -4px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--brand-accent);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.btn-accent:hover {
    background-color: #22D3BB;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--slate-900);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.btn-dark:hover {
    background-color: var(--slate-800);
}

.btn-white {
    background-color: white;
    color: var(--brand-primary);
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.btn-white:hover {
    background-color: var(--slate-100);
}

.btn-accent-outline {
    background-color: rgba(45, 212, 191, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    backdrop-filter: blur(4px);
}

.btn-accent-outline:hover {
    background-color: rgba(45, 212, 191, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn-full {
    width: 100%;
}

/* ======================
   Hero Section
   ====================== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.65)),
        url('../images/hero-bg.png') center center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeIn 1s ease-out;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both, float 3s ease-in-out infinite;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 56rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hero-buttons .btn:first-child {
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.hero-buttons .btn:last-child {
    animation: slideInRight 0.8s ease-out 0.8s both;
}

/* ======================
   About Section
   ====================== */
.about-section {
    padding: var(--section-padding);
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: var(--slate-600);
    font-size: 1rem;
    line-height: 1.7;
}

.about-cta {
    margin-top: 2.5rem;
}

.about-visual {
    position: relative;
    height: auto;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* ======================
   Services Section
   ====================== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--slate-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    color: var(--slate-600);
    font-size: 1rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .services-grid {
        gap: 1.25rem;
    }
}

.service-card {
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-blue {
    background-color: var(--service-blue);
}

.service-pink {
    background-color: var(--service-pink);
}

.service-purple {
    background-color: var(--service-purple);
}

.service-cyan {
    background-color: var(--service-cyan);
}

.service-green {
    background-color: var(--service-teal);
}

.service-orange {
    background-color: var(--service-emerald);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    height: 2.2rem;
    width: 2.2rem;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s;
}

.service-link:hover {
    transform: translateX(0.25rem);
}

.service-link span {
    margin-left: 0.5rem;
}

.services-cta {
    text-align: center;
}

/* ======================
   Testimonials Section
   ====================== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(to bottom right, var(--slate-50), white);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.avatar-green {
    background: linear-gradient(to bottom right, var(--brand-primary), var(--brand-primary-dark));
}

.avatar-purple {
    background: linear-gradient(to bottom right, #a855f7, #7e22ce);
}

.avatar-blue {
    background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}

.testimonial-name {
    font-weight: 700;
    color: var(--slate-900);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    color: #facc15;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--slate-600);
    line-height: 1.625;
}

/* ======================
   CTA Section
   ====================== */
.cta-section {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-primary-dark) 100%);
    color: white;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    filter: blur(64px);
}

.shape-1 {
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
}

.shape-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--brand-accent);
}

.cta-content {
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;

    margin-left: auto;
    margin-right: auto;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--brand-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ======================
   Footer - Clean Professional Design
   ====================== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    position: relative;
}

.footer-main {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Brand Column */
.footer-col-brand {
    max-width: 100%;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo img {
    height: 2.5rem;
    width: auto;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Footer Columns */
.footer-col {
    min-width: 0;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    min-height: 1.25rem;
    display: block;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    font-size: 0.9375rem;
    color: #94a3b8;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--brand-mint);
    transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-contact-list svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--brand-green);
    margin-top: 0.125rem;
}

.footer-contact-list a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: var(--brand-mint);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--brand-mint);
}

/* ======================
   Responsive Design
   ====================== */

/* Tablet */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .section-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
        gap: 2rem;
    }

    .footer-col-brand {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-title {
        font-size: 3rem;
    }

    .cta-description {
        font-size: 1.25rem;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .cta-desktop {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-section {
        padding: 8rem 0;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-visual {
        height: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
        gap: 3rem;
    }

    .cta-title {
        font-size: 3.75rem;
    }
}

/* Mobile Hero Optimization */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 4rem 0;
    }

    .hero-section::after {
        height: 60px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .section-title {
        font-size: 3rem;
    }
}