/* Reset and base styles - Updated */
:root {
    /* Color Palette: 3 Neutrals + 1 Accent */
    --primary-dark: #1e293b;    /* Dark neutral */
    --primary-medium: #64748b;  /* Medium neutral */
    --primary-light: #f8fafc;   /* Light neutral */
    --accent-blue: #3b82f6;     /* Accent color */
    
    /* Extended palette for gradients */
    --accent-blue-dark: #1e40af;
    --accent-blue-light: #60a5fa;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background: var(--primary-light);
    font-size: 16px;
    font-weight: 400;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(55, 48, 163, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Container and layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 24px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 32px 64px rgba(44, 62, 80, 0.1),
        0 8px 16px rgba(44, 62, 80, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(30, 58, 138, 0.3) 20%, 
        rgba(59, 130, 246, 0.4) 50%, 
        rgba(55, 48, 163, 0.3) 80%, 
        transparent 100%);
}

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

/* Header */
.header {
    text-align: center;
    margin-bottom: 8px;
    position: relative;
}



.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 4px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(30, 58, 138, 0.2));
}

.tagline {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 400;
    margin: 0;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 24px;
}

.headline {
    font-size: 2.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #3730a3 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: slideInFromLeft 1.2s ease-out 0.3s both, gradientShift 4s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(30, 58, 138, 0.1);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.description {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
    animation: slideInFromRight 1.2s ease-out 0.6s both;
}

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

/* Services section */
.services {
    margin-bottom: 24px;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), transparent);
}

.services-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
}

.services-list {
    list-style: none;
    display: grid;
    gap: 24px;
}

.service-item {
    padding: 24px;
    border-left: 4px solid #cbd5e1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 0 12px 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid #cbd5e1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.06);
    backdrop-filter: blur(5px);
}

.service-item:hover {
    border-left-color: #1e3a8a;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(241, 245, 249, 1) 100%);
    border-color: rgba(30, 58, 138, 0.15);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 24px rgba(44, 62, 80, 0.1),
        0 4px 8px rgba(30, 58, 138, 0.05);
}

.service-item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.service-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

/* How It Works section */
.how-it-works {
    margin-bottom: 48px;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), transparent);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.01em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
}

.steps-container {
    display: grid;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.step:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.step:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.step:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.step:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(44, 62, 80, 0.12);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 
        0 0 24px rgba(30, 58, 138, 0.4),
        0 0 48px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #3730a3 0%, #3b82f6 50%, #1e3a8a 100%);
}

.step-content p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

/* About Me section */
.about-me-section {
    margin-bottom: 48px;
    position: relative;
}

.about-me-section::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), transparent);
}

.about-me-content {
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 16px rgba(44, 62, 80, 0.06),
        0 2px 4px rgba(44, 62, 80, 0.03);
    backdrop-filter: blur(10px);
}

.about-me-image-top {
    text-align: center;
    margin-bottom: 32px;
}

.personal-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 
        0 8px 16px rgba(44, 62, 80, 0.15),
        0 2px 4px rgba(44, 62, 80, 0.05);
}

.about-me-content p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.about-me-content p:last-child {
    margin-bottom: 0;
}

.about-me-content em {
    font-style: italic;
}

/* About section */
.about-section {
    margin-bottom: 48px;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 16px rgba(44, 62, 80, 0.06),
        0 2px 4px rgba(44, 62, 80, 0.03);
    backdrop-filter: blur(10px);
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
}

.about-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    flex-shrink: 0;
}

.headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 0 0 1px rgba(30, 58, 138, 0.1),
        0 8px 16px rgba(44, 62, 80, 0.1);
    transition: all 0.4s ease;
    filter: grayscale(100%) brightness(1.1);
}

.headshot:hover {
    filter: grayscale(0%) brightness(1);
    box-shadow: 
        0 0 0 2px rgba(30, 58, 138, 0.2),
        0 12px 24px rgba(44, 62, 80, 0.15);
    transform: scale(1.05);
}

/* LinkedIn button */
.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.linkedin-button:hover {
    background: linear-gradient(135deg, #005885 0%, #004666 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    color: white;
}

.linkedin-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.about-image {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 12px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 24px;
    box-sizing: border-box;
}

.sticky-nav a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.sticky-nav a:hover {
    background: var(--accent-blue);
    color: white;
}

/* Mobile Navigation - Responsive Design */
@media (max-width: 768px) {
    .sticky-nav {
        padding: 8px 12px;
        gap: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .sticky-nav::-webkit-scrollbar {
        display: none;
    }
    
    .sticky-nav a {
        padding: 6px 12px;
        font-size: 0.875rem;
        min-width: max-content;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .sticky-nav {
        padding: 6px 8px;
        gap: 8px;
    }
    
    .sticky-nav a {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .sticky-nav {
        padding: 4px 6px;
        gap: 6px;
    }
    
    .sticky-nav a {
        padding: 4px 6px;
        font-size: 0.75rem;
    }
}

/* Service icons and layout */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out both;
}

.service-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
}

.service-content strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-description {
    color: var(--primary-medium);
    font-size: 1rem;
    line-height: 1.5;
}

/* Results list styling */
.results-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.results-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--primary-medium);
    line-height: 1.6;
}

