/* 
   NAKEITA STEWART - Professional Design System
   Focus: Stability, Alignment, and Precision
*/

:root {
    /* Colors */
    --color-navy: #1a1a2e;
    --color-purple: #8b4f9f;
    --color-purple-dark: #6d3d7a;
    --color-purple-light: #a968b8;
    --color-white: #ffffff;
    --color-off-white: #f9f9fb;
    --color-text: #2c2c2c;
    --color-text-muted: #5a5a5a;
    --color-gradient-1: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    --color-gradient-2: linear-gradient(135deg, rgba(139, 79, 159, 0.1) 0%, rgba(139, 79, 159, 0.05) 100%);
    --color-gradient-3: linear-gradient(135deg, #8b4f9f 0%, #a968b8 100%);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --section-padding: 6rem;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 12px 32px rgba(26, 26, 46, 0.12);
    --shadow-hover: 0 20px 50px rgba(26, 26, 46, 0.18);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Animations */
[data-scroll-fade] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

[data-scroll-slide] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-scroll-slide].visible {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll-parallax] {
    transition: transform 0.3s ease-out;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); font-weight: 700; }

p { margin-bottom: 1.25rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--color-text-muted); }

/* Layout Elements */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--section-padding) 0;
    width: 100%;
    position: relative;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-accent { 
    color: var(--color-purple);
    background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-purple);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-purple);
    animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 40px; }
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-navy));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

/* Remove hover effects from feature cards specifically */
.features-grid .card:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.features-grid .card:hover::before {
    transform: scaleX(0);
}

/* Keep hover effects for other cards */
.testimonial-card:hover,
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card:hover::before,
.service-card:hover::before {
    transform: scaleX(1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary { background-color: var(--color-navy); color: var(--color-white); }
.btn-primary:hover { 
    background-color: var(--color-purple); 
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
}

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

.btn-small { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn-large { padding: 1.2rem 3rem; font-size: 1.1rem; }

/* Enhanced navbar CTA button styling */
.nav-links .btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.2);
    transition: all 0.3s ease;
}

.nav-links .btn-primary:hover {
    background-color: var(--color-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.nav-links .btn-primary::after {
    display: none;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(184, 134, 11, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo { 
    text-decoration: none; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 4px 8px rgba(184, 134, 11, 0.3));
}
.logo-text {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-navy);
    line-height: 1;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-purple);
    font-weight: 600;
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
    text-decoration: none;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-navy));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active { 
    color: var(--color-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(184, 134, 11, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-navy);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    background: linear-gradient(135deg, #f9f9fb 0%, #ffffff 50%, rgba(184, 134, 11, 0.03) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 2.5rem 0 2.5rem;
}

.hero-welcome {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 0.8s ease-out;
}

.hero-story {
    margin: 2rem 0 2.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(184, 134, 11, 0.02) 100%);
    border-left: 4px solid var(--color-purple);
    border-radius: 8px;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-story p {
    margin: 0;
    font-size: 1.05rem;
}

.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.image-placeholder {
    aspect-ratio: 4/5;
    background: #e2e2e8;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    opacity: 0.8;
}

.image-placeholder svg { width: 80px; height: 80px; stroke-width: 1; }

.hero-image img,
.about-preview-image img,
.bio-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlapping Bio Images */
.bio-images-overlap {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.bio-image-main {
    position: relative;
    z-index: 1;
    width: 100%;
}

.bio-image-main img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.bio-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
    z-index: 2;
    animation: float 6s ease-in-out infinite 1s;
}

.bio-image-secondary img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    object-fit: cover;
    border: 5px solid var(--color-white);
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.features-grid .card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .card:nth-child(4) { animation-delay: 0.4s; }

/* Logo Carousel */
.logo-carousel-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.03);
    border-top: 1px solid rgba(26, 26, 46, 0.1);
    border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}

.logo-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.logo-carousel {
    display: flex;
    animation: scroll-logos 25s linear infinite;
    width: calc(200% + 8rem);
    align-items: center;
}

.logo-item {
    flex: 0 0 calc(100vw / 6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 0 1rem;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 80px;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background: transparent;
}

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

@media (max-width: 1024px) {
    .logo-item {
        flex: 0 0 calc(100vw / 5);
    }
    
    .logo-item img {
        height: 70px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .logo-carousel-section {
        padding: 3rem 0;
    }
    
    .logo-item {
        flex: 0 0 calc(100vw / 4);
    }
    
    .logo-item img {
        height: 60px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        flex: 0 0 calc(100vw / 3);
    }
    
    .logo-item img {
        height: 50px;
        max-width: 120px;
    }
}

/* Enhanced Features Section */
.features-enhanced {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.02) 0%, rgba(139,79,159,0.03) 50%, rgba(26,26,46,0.02) 100%);
    position: relative;
    overflow: hidden;
}

.features-enhanced::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,79,159,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card-enhanced {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple) 0%, rgba(139,79,159,0.3) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card-enhanced:hover::before {
    transform: scaleX(1);
}

.feature-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.feature-card-enhanced:nth-child(2) { animation-delay: 0.3s; }
.feature-card-enhanced:nth-child(3) { animation-delay: 0.5s; }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139,79,159,0.1) 0%, rgba(139,79,159,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-purple);
    transition: all 0.4s ease;
}

