<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #3A1078;
    --secondary: #4E31AA;
    --accent: #2F58CD;
    --light: #F5F5F5;
    --dark: #222;
    --success: #22C55E;
    --error: #EF4444;
    --gray-100: #f7f7f7;
    --gray-200: #e9e9e9;
    --gray-300: #d9d9d9;
    --gray-400: #adadad;
    --gray-500: #8f8f8f;
    --gray-600: #6d6d6d;
    --gray-700: #4f4f4f;
    --gray-800: #2f2f2f;
    --gray-900: #1a1a1a;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --primary-rgb: 58, 16, 120;
    --secondary-rgb: 78, 49, 170;
    --accent-rgb: 47, 88, 205;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 1.5rem;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: rgba(74, 49, 170, 0.6);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(58, 16, 120, 0.8);
    }

/* === Custom Shapes &amp; Utilities === */
.clip-path-wave {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.clip-path-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.clip-path-rounded {
    clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%);
}

.blob-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    position: relative;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.primary {
    color: var(--primary);
}

.accent {
    color: var(--accent);
}

.highlight {
    font-weight: 600;
    color: var(--primary);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
    box-shadow: var(--shadow);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.btn-secondary {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

    .btn-secondary:hover {
        background-color: var(--secondary);
        color: white;
    }

.btn-white {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
}

    .btn-white:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

    .btn-outline-white:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.btn-primary-dark {
    background-color: var(--primary);
    color: white;
}

    .btn-primary-dark:hover {
        background-color: var(--accent);
    }

.btn-submit {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
    border-radius: var(--radius);
    width: 100%;
    padding: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

/* === Header &amp; Navigation === */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background: linear-gradient(to right, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    line-height: 1.1;
}

.logo-tagline {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: normal;
    margin-top: -1px;
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: none;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--gray-800);
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
    }

    .nav-link.special-link,
    .mobile-menu-link.special-link {
        background-color: var(--accent);
        color: white;
        padding: 8px 15px;
        border-radius: var(--radius);
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .nav-link.special-link:hover,
        .mobile-menu-link.special-link:hover,
        .nav-link.special-link.active,
        .mobile-menu-link.special-link.active {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .nav-link.special-link.active,
        .mobile-menu-link.special-link.active {
            position: relative;
        }

            .nav-link.special-link.active::after,
            .mobile-menu-link.special-link.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 50%;
                transform: translateX(-50%);
                width: 80%;
                height: 3px;
                background-color: white;
                border-radius: 2px;
            }

.mobile-menu-toggle {
    display: block;
}

#mobile-menu-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
}

    #mobile-menu-button:hover {
        color: var(--primary);
    }

.mobile-menu {
    display: none;
    padding: 1rem 0;
}

    .mobile-menu.active {
        display: block;
    }

.mobile-menu-links {
    display: flex;
    flex-direction: column;
}

.mobile-menu-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

    .mobile-menu-link:hover,
    .mobile-menu-link.active {
        background-color: rgba(58, 16, 120, 0.1);
        color: var(--primary);
    }

/* === Hero Section === */
.hero {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.blob-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA0NiIgaGVpZ2h0PSI0OTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTg3Ni41IDEyOC41QzgwMC41IDc0LjUgNjExLjUgMTQgNDcxLjUgMTU2LjVDMzAyLjUgMzI2LjUgMTc1IDM5NC41IDQuNSA0ODkuNUgxMDQ2VjE4Ny41QzEwNDYgMTg3LjUgOTUyLjUgMTgyLjUgODc2LjUgMTI4LjVaIiBmaWxsPSIjM0ExMDc4IiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+Cg==');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatars {
    display: flex;
}

.client-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -0.5rem;
}

    .client-avatar:first-child {
        margin-left: 0;
    }

.trust-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFB800;
}

    .rating span {
        margin-left: 0.25rem;
        color: var(--gray-600);
    }

.hero-image {
    position: relative;
}

    .hero-image .blob-shape {
        background: linear-gradient(to bottom right, rgba(58, 16, 120, 0.1), rgba(47, 88, 205, 0.1));
        padding: 1.5rem;
        animation: float 6s ease-in-out infinite;
    }

.main-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stats-card {
    position: absolute;
    background-color: white;
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 250px;
}

