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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

/* Brand Colors */
:root {
    --primary-yellow: #FFD700;
    --accent-yellow: #FFC107;
    --dark-black: #000000;
    --light-black: #1a1a1a;
    --pure-white: #ffffff;
    --light-grey: #f8f9fa;
    --text-grey: #666666;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary-yellow);
    color: var(--dark-black);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: var(--accent-yellow);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--primary-yellow);
    color: var(--dark-black);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: var(--accent-yellow);
}

.cta-secondary {
    background: transparent;
    color: var(--dark-black);
    padding: 1rem 2rem;
    border: 2px solid var(--dark-black);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--dark-black);
    color: var(--pure-white);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Credibility Section */
.credibility {
    padding: 80px 0;
    background: var(--pure-white);
    text-align: center;
}

.credibility h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-black);
}

.credibility-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 3rem;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200% + 2rem);
}

.logo-item {
    background: var(--primary-yellow);
    color: var(--dark-black);
    padding: 1rem 2rem;
    margin: 0 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    min-width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-track::after {
    content: "";
    display: flex;
    flex: 1;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.problem-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #f8fafc;
}

.solution h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    border: 1px solid #e5e5e5;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #1a1a1a;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-grey);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-pillar {
    background: var(--pure-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    transition: all 0.3s;
}

.service-pillar:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.service-pillar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

.service-pillar p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 1.1rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--dark-black);
    border-radius: 20px;
    color: var(--pure-white);
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: var(--primary-yellow);
    background: var(--primary-yellow);
    color: white;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(229,229,229,0.3);
    font-weight: 500;
}

.service-cta {
    display: block;
    text-align: center;
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.featured .service-cta {
    background: white;
    color: var(--primary-yellow);
}

.service-cta:hover {
    transform: translateY(-2px);
}

/* Results Section */
.results {
    padding: 80px 0;
    background: #f8fafc;
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.result-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.result-metrics {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-yellow);
}

.metric {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.5rem;
}

.result-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.client-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    color: var(--primary-yellow);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about h3 {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.credentials h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0;
    color: #4a4a4a;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 80px 0;
    background: var(--dark-black);
    color: var(--pure-white);
}

.magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.magnet-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.magnet-visual h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-yellow);
}

.magnet-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.magnet-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.magnet-action {
    background: var(--pure-white);
    color: var(--dark-black);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.value-stack h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-black);
}

.value-stack p {
    margin-bottom: 2rem;
    color: var(--text-grey);
}

.unlock-steps {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.unlock-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-grey);
    padding: 1rem;
    border-radius: 8px;
}

.step-num {
    background: var(--primary-yellow);
    color: var(--dark-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--dark-black);
    color: var(--pure-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-primary.large {
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.page-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.active {
    color: var(--primary-yellow) !important;
}

/* About Page Styles */
.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.timeline-year {
    background: var(--primary-yellow);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.philosophy {
    padding: 80px 0;
    background: #f8fafc;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.member-title {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-yellow);
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-item {
    text-align: center;
    padding: 2rem;
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 80px 0;
    background: #f8fafc;
}

.service-detail {
    background: white;
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.service-detail.featured {
    border: 3px solid var(--primary-yellow);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-info {
    padding: 3rem;
}

.price-display {
    margin: 1rem 0 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-period {
    font-size: 1.2rem;
    color: #666;
}

.service-includes ul {
    list-style: none;
    margin: 2rem 0;
}

.service-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.metric-label {
    font-size: 0.875rem;
    color: #666;
}

.service-cta-button {
    display: block;
    background: var(--primary-yellow);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

.service-detail-visual {
    background: #f8fafc;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mockup-items {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.mockup-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-weight: 500;
}

.process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Case Studies Page Styles */
.featured-cases {
    padding: 80px 0;
}

.case-study {
    margin-bottom: 4rem;
}

.featured-case {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 4rem;
}

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

.case-info {
    padding: 3rem;
}

.case-header {
    margin-bottom: 2rem;
}

.case-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.case-meta span {
    background: var(--primary-yellow);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.case-challenge, .case-solution {
    margin-bottom: 2rem;
}

.case-challenge h4, .case-solution h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.case-testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-left: 4px solid var(--primary-yellow);
    margin-top: 2rem;
    font-style: italic;
}

.case-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-yellow);
    font-style: normal;
}

.case-visual {
    background: #f8fafc;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.case-visual img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.visual-stats {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.stat-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.results-overview {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-large {
    text-align: center;
    padding: 2rem;
}

.stat-large .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.stat-large .stat-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.more-cases {
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.industry-tag {
    background: var(--primary-yellow);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-yellow);
}

.case-card blockquote {
    background: #f8fafc;
    padding: 1rem;
    border-left: 3px solid var(--primary-yellow);
    margin-top: 1rem;
    font-style: italic;
}

.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.testimonial-author strong {
    color: #1a1a1a;
}

.testimonial-author span {
    display: block;
    color: var(--primary-yellow);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Blog Page Styles */
.featured-article {
    padding: 80px 0;
    background: #f8fafc;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.article-category {
    background: var(--primary-yellow);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin: 1rem 0 2rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.875rem;
}

.read-more-btn {
    display: inline-block;
    background: var(--primary-yellow);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.blog-grid {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-image .article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    color: #666;
    font-size: 0.875rem;
}

.read-more {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
}

.blog-categories {
    padding: 80px 0;
    background: #f8fafc;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.post-count {
    display: block;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-top: 1rem;
}

.newsletter-signup {
    padding: 80px 0;
    background: var(--primary-yellow);
    color: white;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-options {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.contact-card.priority {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-features {
    margin: 2rem 0;
}

.feature {
    padding: 0.5rem 0;
    color: #4a4a4a;
}

.contact-btn {
    display: block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s;
}

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

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

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-yellow);
    outline: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.submit-btn {
    background: var(--primary-yellow);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.form-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.contact-info {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card a {
    color: var(--primary-yellow);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

.social-links {
    display: grid;
    gap: 0.5rem;
}

.contact-faq {
    padding: 80px 0;
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 2rem auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .story-grid,
    .featured-content,
    .case-content,
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        align-self: center;
    }
}