.feature-card-enhanced:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-purple) 0%, rgba(139,79,159,0.8) 100%);
    color: var(--color-white);
    transform: rotate(5deg) scale(1.1);
}

.feature-card-enhanced h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card-enhanced p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.feature-highlight {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139,79,159,0.08) 0%, rgba(139,79,159,0.03) 100%);
    border-left: 3px solid var(--color-purple);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-purple);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.02) 0%, rgba(139,79,159,0.03) 50%, rgba(26,26,46,0.02) 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,79,159,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,26,46,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple) 0%, rgba(139,79,159,0.3) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.5s; }

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139,79,159,0.1) 0%, rgba(139,79,159,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-purple);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--color-purple) 0%, rgba(139,79,159,0.8) 100%);
    color: var(--color-white);
    transform: rotate(5deg) scale(1.1);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.value-highlight {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139,79,159,0.08) 0%, rgba(139,79,159,0.03) 100%);
    border-left: 3px solid var(--color-purple);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-purple);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.values-cta {
    margin-top: 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.values-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: var(--color-white);
    border-left: 5px solid var(--color-purple);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-navy);
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.values-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--color-purple);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.feature-card .icon { 
    font-size: 3rem; 
    display: block; 
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

/* About Preview */
.about-preview { background-color: var(--color-off-white); }
.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-preview-video {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.about-preview-video video {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    display: block;
}

/* Services Grid (Global) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 3rem;
}

.service-card.featured {
    border: 2px solid var(--color-purple);
    transform: scale(1.02);
}

.service-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* Services Page Specific Styles */
.services-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(26,26,46,0.03) 0%, rgba(139,79,159,0.02) 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139,79,159,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--color-text);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.services-main-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.service-card-enhanced {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-purple) 0%, rgba(139,79,159,0.4) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.service-card-enhanced:nth-child(2) { animation-delay: 0.3s; }
.service-card-enhanced:nth-child(3) { animation-delay: 0.5s; }

.service-card-enhanced.featured {
    border: 2px solid var(--color-purple);
    background: linear-gradient(135deg, rgba(139,79,159,0.02) 0%, var(--color-white) 100%);
    transform: translateY(20px) scale(1.03);
}

.service-card-enhanced.featured:hover {
    transform: translateY(-15px) scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--color-purple) 0%, rgba(139,79,159,0.9) 100%);
    color: var(--color-white);
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(139,79,159,0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(139,79,159,0.1) 0%, rgba(139,79,159,0.05) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-purple);
    transition: all 0.4s ease;
}

.service-card-enhanced:hover .service-icon {
    background: linear-gradient(135deg, var(--color-purple) 0%, rgba(139,79,159,0.9) 100%);
    color: var(--color-white);
    transform: rotate(-5deg) scale(1.05);
}

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139,79,159,0.1);
    color: var(--color-purple);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.service-card-enhanced h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-purple);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.service-price span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    font-family: var(--font-primary);
}