.results-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Mission Ranch link styling */
.mission-ranch-link {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mission-ranch-link:hover {
    color: var(--accent-blue-dark);
    text-decoration: underline;
}

/* Contact section */
.contact-section {
    text-align: center;
    padding: 32px 32px;
    background: var(--primary-dark);
    border-radius: 16px;
    margin-bottom: 24px;
}

.contact-section .contact-info {
    color: var(--primary-light);
    font-size: 1.125rem;
    margin: 0;
}

.contact-section .email-link {
    color: var(--accent-blue-light);
    font-weight: 600;
}

.contact-section .email-link:hover {
    color: white;
}

/* Adjust container for sticky nav */
.container {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .container {
        margin-top: 70px;
    }
}

/* Update color palette usage throughout */
.headline {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 50%, var(--accent-blue-dark) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--primary-medium);
}

.services-title, .section-title {
    color: var(--primary-dark);
}

.email-link {
    color: var(--accent-blue);
}

.email-link:hover {
    color: var(--accent-blue-dark);
}

/* Testimonial section */
.testimonial {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.04) 0%, rgba(55, 48, 163, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(30, 58, 138, 0.1);
    font-family: serif;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .testimonial::before {
        top: 10px;
        left: 15px;
        font-size: 3rem;
    }
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.testimonial-attribution {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    font-style: normal;
}

/* Client focus section */
.client-focus {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.06) 0%, rgba(55, 48, 163, 0.06) 100%);
    border-radius: 16px;
    border: 1px solid rgba(30, 58, 138, 0.12);
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    position: relative;
}

.client-focus::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), transparent);
}

.focus-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Call to action */
.cta {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #3730a3 100%);
    background-size: 200% 100%;
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 
        0 20px 40px rgba(30, 58, 138, 0.3),
        0 8px 16px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: ctaGradientShift 6s ease-in-out infinite;
}

@keyframes ctaGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 32px 64px rgba(30, 58, 138, 0.4),
        0 16px 32px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.cta:hover::before {
    left: 100%;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-headline {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-info {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.email-link:hover {
    border-bottom-color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    animation: premiumPulse 2s infinite;
}

@keyframes premiumPulse {
    0% { 
        transform: scale(1); 
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    }
    50% { 
        transform: scale(1.02); 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    100% { 
        transform: scale(1); 
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    }
}

/* Legacy pulse animation removed - replaced with premiumPulse */

/* Footer */
.footer {
    text-align: center;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.footer-text {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
        gap: 32px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .headline {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 1.125rem;
    }
    
    .services-title {
        font-size: 1.375rem;
        margin-bottom: 24px;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .service-item strong {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.9375rem;
    }
    
    .client-focus {
        padding: 24px;
    }
    
    .focus-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    
    .step {
        padding: 20px;
        gap: 16px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9375rem;
    }
    
    .about-me-content {
        padding: 32px 24px;
        text-align: center;
    }
    
    .about-me-image-top {
        margin-bottom: 24px;
    }
    
    .about-me-content p {
        font-size: 1rem;
        margin-bottom: 16px;
        text-align: left;
    }
    
    .personal-photo {
        width: 150px;
        height: 150px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }
    
    .testimonial-title {
        font-size: 1.375rem;
        margin-bottom: 24px;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .headshot {
        width: 100px;
        height: 100px;
    }
    
    .testimonial {
        padding: 32px 24px;
    }
    
    .testimonial-quote {
        font-size: 1.125rem;
    }
    
    .cta {
        padding: 32px 24px;
    }
    
    .cta-headline {
        font-size: 1.5rem;
    }
    
    .cta-description,
    .contact-info {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 32px 16px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .headline {
        font-size: 1.75rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.375rem;
        margin-bottom: 24px;
    }
    
    .step {
        padding: 16px;
        gap: 12px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .step-content p {
        font-size: 0.875rem;
    }
    
    .about-content {
        padding: 24px 16px;
    }
    
    .testimonial-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 0.9375rem;
    }
    
    .headshot {
        width: 80px;
        height: 80px;
    }
    
    .testimonial {
        padding: 24px 16px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .service-item {
        padding: 16px;
    }
    
    .cta {
        padding: 24px 16px;
    }
}

/* Print styles */
@media print {
    .container {
        max-width: none;
        padding: 0;
        gap: 24px;
    }
    
    .cta {
        background: transparent;
        color: #1e3a8a;
        border: 2px solid #1e3a8a;
    }
    
    .cta-headline,
    .email-link {
        color: #1e3a8a;
    }
    
    .cta-description,
    .contact-info {
        color: #475569;
    }
}

/* Premium interactive effects */
@keyframes luxuryShimmer {
    0% { background-position: -300px 0; }
    100% { background-position: 300px 0; }
}

.services-title {
    position: relative;
    overflow: hidden;
}

.services-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.1), 
        rgba(255, 255, 255, 0.3), 
        rgba(59, 130, 246, 0.1), 
        transparent);
    background-size: 300px 100%;
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.services-title:hover::before {
    transform: translateX(100%);
}

/* Luxury floating particles effect */
@keyframes luxuryFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-10px) rotate(120deg); 
        opacity: 0.6;
    }
    66% { 
        transform: translateY(5px) rotate(240deg); 
        opacity: 0.4;
    }
}

/* Subtle parallax effect for background */
@media (prefers-reduced-motion: no-preference) {
    body {
        background-attachment: fixed;
    }
}
