:root {
    --primary-color: #00a8e8;
    --secondary-color: #ff0000;
    --navy-color: #002b49;
    --text-color: #333;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --font-alt: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-main);
    font-weight: 600;
}

.btn {
    font-family: var(--font-main);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--navy-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
}

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

.badge {
    background: #ff3399;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    vertical-align: middle;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #0091c7;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 40px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: #e60000;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-title {
    font-size: 80px;
    font-weight: 600;
    color: var(--navy-color);
    margin-bottom: 5px;
}

.hero-accent {
    font-family: 'Pacifico', cursive;
    /* I'll need to add this font or use a scripty backup */
    font-size: 40px;
    color: #ff3399;
    margin: -10px 0;
}

.hero-subtitle {
    font-size: 60px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 20px;
    color: #666;
}

.hero-trust {
    margin-top: 60px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Stats */
.intro {
    padding: 100px 0;
}

.intro h3 {
    font-size: 28px;
    color: #444;
    margin-bottom: 30px;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.4;
}

.intro p {
    max-width: 900px;
    margin: 0 auto 50px;
}

.sales-highlight {
    font-size: 48px;
    font-weight: 600;
    color: var(--navy-color);
    margin-bottom: 60px;
}

.sales-highlight span {
    color: #ff8c00;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
}

/* Background Shapes */
.hero-bg-shapes .shape {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}

.shape-1 {
    top: 50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Services */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-title h2 {
    font-size: 40px;
    color: var(--navy-color);
    margin-bottom: 20px;
}

.section-title p {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    color: var(--navy-color);
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    max-width: 350px;
}

.checklist {
    list-style: none;
    margin-top: 25px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff3399;
    font-weight: 900;
}

/* CTA Banner */
.cta-banner {
    background: var(--navy-color);
    padding: 80px 0;
    color: white;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
}

.feature-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    color: var(--navy-color);
    margin-bottom: 0;
}

.checklist-small {
    list-style: none;
    margin-top: 20px;
}

.checklist-small li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.checklist-small li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff3399;
}

/* Process Section */
.process {
    padding: 100px 0;
}

.process-flow {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 50px;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.process-step {
    position: relative;
    margin-bottom: 50px;
}

.process-dot {
    position: absolute;
    left: -40px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.3);
    z-index: 1;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
}

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

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--navy-color);
}

.plus {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .plus {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.pricing-card {
    background: white;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--navy-color);
    margin-bottom: 20px;
}

/* Industries */
.industries {
    padding: 80px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.industry-item img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.industry-item p {
    font-weight: 600;
    color: var(--navy-color);
}



.case-card:hover::before {
    transform: scale(15);
    z-index: 0;
}

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

.case-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Comparison Table */
.comparison {
    padding: 100px 0;
    background: var(--bg-light);
}

.table-container {
    max-width: 1000px;
    margin: 50px auto 0;
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 25px;
    border: 1px solid #eee;
}

.comparison-table th {
    font-size: 18px;
    color: var(--navy-color);
    background: #fcfcfc;
}

.highlight-col {
    background: #f0f7ff !important;
    border-left: 2px solid var(--primary-color) !important;
    border-right: 2px solid var(--primary-color) !important;
}

.comparison-table th.highlight-col {
    border-top: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-size: 24px;
}

/* Strategy */
.strategy {
    padding: 100px 0;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.strategy-card {
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--navy-color);
}

.strategy-card h4 {
    font-size: 20px;
    color: var(--navy-color);
    margin-bottom: 15px;
}

.border-red {
    border-left-color: var(--secondary-color);
}

.border-pink {
    border-left-color: #ff3399;
}

.border-cyan {
    border-left-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--navy-color);
    color: white;
    padding-top: 80px;
}

.newsletter {
    background: #ff0055;
    padding: 60px 0;
    margin-top: -140px;
    border-radius: 20px;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 50px rgba(255, 0, 85, 0.3);
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info {
    flex: 1;
}

.footer-newsletter {
    flex: 1;
    text-align: left;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    width: 250px;
    font-family: var(--font-alt);
}

.newsletter-form .btn {
    border-radius: 5px;
    box-shadow: none;
    background: white;
    color: #ff0055;
}

.footer-bottom {
    padding: 120px 0 50px;
    background: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: white;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 10px;
}

/* CTA Banners */
.cta-banner {
    padding: 80px 0;
    color: white;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-blue {
    background: var(--navy-color);
}

.cta-pink {
    background: #e6005c;
}

.cta-blue-dark {
    background: #0f172a;
}

.btn-white {
    background: white;
    color: #e6005c;
    padding: 18px 40px;
    font-size: 18px;
    display: inline-block;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Leverage Hype */
.leverage-hype {
    padding: 100px 0;
    background: #fff;
}

.leverage-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.leverage-image {
    flex: 1;
}

.leverage-image img {
    width: 100%;
    max-width: 400px;
}

.leverage-text {
    flex: 1;
}

.leverage-text h2 {
    font-size: 40px;
    color: var(--navy-color);
    margin-bottom: 20px;
}

.leverage-text p {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

.quote-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.quote-box p {
    font-weight: 600;
    font-style: italic;
    color: var(--navy-color);
    margin: 0;
    font-size: 18px;
}

.quote-box p::before,
.quote-box p::after {
    content: '"';
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
}



/* Additional Services */
.additional-services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px auto;
    max-width: 1000px;
}

.service-mini {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.icon-wrap {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-mini h3 {
    font-size: 24px;
    color: var(--navy-color);
    margin-bottom: 20px;
}

.note-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    text-align: left;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .brands-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 991px) {
    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 998;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 20px;
        margin: 10px 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .trust-logos {
        flex-wrap: wrap;
        gap: 20px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-block .checklist {
        text-align: left;
        display: inline-block;
    }

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

    .leverage-content {
        flex-direction: column;
        text-align: center;
    }





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

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

    .cta-banner h2 {
        font-size: 28px;
    }

    /* Responsive Buttons */
    .btn {
        white-space: normal;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .btn-secondary,
    .btn-white {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
    }

    /* Responsive Comparison Table */
    .table-container {
        overflow-x: hidden;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        margin-top: 30px;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
        text-align: center;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tr {
        margin-bottom: 30px;
        background: white;
        border: 1px solid #eee;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .comparison-table td {
        padding: 20px;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }

    .comparison-table td:nth-child(1) {
        background: var(--navy-color);
        color: white;
        font-size: 20px;
        font-weight: 700;
    }

    .comparison-table td:nth-child(2)::before {
        content: "AGC Media Agency™";
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .comparison-table td:nth-child(3)::before {
        content: "Other Agencies/Freelancers";
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #666;
        margin-bottom: 10px;
    }

    .comparison-table td.highlight-col {
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }


}