.service-description {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    flex-grow: 1;
}

.service-card-enhanced .service-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.service-card-enhanced .service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-text);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-card-enhanced .service-features li:last-child {
    border-bottom: none;
}

.service-card-enhanced .service-features li svg {
    color: var(--color-purple);
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    margin-top: 1.5rem;
    justify-content: center;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.02) 0%, rgba(139,79,159,0.03) 50%, rgba(26,26,46,0.02) 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,79,159,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.result-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.3s; }
.result-card:nth-child(3) { animation-delay: 0.5s; }

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139,79,159,0.1) 0%, rgba(139,79,159,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-purple);
    transition: all 0.4s ease;
}

.result-card:hover .result-icon {
    background: linear-gradient(135deg, var(--color-purple) 0%, rgba(139,79,159,0.9) 100%);
    color: var(--color-white);
    transform: scale(1.1);
}

.result-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.result-metric {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-purple);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.result-metric span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-card p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Client Outcomes Section */
.client-outcomes-section {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.outcome-card {
    background: linear-gradient(135deg, rgba(26,26,46,0.02) 0%, rgba(139,79,159,0.02) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-purple);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.outcome-card:nth-child(1) { animation-delay: 0.05s; }
.outcome-card:nth-child(2) { animation-delay: 0.1s; }
.outcome-card:nth-child(3) { animation-delay: 0.15s; }
.outcome-card:nth-child(4) { animation-delay: 0.2s; }
.outcome-card:nth-child(5) { animation-delay: 0.25s; }
.outcome-card:nth-child(6) { animation-delay: 0.3s; }
.outcome-card:nth-child(7) { animation-delay: 0.35s; }
.outcome-card:nth-child(8) { animation-delay: 0.4s; }
.outcome-card:nth-child(9) { animation-delay: 0.45s; }

.outcome-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    background: var(--color-white);
    border-left-width: 6px;
}

.outcome-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-purple) 0%, rgba(139,79,159,0.85) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    box-shadow: 0 5px 20px rgba(139,79,159,0.3);
    transition: all 0.3s ease;
}

.outcome-card:hover .outcome-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(139,79,159,0.4);
}

.outcome-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.outcome-card p {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.outcome-card p strong {
    color: var(--color-purple);
    font-weight: 700;
}

.outcomes-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26,26,46,0.03) 0%, rgba(139,79,159,0.03) 100%);
    border-radius: 16px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.outcomes-tagline {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card { display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-navy);
    line-height: 1.8;
}

.testimonial-card .author { margin-top: 2rem; display: flex; flex-direction: column; }
.author strong { color: var(--color-navy); font-size: 1.1rem; }
.author span { font-size: 0.85rem; color: var(--color-purple); font-weight: 600; text-transform: uppercase; }

/* Video Section */
.video-section {
    background: var(--color-gradient-2);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23b8860b" opacity="0.1"/></svg>');
    pointer-events: none;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    background: var(--color-navy);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Contact Section */
.contact-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(26,26,46,0.03) 0%, rgba(139,79,159,0.02) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139,79,159,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.contact-main-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-layout-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-card {
    text-align: center;
}

.contact-info-card h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-method-card {
    background: linear-gradient(135deg, rgba(26,26,46,0.02) 0%, rgba(139,79,159,0.02) 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-purple);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-method-card:nth-child(1) { animation-delay: 0.2s; }
.contact-method-card:nth-child(2) { animation-delay: 0.4s; }

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: var(--color-white);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139,79,159,0.1) 0%, rgba(139,79,159,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-purple);
    transition: all 0.4s ease;
}

.contact-method-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--color-purple) 0%, rgba(139,79,159,0.9) 100%);
    color: var(--color-white);
    transform: scale(1.1);
}

.contact-method-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-method-card p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.social-links-enhanced {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-purple);
    border-radius: 8px;
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-purple);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,79,159,0.3);
}

.social-link svg {
    color: var(--color-purple);
    transition: color 0.3s ease;
}

.social-link:hover svg {
    color: var(--color-white);
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-method-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-method-item h3 span {
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--color-white);
}

.form-group { margin-bottom: 2rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 700; color: var(--color-navy); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

/* Form error states */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc2626;
    background-color: #fef2f2;
}

