:root {
    /* Colors - Premium Light Theme */
    --bg-body: #ffffff;
    --bg-secondary: #f8fafc;
    /* Very light gray for alternating sections */
    --bg-card: #ffffff;

    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-accent: #2563eb;
    /* Royal Blue */

    --accent-primary: #0f172a;
    /* Deep Navy - Trustworthy, Premium */
    --accent-secondary: #3b82f6;
    /* Bright Blue - Action */

    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Spacing - More Compact */
    --container-width: 1100px;
    /* Tighter container */
    --header-height: 80px;
    --section-spacing: 80px;
    /* Reduced from 120px */
}

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

body {
    background-color: var(--bg-body);
    background-image:
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(147, 51, 234, 0.1) 0px, transparent 50%),
        radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 32px 32px;
    background-attachment: fixed;
    /* Parallax-like feel */
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Crucial for premium feel */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    /* Larger click area */
    border-radius: 50px;
    /* Pill shape is more modern */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #1e293b;
    /* Slightly lighter navy */
}

.btn-outline {
    background: transparent;
    border-color: var(--border-light);
    color: var(--text-primary);
}

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

.section-padding {
    padding: var(--section-spacing) 0;
}

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

.text-gradient {
    color: var(--accent-secondary);
    background: none;
    -webkit-text-fill-color: initial;
    /* Removed gradient for a cleaner, more solid look */
}

.grid {
    display: grid;
    gap: 24px;
    /* Tighter gap */
}

/* Premium Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    /* More transparent */
    backdrop-filter: blur(20px) saturate(180%);
    /* Stronger blur & saturation */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 2px 4px -1px rgba(0, 0, 0, 0.02),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    /* Inner glow */
}

.glass-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: white;
}

/* Full Width Fluid Glass Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    /* Starts very transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 40px;
    animation: fluidDrop 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transform-origin: top center;
}

@keyframes fluidDrop {
    0% {
        transform: translateY(-100%) scaleY(0);
        opacity: 0;
        border-radius: 0 0 50% 50%;
        /* Drop shape */
    }

    60% {
        transform: translateY(10px) scaleY(1.1);
        border-radius: 0 0 20% 20%;
    }

    100% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
        border-radius: 0;
    }
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Enhanced Cards - Stand Out More */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    /* Higher opacity to stand out */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 1);
    /* Solid white border */
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        /* Deeper shadow */
        0 4px 10px -5px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #ffffff;
    box-shadow:
        0 25px 50px -12px rgba(59, 130, 246, 0.15),
        /* Blue glow */
        0 10px 20px -10px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-secondary);
}

