:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #38a169;
    --accent-hover: #2f855a;
    --gold: #d69e2e;
    --cream: #fffbf0;
    --warm-white: #fefcf9;
    --text: #1a202c;
    --text-muted: #4a5568;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--warm-white);
    font-size: 17px;
    -webkit-text-size-adjust: 100%;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 24px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }

p { margin-bottom: 16px; color: var(--text-muted); }

.highlight {
    background: linear-gradient(120deg, #faf089 0%, #faf089 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-height: 48px; /* Touch target improvement */
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(56, 161, 105, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.5);
}

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

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

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

.btn-phone:hover {
    background: var(--primary-light);
}

/* ===== STICKY HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px; /* Touch target */
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-badge svg {
    color: var(--accent);
}

.hero-image {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.15;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cream);
}

.hero-card-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
}

.hero-card-title {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--gold);
    font-size: 20px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    background: var(--primary);
    color: white;
    padding: 16px 0;
    text-align: center;
}

.urgency-banner p {
    color: white;
    margin: 0;
    font-size: 15px;
}

.urgency-banner strong {
    color: var(--gold);
}

/* ===== PROBLEM/AGITATE SECTION ===== */
.problem-section {
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fed7d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c53030;
}

.problem-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.problem-text p {
    font-size: 15px;
    margin: 0;
}

.solution-preview {
    background: var(--cream);
    border-radius: 16px;
    padding: 48px;
    position: relative;
}

.solution-preview h3 {
    color: var(--accent);
    margin-bottom: 24px;
}

.solution-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--cream);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--accent);
}

/* ===== HOW IT WORKS ===== */
.process-section {
    background: white;
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.testimonials-header h2 {
    color: white;
}

.testimonials-header .rating-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 100px;
    margin-top: 16px;
}

.testimonials-header .stars {
    font-size: 24px;
}

.testimonials-header .rating-text {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    color: var(--text);
}

.testimonial-card .stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.author-name {
    font-weight: 600;
    color: var(--text);
}

.author-location {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--cream);
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

.pricing-card.featured h3,
.pricing-card.featured .price-amount {
    color: white;
}

.pricing-card.featured p {
    color: rgba(255,255,255,0.8);
}

.pricing-card.featured .feature-list li {
    color: rgba(255,255,255,0.9);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.pricing-card .tagline {
    font-size: 14px;
    margin-bottom: 24px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-card.featured .price-period {
    color: rgba(255,255,255,0.7);
}

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
}

.feature-list svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.pricing-card.featured .feature-list svg {
    color: var(--gold);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--primary);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--cream);
}

/* ===== JENNIFER'S NOTE ===== */
.note-section {
    background: white;
}

.note-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

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

.note-author img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--cream);
    box-shadow: var(--shadow-md);
}

.note-author h3 {
    margin-bottom: 4px;
}

.note-author p {
    font-size: 15px;
}

.note-content {
    background: #fffef5;
    border-left: 4px solid var(--gold);
    padding: 40px;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.note-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.note-content p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.8;
}

.note-content .signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 24px;
}