/* Final CTA */
.final-cta { background-color: var(--color-navy); color: var(--color-white); }
.final-cta h2, .final-cta p { color: var(--color-white); }
.final-cta .cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

/* Footer */
.footer { background-color: #0d0d1a; color: var(--color-white); padding: 6rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand .logo-text { color: var(--color-white); margin-bottom: 1.5rem; display: block; }
.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.8; }

.footer-links h4 { 
    color: var(--color-white); 
    font-family: var(--font-sans); 
    font-size: 1rem; 
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem; 
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 1rem; }
.footer-links ul li a { 
    color: rgba(255,255,255,0.6); 
    text-decoration: none; 
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links ul li a:hover { color: var(--color-purple); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* Accessibility */
.skip-link {
    position: fixed;
    top: -100px;
    left: 2rem;
    background: var(--color-purple);
    color: white;
    padding: 1rem 2rem;
    z-index: 2000;
    transition: top 0.3s;
    font-weight: 700;
    border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

/* Enhanced focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-purple);
    outline-offset: 3px;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive Queries */
@media (max-width: 1100px) {
    .hero-content, .about-preview-content { gap: 3rem; }
}

@media (max-width: 1024px) {
    .nav-links { gap: 1.5rem; }
    .hero-content, .about-preview-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .hero-text { order: 2; }
    .hero-image { order: 1; max-width: 500px; margin: 0 auto; }
    .hero-stats, .hero-cta { justify-content: center; }
    .about-preview-image, .about-preview-video { 
        max-width: 500px; 
        margin: 0 auto; 
    }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    
    .services-grid-enhanced,
    .values-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-enhanced.featured {
        transform: translateY(20px) scale(1);
    }
    
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-methods-enhanced {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    :root { --section-padding: 3rem; }
    .container { padding: 0 1.5rem; }
    .nav-content { padding: 0 1.5rem; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links a {
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-links .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-brand { grid-column: 1 / -1; }
    
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .services-grid-enhanced,
    .values-grid,
    .results-grid,
    .outcomes-grid,
    .features-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-hero {
        padding: 5rem 0 4rem;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .popular-badge {
        right: -30px;
        padding: 0.4rem 2.5rem;
        font-size: 0.65rem;
    }
    
    .service-icon,
    .value-icon,
    .result-icon,
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon svg,
    .value-icon svg,
    .result-icon svg,
    .feature-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .outcome-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .outcomes-cta {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .hero-tagline, .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .about-preview-content {
        gap: 3rem;
    }
    
    .about-preview-video {
        max-width: 100%;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .card, .value-card, .feature-card-enhanced, 
    .service-card-enhanced, .result-card, .outcome-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    :root { --section-padding: 2.5rem; }
    .container { padding: 0 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-cta, .final-cta .cta-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    
    h1 { 
        font-size: 1.75rem; 
        line-height: 1.2;
    }
    
    h2 { 
        font-size: 1.5rem;
        line-height: 1.3; 
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .logo-image { height: 40px; }
    .footer-logo { height: 50px; }
    
    .hero-stats .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .contact-layout {
        gap: 2rem;
    }
    
    .services-hero h1, .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-tagline, .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .service-price {
        font-size: 2rem;
    }
    
    .result-metric {
        font-size: 2.2rem;
    }
    
    .service-card-enhanced h3, .feature-card-enhanced h3 {
        font-size: 1.5rem;
    }
    
    .bio-image-secondary {
        bottom: -20px;
        right: -20px;
        width: 55%;
    }
    
    .values-quote {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
    }
    
    .outcome-card h3 {
        font-size: 1.2rem;
    }
    
    .outcomes-tagline {
        font-size: 1.3rem;
    }
    
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-info-card h2 {
        font-size: 1.75rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .card, .value-card, .feature-card-enhanced, 
    .service-card-enhanced, .result-card, .outcome-card,
    .contact-method-card {
        padding: 1.75rem 1.25rem;
    }
    
    .about-preview-content {
        gap: 2rem;
    }
    
    .video-wrapper {
        border-radius: 8px;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}
