/*
Theme Name: Golden Point Growth
Theme URI: https://goldenpointgrowth.com
Author: Golden Point Growth
Author URI: https://goldenpointgrowth.com
Description: A premium consulting theme for Golden Point Growth - Amazon & Digital Commerce Advisory
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: golden-point-growth
Tags: one-column, custom-menu, featured-images, full-width-template, custom-logo
*/

:root {
    --navy: #0a1628;
    --navy-light: #1a2d4a;
    --slate: #334155;
    --cream: #faf9f7;
    --cream-dark: #f0ede8;
    --accent: #c9a962;
    --accent-light: #dfc98a;
    --white: #ffffff;
    --text-primary: #0a1628;
    --text-secondary: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--navy-light);
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 6rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center right;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero .container {
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease forwards;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-badge:hover {
    background: rgba(201, 169, 98, 0.25);
    border-color: rgba(201, 169, 98, 0.5);
    transform: translateY(-2px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 1rem 2rem;
    border: 1.5px solid var(--navy);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Engagement Banner */
.featured-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.featured-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
}

.featured-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.featured-text h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.featured-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.featured-stats {
    display: flex;
    gap: 3rem;
}

.featured-stat {
    text-align: center;
}

.featured-stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.featured-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Brand Marquee */
.brand-marquee {
    background: var(--cream-dark);
    padding: 2rem 0;
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.marquee-track {
    display: flex;
    animation: scroll 15s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    flex-shrink: 0;
    padding: 0 3rem;
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--slate);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: var(--cream);
}

.results-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.results-header .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.results-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--navy);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.result-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.result-number {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.4;
}

/* Case Studies Section */
.case-studies {
    padding: 6rem 0;
    background: var(--navy);
}

.case-studies-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.case-studies-header .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.case-studies-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.case-studies-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.case-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.case-card.featured {
    grid-column: span 2;
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.2);
}

.case-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.case-card .subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.case-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.case-results {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-result {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.case-result-number {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    color: var(--accent);
}

.case-result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.brand-list {
    font-size: 0.85rem;
    color: var(--accent);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--cream);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.services-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--cream-dark);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta h2 em {
    font-style: italic;
    color: var(--accent);
}

.cta p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
footer {
    padding: 3rem 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--navy);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.about-text .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 5px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-text .about-intro {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-sidebar .access-box {
    background: linear-gradient(135deg, #fef9e7 0%, #fdf6e3 100%);
    border: 2px solid #996f00;
    border-radius: 8px;
    padding: 1.5rem;
}

.about-sidebar .access-box h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-sidebar .access-box p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.5;
    margin-bottom: 0;
}

.about-sidebar .advisory-box,
.about-sidebar .location-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.about-sidebar .advisory-box h3,
.about-sidebar .location-box h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-sidebar .advisory-box p,
.about-sidebar .location-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: var(--cream);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-header .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.team-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(10, 22, 40, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
    border-color: var(--accent);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    color: var(--white);
    border: 3px solid var(--accent);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.team-card .team-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.team-card .team-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.team-card .team-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.team-card .exp-tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    background: rgba(201, 169, 98, 0.15);
    color: var(--navy);
    border-radius: 4px;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(10, 22, 40, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.team-linkedin:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.team-linkedin svg {
    width: 16px;
    height: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    margin-bottom: 4rem;
    background: var(--navy);
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.testimonials-header .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.testimonial-quote {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-quote .quote-icon {
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-quote blockquote {
    font-family: 'Instrument Serif', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* WordPress Menu Support */
.nav-links .menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .menu li {
    margin: 0;
    padding: 0;
}

.nav-links .menu a {
    text-decoration: none;
    color: var(--slate);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-links .menu a:hover {
    color: var(--navy);
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero {
        padding-left: 0;
        padding-right: 0;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .featured-stats {
        justify-content: flex-start;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

    .case-card.featured {
        grid-column: span 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .featured-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team {
        padding: 4rem 0;
    }
}
