/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #e31c79;
    --primary-dark: #c4156a;
    --primary-gradient: linear-gradient(151deg, #d80371 39%, #0c71c3 100%);
    --navy: #0d1b3e;
    --navy-light: #1a2b5a;
    --text-dark: #0d1b3e;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #fff;
    --bg-lavender: #dce4f5;
    --bg-light: #f7f8fc;
    --bg-dark: #0d1b3e;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan', sans-serif;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-transform: uppercase;
}
h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-transform: uppercase;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a:hover {
    color: var(--primary-color);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: linear-gradient(151deg, #b8025f 39%, #0a5fa3 100%);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-nav {
    padding: 12px 24px;
    font-size: 0.85rem;
    background: var(--primary-gradient);
    color: var(--bg-white) !important;
    border-radius: 5px;
}

.btn-nav:hover {
    background: linear-gradient(151deg, #b8025f 39%, #0a5fa3 100%);
    color: var(--bg-white) !important;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo:hover .logo-text {
    color: var(--primary-color);
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.main-nav a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background-color: var(--bg-lavender);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 25px;
    color: var(--navy);
}

.hero h1 .accent {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text:last-of-type {
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: var(--navy);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-header h2 .accent {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Problems Section */
.problems {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.problems-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.problems-list li {
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 500;
    word-wrap: break-word;
}

.problems-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Services Section */
.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--navy);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--navy);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-tagline {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

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

.experience-bar {
    margin-top: 50px;
    padding: 25px 30px;
    background: var(--bg-lavender);
    border-radius: 10px;
    text-align: center;
}

.experience-bar p {
    margin: 0;
    color: var(--navy);
    font-size: 0.95rem;
}

.experience-bar strong {
    color: var(--navy);
}

/* Results Section */
.results {
    background-color: var(--bg-lavender);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

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

.result-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.result-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-icon svg {
    width: 100%;
    height: 100%;
}

.result-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.result-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--navy);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* Engagement Section */
.engagement {
    background-color: var(--bg-light);
}

.engagement-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.engagement-content h2 {
    margin-bottom: 20px;
    color: var(--navy);
}

.engagement-content .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.engagement-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.detail-item {
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.detail-item h4 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1rem;
}

.detail-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.engagement-fit {
    background: var(--navy);
    padding: 35px;
    border-radius: 10px;
    color: white;
}

.engagement-fit h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.engagement-fit ul {
    list-style: none;
}

.engagement-fit li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.engagement-fit li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* About Section */
.about {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 25px;
    color: var(--navy);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content p:last-of-type {
    margin-bottom: 25px;
}

.about-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-features li {
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.about-image .image-placeholder {
    background: var(--primary-gradient);
    border-radius: 10px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-image .image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

/* Work/Portfolio Section */
.work {
    background-color: var(--bg-white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.work-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--bg-white);
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.work-image .image-placeholder {
    aspect-ratio: 16/10;
    background: var(--bg-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.work-card:nth-child(2) .image-placeholder {
    background: var(--primary-gradient);
    color: white;
}

.work-card:nth-child(3) .image-placeholder {
    background: var(--navy);
    color: white;
}

.work-info {
    padding: 25px;
}

.work-info h3 {
    margin-bottom: 10px;
    color: var(--navy);
}

.work-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: var(--bg-lavender);
    text-align: center;
}

.cta h2 {
    color: var(--navy);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--text-medium);
}

/* Footer */
.footer {
    background-color: var(--navy);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer .logo-text {
    color: var(--bg-white);
    font-size: 1.3rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 20px;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .services-grid.three-col,
    .results-grid.three-col {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .engagement-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .problems-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .problems-list li {
        font-size: 0.95rem;
    }
}