.dot {
    color: var(--accent-secondary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    /* More space between links */
}

.nav-list a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-list a:not(.btn):hover {
    color: var(--accent-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section - Compact & Punchy */
.hero {
    padding-top: 160px;
    /* Account for floating header */
    padding-bottom: 60px;
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    /* Fade out dots at bottom */
}

.hero::after {
    display: none;
    /* Remove old overlay */
}

.hero-container {
    max-width: 800px;
    /* Tighter focus */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    /* Slightly smaller, more refined */
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 auto 32px;
    max-width: 500px;
    font-weight: 400;
}

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

.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Services Grid - Symmetrical 2x2 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Perfect symmetry */
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    /* Inherits glass-card styles now */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
    /* Equal height */
}

/* Removed the span rule to force equal sizing */
.service-card:nth-child(1) {
    grid-column: auto;
    background: rgba(255, 255, 255, 0.65);
    /* Match others */
}

.service-card .icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: start;
    /* Align to top */
}

.pricing-card {
    width: 100%;
    position: relative;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--accent-secondary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-hover);
}

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

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.upfront-price {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.upfront-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.monthly-price {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-card .price-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.features-list {
    margin-bottom: 30px;
    flex-grow: 1;
    /* Push button to bottom */
}

/* Peace of Mind Banner */
.peace-of-mind-banner {
    margin-top: 60px;
    text-align: center;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
}

.peace-of-mind-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.pom-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-weight: 500;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.features-list li span {
    color: var(--accent-secondary);
    font-weight: bold;
    background: rgba(59, 130, 246, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.full-width {
    width: 100%;
}

.setup-fee {
    display: none;
}

/* Why Us Section */
.why-us-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    margin-bottom: 25px;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.benefits-list p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method .icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
}

.method h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-link:hover {
    color: var(--accent-secondary);
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-secondary);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* CTA Section */
.cta-card {
    background: var(--accent-primary);
    /* Dark navy background for contrast */
    color: white;
    border: none;
    text-align: center;
    padding: 80px 20px;
}

.cta-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    color: #cbd5e1;
    /* Light slate */
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-card .btn-primary {
    background: white;
    color: var(--accent-primary);
}

.cta-card .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Dark Footer */
.footer {
    background: #0f172a;
    /* Slate 900 */
    color: white;
    padding: 100px 0 40px;
    border-top: none;
}

.footer-col h4 {
    color: white;
}

.footer-desc {
    color: #94a3b8;
    /* Slate 400 */
}

.footer-links-list a {
    color: #94a3b8;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    /* Slate 800 */
    color: #64748b;
    margin-top: 60px;
}

.footer .logo {
    color: white;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(1) {
        grid-column: span 1;
    }
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    /* Hidden by default */
}

.floating-contact-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.floating-contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}

.floating-contact-btn svg {
    width: 28px;
    height: 28px;
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

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

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Contact Wizard Container */
.contact-wizard-container {
    max-width: 800px;
    margin: 40px auto 0;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.wizard-progress {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-bar {
    flex-grow: 1;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    /* Dynamic via JS */
    background: var(--accent-primary);
    transition: width 0.4s ease;
    id: "progress-fill";
    /* Helper for JS targeting if needed, though usually style width directly */
}

/* Helper class for JS to update width */
.progress-bar-fill {
    height: 100%;
    background: var(--accent-primary);
    width: 20%;
    transition: width 0.4s ease;
}

.steps-indicator {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

/* Chips Grid */
.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.chip-btn {
    background: white;
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    border-radius: 50px;
    /* Pill shape */
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.chip-btn:hover {
    border-color: var(--accent-secondary);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.chip-btn.selected {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Contact Footer */
.contact-footer {
    margin-top: 40px;
    color: var(--text-secondary);
}

.contact-footer a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.option-btn {
    background: white;
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-btn strong {
    font-weight: 600;
    color: var(--text-primary);
}

.option-btn .sub-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.option-btn:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.option-btn.selected {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.option-btn.selected strong,
.option-btn.selected .sub-text {
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-wizard-container input,
.contact-wizard-container textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

/* Fix textarea resize */
.contact-wizard-container textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

.contact-wizard-container input:focus,
.contact-wizard-container textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-wizard-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.required {
    color: #ef4444;
    /* Red asterisk */
}

/* Validation Warning */
.validation-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #991b1b;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}

.validation-warning svg {
    flex-shrink: 0;
    stroke: #ef4444;
}

.wizard-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.wizard-subtitle {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content ul {
    list-style: none;
    margin: 20px 0;
}

.modal-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.modal-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {

    .hero-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-visual,
    .why-visual {
        display: none;
        /* Simplify for mobile/tablet for now */
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* =================================
   NEW TRUST SIGNAL SECTIONS
   ================================= */

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-card {
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

/* Placeholder backgrounds for missing images */
.placeholder-construction {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-salon {
    background: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-legal {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stars {
    color: #f59e0b;
    /* Amber */
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card .quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.attribution {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.attribution strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.attribution span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Team Section */
.team-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.team-image-placeholder {
    position: relative;
}

.placeholder-photo {
    background: var(--bg-secondary);
    aspect-ratio: 4/5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px dashed var(--border-light);
}

.placeholder-photo svg {
    color: var(--text-secondary);
    opacity: 0.5;
}

.placeholder-photo p {
    color: var(--text-secondary);
    font-weight: 500;
}

.team-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.team-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin-bottom: 8px;
}

.stat span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced Nav CTA Button */
.nav-list .btn-primary {
    background-color: var(--accent-primary);
    color: white;
    padding: 12px 28px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.nav-list .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
    background-color: #1e293b;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .team-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .stat {
        text-align: left;
        padding: 16px;
        background: var(--bg-secondary);
        border-radius: 12px;
    }
}

/* =================================
   HIGH-CONTRAST CTA BUTTON
   ================================= */

.btn-cta-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4) !important;
    transform: scale(1.05);
}

.btn-cta-highlight:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5) !important;
    transform: translateY(-3px) scale(1.05);
}

/* =================================
   SOCIAL MEDIA LINKS
   ================================= */

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.social-links a svg {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.social-links a:hover svg {
    color: white;
}

/* =================================
   CONTACT MODAL STYLES
   ================================= */

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.contact-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal-overlay.active .contact-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

.modal-close svg {
    color: #ef4444;
}

.modal-header {
    text-align: center;
    padding: 60px 40px 30px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-wizard-container {
    padding: 40px;
}

/* Discount Pricing */
.original-price {
    text-align: center;
    font-size: 0.95rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 6px;
    font-weight: 500;
}

/* CTA Section Updates */
.cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.cta-card {
    text-align: center;
    padding: 60px 40px !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-card p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-modal-content {
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-header {
        padding: 50px 24px 20px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .contact-wizard-container {
        padding: 24px;
    }

    .cta-card {
        padding: 40px 24px !important;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-modal-overlay {
        padding: 10px;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        top: 15px;
        right: 15px;
    }
}

/* =================================
   BENEFIT-DRIVEN PRICING STYLES
   ================================= */

/* Everything Included Section */
.included-features {
    margin: 40px 0 50px;
    padding: 40px !important;
}

.included-features h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

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

.included-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.included-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-secondary);
}

.included-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.included-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Plan-Specific Enhancements */
.plan-tagline {
    font-size: 1.05rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin: 8px 0;
    font-style: italic;
}

.best-for {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.everything-plus {
    margin: 20px 0 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose {
    background: rgba(var(--accent-secondary-rgb, 59, 130, 246), 0.05);
    border-left: 3px solid var(--accent-secondary);
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
}

.why-choose strong {
    display: block;
    font-size: 0.95rem;
    color: var(--accent-secondary);
    margin-bottom: 8px;
}

.why-choose p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-primary);
}

/* Add-Ons Section */
.addons-section {
    margin-top: 60px;
}

.addons-section h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.addons-table {
    width: 100%;
    border-collapse: collapse;
}

.addons-table thead {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.addons-table th {
    text-align: left;
    padding: 16px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-light);
}

.addons-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.addons-table td:first-child {
    width: 25%;
    color: var(--text-primary);
}

.addons-table td:nth-child(2) {
    width: 15%;
    color: var(--accent-secondary);
    font-size: 1.1rem;
}

.addons-table td:last-child {
    width: 60%;
}

.addons-table tbody tr:hover {
    background: rgba(15, 23, 42, 0.02);
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .included-grid {
        grid-template-columns: 1fr;
    }

    .included-features {
        padding: 24px !important;
    }

    .addons-table {
        font-size: 0.9rem;
    }

    .addons-table th,
    .addons-table td {
        padding: 12px;
    }

    .addons-table td:first-child,
    .addons-table td:nth-child(2),
    .addons-table td:last-child {
        width: auto;
    }
}

@media (max-width: 480px) {

    /* Stack table on very small screens */
    .addons-table thead {
        display: none;
    }

    .addons-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border-light);
        border-radius: 8px;
        padding: 12px;
    }

    .addons-table td {
        display: block;
        border: none;
        padding: 8px 0;
    }

    .addons-table td:before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
        color: var(--text-primary);
    }
}

/* =================================
   MODERN FOOTER STYLES
   ================================= */

/* Remove old footer grid, replace with flexbox */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 12px 0 0;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
}

.footer-links-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    flex: 1;
    max-width: 300px;
}

.footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-info {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--accent-secondary);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent-secondary);
}

.contact-item span {
    font-size: 0.95rem;
}

/* Modern Social Media Buttons */
.footer-social h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.social-links-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent-secondary);
    transform: translateX(4px);
}

.social-btn svg {
    flex-shrink: 0;
    color: var(--accent-secondary);
}

/* Hide old social links styling */
.social-links {
    display: none;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-brand {
        flex: 0 0 100%;
    }

    .footer-links {
        flex: 1;
    }

    .footer-contact {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 32px;
        padding: 40px 0 30px;
    }

    .footer-brand,
    .footer-contact {
        max-width: 100%;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}

/* =================================
   FINAL FOOTER DESIGN (GRID)
   ================================= */

.footer-modern {
    background-color: #0f172a;
    /* Slate 900 */
    color: #cbd5e1;
    /* Slate 300 */
    padding: 3rem 0;
    border-top: 1px solid #1e293b;
    /* Slate 800 */
    font-family: 'Inter', sans-serif;
}

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

/* Responsive Grid */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Brand Column */
.footer-col-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.025em;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col-brand .text-blue {
    color: #3b82f6;
    /* Blue 500 */
}

.footer-desc {
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.625;
    color: #94a3b8;
    /* Slate 400 */
    max-width: 20rem;
    /* max-w-xs */
}

/* Links Columns */
.footer-col-links h3,
.footer-col-contact h3 {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* tracking-wider */
    margin-bottom: 1rem;
}

.footer-col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links ul li {
    margin-bottom: 0.75rem;
    /* space-y-3 */
}

.footer-col-links ul li a {
    color: #cbd5e1;
    /* Slate 300 */
    text-decoration: none;
    font-size: 0.875rem;
    /* text-sm */
    transition: color 0.2s;
}

.footer-col-links ul li a:hover {
    color: #60a5fa;
    /* Blue 400 */
}

/* Contact Column */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    /* mb-6 */
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* gap-2 */
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    /* text-sm */
    color: #cbd5e1;
}

.contact-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-list li a:hover {
    color: #ffffff;
}

.contact-list .icon {
    width: 1rem;
    /* w-4 */
    height: 1rem;
    /* h-4 */
    color: #3b82f6;
    /* Blue 500 */
    flex-shrink: 0;
}

/* Social Icons Row */
.social-icons-row {
    display: flex;
    gap: 0.75rem;
    /* gap-3 */
}

.social-icon {
    width: 2.5rem;
    /* w-10 */
    height: 2.5rem;
    /* h-10 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    /* rounded */
    background-color: #1e293b;
    /* bg-slate-800 */
    color: #ffffff;
    border: 1px solid #334155;
    /* border-slate-700 */
    transition: all 0.2s;
}

.social-icon svg {
    width: 1.25rem;
    /* w-5 */
    height: 1.25rem;
    /* h-5 */
}

.social-icon.hover-blue:hover {
    background-color: #2563eb;
    /* bg-blue-600 */
    border-color: #2563eb;
}

.social-icon.hover-green:hover {
    background-color: #16a34a;
    /* bg-green-600 */
    border-color: #16a34a;
}

/* Footer Bottom */
.footer-bottom-row {
    border-top: 1px solid #1e293b;
    /* border-slate-800 */
    padding-top: 2rem;
    /* pt-8 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    /* text-sm */
    color: #64748b;
    /* text-slate-500 */
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    /* gap-6 */
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (min-width: 768px) {
    .footer-bottom-row {
        flex-direction: row;
    }

    .footer-bottom-links {
        margin-top: 0;
    }
}

/* =================================
   FOUNDER PROFILE STYLES
   ================================= */

.team-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.team-image-wrapper {
    flex: 0 0 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
    /* Standard portrait ratio */
    transform: scale(1.25) translateY(-20px);
    /* Zoom in and move up */
    transform-origin: center 30%;
    /* Focus slightly above center (face) */
}

.founder-badge {
    position: absolute;
    top: 20px;
    /* Moved to top */
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    /* Ultra-transparent glass */
    backdrop-filter: blur(16px);
    /* Strong blur for frosted effect */
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 20px;
    border-radius: 16px;
    /* Softer corners */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Crisp border */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 10px;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* Soft depth */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Ensure text readability */
}

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

.team-text {
    flex: 1;
}

.team-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 968px) {
    .team-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .team-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-badge {
        justify-content: center;
    }

    .team-text h3 {
        font-size: 2rem;
    }
}