.stats-card-bottom {
    bottom: -2.5rem;
    left: -2.5rem;
    z-index: 2;
}

.stats-card-top {
    top: -1.25rem;
    right: -1.25rem;
    transform: rotate(6deg);
    z-index: 2;
}

.stats-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.stats-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.stats-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* === Section Dividers === */
.wave-divider {
    height: 150px;
    background-color: var(--primary);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.wave-divider-light {
    background-color: var(--light);
}

.diagonal-divider {
    height: 150px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.diagonal-divider-primary {
    background-color: var(--primary);
}

/* === Section Styles === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-badge-primary {
    background-color: rgba(58, 16, 120, 0.1);
    color: var(--primary);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-title-dark {
    color: var(--gray-900);
}

.section-description {
    max-width: 32rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

.section-description-dark {
    color: var(--gray-600);
}

/* === Services Section === */
.services {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    transform: translateY(0);
}

    .service-card:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-0.25rem);
    }

.service-blur {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(47, 88, 205, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    z-index: 0;
    transition: var(--transition);
}

.service-card:hover .service-blur {
    background-color: rgba(47, 88, 205, 0.2);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius);
    background-color: rgba(47, 88, 205, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: white;
}

/* === Approach Section === */
.approach {
    padding: 5rem 0;
    background-color: white;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-step {
    display: flex;
    gap: 1.25rem;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--gray-600);
}

.approach-image {
    position: relative;
}

.rounded-image {
    clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%);
    background: linear-gradient(to bottom right, rgba(58, 16, 120, 0.05), rgba(47, 88, 205, 0.05));
    padding: 2rem;
}

    .rounded-image img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

.analytics-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 320px;
    width: 90%;
}

.analytics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.analytics-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.analytics-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.analytics-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.analytics-bar-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.analytics-bar-container {
    width: 100%;
    height: 0.5rem;
    background-color: var(--gray-200);
    border-radius: 9999px;
    overflow: hidden;
}

.analytics-bar {
    height: 0.5rem;
    border-radius: 9999px;
}

.analytics-bar-primary {
    background-color: var(--primary);
}

.analytics-bar-accent {
    background-color: var(--accent);
}

.analytics-bar-secondary {
    background-color: var(--secondary);
}

.analytics-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* === Case Studies Section === */
.case-studies {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.case-study-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .case-study-card:hover {
        transform: translateY(-0.25rem);
        box-shadow: var(--shadow-lg);
    }

.case-study-image {
    height: 12rem;
    position: relative;
    overflow: hidden;
}

    .case-study-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background-color: rgba(58, 16, 120, 0.8);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.case-study-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.case-study-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-study-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stats-icon-small {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.stats-text-small {
    font-weight: 500;
}

.case-study-link {
    color: var(--primary);
    font-weight: 500;
}

    .case-study-link:hover {
        color: var(--accent);
    }

.case-studies-cta {
    text-align: center;
    margin-top: 3rem;
}

/* === CTA Section === */
.cta {
    background-color: var(--primary);
    color: white;
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* === Contact Section === */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-form-container {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(58, 16, 120, 0.2);
    }

textarea.form-control {
    resize: vertical;
    min-height: 6rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-phone-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(58, 16, 120, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.contact-phone-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(58, 16, 120, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-top: 0.25rem;
}

.benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefit-description {
    color: var(--gray-600);
}

/* === Footer === */
.footer {
    background-color: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

    .social-link:hover {
        background-color: var(--primary);
        color: white;
    }

.footer-links-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

    .footer-links-list a {
        color: var(--gray-400);
    }

        .footer-links-list a:hover {
            color: white;
        }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

    .footer-contact-item i {
        color: var(--accent);
        margin-top: 0.25rem;
    }

    .footer-contact-item span {
        color: var(--gray-400);
    }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .footer-legal a {
        color: var(--gray-500);
        font-size: 0.875rem;
    }

        .footer-legal a:hover {
            color: white;
        }

/* === Responsive Styles === */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        flex: 1;
        padding-right: 3rem;
    }

    .hero-image {
        flex: 1;
    }

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

    .approach-content {
        flex-direction: row;
    }

    .approach-steps {
        flex: 1;
    }

    .approach-image {
        flex: 1;
    }

    .case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-form-container {
        flex: 1;
    }

    .contact-info {
        flex: 1;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}
</pre></body></html>