.footer-brand .logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #e6c952;
    --dark: #1a2451;
    --dark-lighter: #1a2451;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    font-display: swap;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropbtn {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 5px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

/* Safari-specific fix for dropdown */
@supports (-webkit-hyphens:none) {
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
    }
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
}

.cta-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.hero .hero-subtitle {
    font-size: 22px;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

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

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%);
    color: var(--white);
    padding: 100px 0 80px;
}

.service-hero .container {
    max-width: 1200px;
}

.service-hero h1 {
    text-align: left;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero .hero-subtitle {
    text-align: left;
    font-size: 22px;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.service-hero .hero-description {
    text-align: left;
    font-size: 18px;
    max-width: 100%;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.service-hero .btn {
    text-align: left;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    max-width: 800px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

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

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

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

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

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

.btn-white:hover {
    background: var(--light-gray);
}

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

/* Sections */
.content-section {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Challenges Section */
.challenges {
    padding: 80px 0;
    background: var(--white);
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.challenge-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.challenge-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.challenge-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.challenge-subtitle {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.challenge-highlight {
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0;
    font-size: 18px;
}

.challenge-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.challenge-card .btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.social-proof .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-description {
    color: var(--gray);
    font-size: 14px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Problem List */
.problem-list {
    max-width: 900px;
    margin: 40px auto;
}

.problem-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.problem-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.problem-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.problem-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark);
}

.pricing-tagline {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 25px;
}

.pricing-price {
    margin: 20px 0;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 18px;
    color: var(--gray);
}

.pricing-delivery {
    color: var(--gray);
    font-size: 14px;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.feature-item {
    padding: 12px 0;
    color: var(--gray);
    line-height: 1.6;
    border-bottom: 1px solid var(--light-gray);
}

.feature-item:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 30px;
    background: var(--light-gray);
}

.best-for {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    text-align: center;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 40px auto;
}

.process-week {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}

.process-week h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.process-week ul {
    list-style: none;
}

.process-week li {
    padding: 8px 0;
    color: var(--gray);
    line-height: 1.6;
}

.process-week strong {
    color: var(--dark);
}

.process-week p {
    color: var(--gray);
    line-height: 1.7;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.checklist li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
    line-height: 1.6;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.checklist.gray li {
    color: var(--gray);
}

.checklist.gray li:before {
    content: "✗";
    color: var(--gray);
}

/* Case Study */
.case-study {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}

.case-study-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    font-style: italic;
}

.case-study-author {
    margin-top: 20px;
    color: var(--dark);
    font-weight: 600;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Availability Notice */
.availability-notice {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.availability-notice p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
}

.availability-notice strong {
    color: var(--primary);
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.call-benefits {
    margin: 40px 0;
}

.call-benefit {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.call-benefit h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.call-benefit p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.alternative-contact {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
}

.alternative-contact h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.alternative-contact a {
    color: var(--primary);
    text-decoration: underline;
}

.calendly-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.calendly-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--dark-lighter);
    color: var(--gray);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    grid-column: 1;
}

.footer-brand p {
    margin-top: 15px;
    font-size: 14px;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark);
}

.footer-bottom p {
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll class */
.smooth-scroll {
    scroll-behavior: smooth;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu a {
        padding: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
        background: var(--light-gray);
    }

    .hero h1 {
        font-size: 36px;
    }

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

    .service-hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .challenge-grid,
    .pricing-grid,
    .stats-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
        grid-column: 1;
    }

    .two-column {
        grid-template-columns: 1fr;
    }
}

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

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 16px;
    }
}