/* ===== FINAL CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #276749 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.cta-section .btn-phone {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-section .btn-phone:hover {
    background: rgba(255,255,255,0.25);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-size: 15px;
}

.footer h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    min-height: 44px; /* Touch target */
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.phone {
    background: var(--accent);
    color: white;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 60px 0 100px
    }
    .hero-grid,
    .problem-grid,
    .note-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .note-author {
        order: -1;
    }

    .note-author img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-cta .btn {
        display: none;
    }

    .header-phone {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Hero mobile improvements */
    .hero {
        padding: 60px 0 100px
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-quote {
        font-size: 1.1rem;
    }

    /* Problem section mobile */
    .problem-grid {
        gap: 40px;
    }

    .problem-list li {
        padding: 16px 0;
    }

    .problem-icon {
        width: 40px;
        height: 40px;
    }

    .problem-icon svg {
        width: 20px;
        height: 20px;
    }

    .solution-preview {
        padding: 24px;
    }

    .solution-stats {
        gap: 16px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Services mobile */
    .service-card {
        padding: 24px 20px;
    }

    .service-card:hover {
        transform: none;
    }

    /* Process section mobile */
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    /* Testimonials mobile */
    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-header .rating-large {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonials-grid {
        gap: 16px;
    }

    /* Pricing mobile */
    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    /* Note section mobile */
    .note-grid {
        gap: 32px;
    }

    .note-content {
        padding: 24px;
        padding-left: 20px;
        border-left-width: 3px;
    }

    .note-content::before {
        font-size: 50px;
        top: 10px;
        left: 10px;
    }

    .note-content p {
        font-size: 15px;
    }

    .note-content .signature {
        font-size: 1.1rem;
    }

    /* CTA section mobile */
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    /* Floating CTA mobile positioning */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

    /* Urgency banner mobile */
    .urgency-banner {
        padding: 12px 0;
    }

    .urgency-banner p {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero {
        padding: 40px 0 100px
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .solution-stats {
        grid-template-columns: 1fr;
    }

    .trust-badge {
        font-size: 13px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .header-phone span {
        display: none;
    }

    h2 {
        font-size: 1.5rem;
    }

    .note-author img {
        width: 120px;
        height: 120px;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .animate-in {
        animation: none;
    }

    .service-card:hover,
    .pricing-card:hover,
    .btn:hover,
    .floating-btn:hover {
        transform: none;
    }
}


/* About */
.page-hero{padding:160px 0 80px;background:linear-gradient(135deg,var(--cream) 0%,var(--warm-white) 100%);text-align:center;position:relative;overflow:hidden}.page-hero h1{margin-bottom:16px}.page-hero .subtitle{font-size:1.25rem;color:var(--text-muted);max-width:600px;margin:0 auto}.jennifer-section{background:#fff}.jennifer-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:center}.jennifer-image{position:relative}.jennifer-image img{width:100%;max-width:400px;border-radius:16px;box-shadow:var(--shadow-lg)}.jennifer-image::before{content:'';position:absolute;top:-20px;left:-20px;width:100%;height:100%;border:3px solid var(--accent);border-radius:16px;z-index:-1}.jennifer-badge{position:absolute;bottom:-20px;right:-20px;background:var(--primary);color:#fff;padding:20px 24px;border-radius:12px;box-shadow:var(--shadow-md)}.jennifer-badge .number{font-family:var(--font-display);font-size:2.5rem;font-weight:700;line-height:1}.jennifer-badge .label{font-size:14px;opacity:.9}.jennifer-content h2{margin-bottom:8px}.jennifer-content .title{color:var(--accent);font-weight:600;font-size:1.1rem;margin-bottom:24px}.credentials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:32px;padding-top:32px;border-top:1px solid var(--border)}.credential{text-align:center}.credential .number{font-family:var(--font-display);font-size:2rem;font-weight:700;color:var(--primary);line-height:1}.credential .label{font-size:14px;color:var(--text-muted);margin-top:4px}.mission-section{background:var(--cream)}.mission-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}.mission-card{background:#fff;padding:40px 32px;border-radius:12px;box-shadow:var(--shadow-sm);text-align:center}.mission-icon{width:72px;height:72px;background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 24px;color:#fff}.mission-card p{font-size:15px;margin:0}.industries-section{background:#fff}.industries-header{text-align:center;max-width:600px;margin:0 auto 60px}.industries-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}.industry-card{background:var(--cream);padding:32px 24px;border-radius:12px;text-align:center;transition:all .3s ease;border:2px solid transparent}.industry-card:hover{transform:translateY(-4px);border-color:var(--accent);background:#fff}.industry-icon{width:56px;height:56px;background:#fff;border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;color:var(--primary);box-shadow:var(--shadow-sm)}.industry-card:hover .industry-icon{background:var(--primary);color:#fff}.industry-card h4{font-family:var(--font-body);font-weight:600;font-size:1rem;margin:0}.testimonials-section{background:var(--primary);color:#fff;position:relative;overflow:hidden}.testimonials-header{text-align:center;margin-bottom:60px;position:relative}.testimonials-header h2{color:#fff}.testimonials-header .rating-large{display:inline-flex;align-items:center;gap:12px;background:rgba(255,255,255,0.1);padding:12px 24px;border-radius:100px;margin-top:16px}.testimonials-header .stars{font-size:24px;color:var(--gold)}.testimonials-header .rating-text{color:rgba(255,255,255,0.9);font-size:16px}.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;position:relative}.testimonial-card{background:#fff;padding:32px;border-radius:12px;color:var(--text)}.testimonial-card .stars{font-size:18px;color:var(--gold);margin-bottom:16px}.testimonial-quote{font-size:15px;line-height:1.7;margin-bottom:24px;color:var(--text)}.testimonial-author{display:flex;align-items:center;gap:12px}.author-avatar{width:48px;height:48px;background:var(--cream);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:600;color:var(--primary)}.author-name{font-weight:600;color:var(--text)}.author-location{font-size:14px;color:var(--text-muted)}.image-banner{height:400px;background-size:cover;background-position:center;background-attachment:fixed;position:relative}.image-banner::after{content:'';position:absolute;inset:0;background:linear-gradient(to bottom,rgba(26,54,93,0.3),rgba(26,54,93,0.5))}.image-banner-content{position:relative;z-index:1;height:100%;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff}.image-banner-content h2{color:#fff;font-size:clamp(1.75rem,4vw,2.5rem);max-width:700px}.cta-section{background:linear-gradient(135deg,var(--accent) 0%,#276749 100%);color:#fff;text-align:center}.cta-section h2{color:#fff;margin-bottom:16px}.cta-section p{color:rgba(255,255,255,0.9);font-size:1.25rem;max-width:600px;margin:0 auto 32px}.cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}.cta-section .btn-primary{background:#fff;color:var(--accent)}.cta-section .btn-primary:hover{background:var(--cream)}.cta-section .btn-phone{background:rgba(255,255,255,0.15);color:#fff;border:2px solid rgba(255,255,255,0.3)}.cta-section .btn-phone:hover{background:rgba(255,255,255,0.25)}.cta-benefits{display:flex;justify-content:center;gap:32px;margin-top:32px;flex-wrap:wrap}.cta-benefit{display:flex;align-items:center;gap:8px;font-size:15px;color:rgba(255,255,255,0.9)}.footer{background:var(--primary);color:#fff;padding:60px 0 30px}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}.footer-brand p{color:rgba(255,255,255,0.7);margin-top:16px;font-size:15px}.footer h4{color:#fff;font-size:16px;margin-bottom:20px;font-family:var(--font-body);font-weight:600}.footer-links{list-style:none}.footer-links li{margin-bottom:12px}.footer-links a{color:rgba(255,255,255,0.7);text-decoration:none;font-size:15px;transition:color .2s}.footer-links a:hover{color:#fff}.footer-bottom{padding-top:30px;border-top:1px solid rgba(255,255,255,0.1);display:flex;justify-content:space-between;align-items:center;font-size:14px;color:rgba(255,255,255,0.6)}.floating-cta{position:fixed;bottom:24px;right:24px;z-index:999}.floating-btn{width:60px;height:60px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-lg);transition:all .3s ease;text-decoration:none;background:var(--accent);color:#fff}.floating-btn:hover{transform:scale(1.1)}@media(max-width:1024px){.industries-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:900px){.jennifer-grid,.testimonials-grid,.mission-grid{grid-template-columns:1fr}.jennifer-grid{gap:40px}.jennifer-image{order:-1;text-align:center}.jennifer-image::before{display:none}.jennifer-badge{position:static;display:inline-block;margin-top:20px}.footer-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:768px){.section{padding:60px 0}.nav-links{display:none}.mobile-menu-btn{display:block}.header-cta .btn{display:none}.industries-grid,.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column;gap:16px;text-align:center}.cta-buttons{flex-direction:column}.cta-buttons .btn{width:100%}.cta-benefits{flex-direction:column;align-items:center;gap:16px}.image-banner{background-attachment:scroll;height:300px}}

/* Services */
/* Services Detail Section */
.services-detail-section {
    background: var(--cream);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-detail-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.service-tagline {
    color: var(--accent);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 20px !important;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    color: var(--text-muted);
}

.service-features svg {
    color: var(--accent);
    flex-shrink: 0;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Why Choose Section */
.why-choose-section {
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-content h2 {
    margin-bottom: 16px;
}

.why-choose-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.why-choose-stats {
    display: flex;
    gap: 40px;
}

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

.why-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.why-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.why-choose-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-image {
        order: -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-detail-card {
        flex-direction: column;
        padding: 32px 24px;
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-stats {
        flex-direction: column;
        gap: 24px;
    }
}



/* Pricing Main Section */
.pricing-main-section {
    background: var(--cream);
}

.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    z-index: 1;
}

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

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-header h3 {
    color: white;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.pricing-card.featured .pricing-tagline {
    color: rgba(255,255,255,0.8);
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-card.featured .price-amount {
    color: white;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-card.featured .price-period {
    color: rgba(255,255,255,0.7);
}

.pricing-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-note {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.9);
}

.pricing-features svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.pricing-card.featured .pricing-features svg {
    color: var(--gold);
}

.pricing-cta {
    margin-top: auto;
}

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

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--primary);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--cream);
}

/* Special Plans Section */
.special-plans-section {
    background: white;
}

.special-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.special-plan-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.special-plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.special-plan-card.highlight {
    background: linear-gradient(135deg, #e6fffa 0%, #ebf8ff 100%);
}

.special-plan-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.special-plan-content h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.special-plan-tagline {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px !important;
}

.special-plan-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.special-plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.special-plan-features li {
    position: relative;
    padding-left: 20px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
    color: var(--text-muted);
}

.special-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background: var(--cream);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 900px) {
    .special-plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .special-plan-card {
        flex-direction: column;
        padding: 32px 24px;
    }

    .special-plan-icon {
        width: 56px;
        height: 56px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}
