/* Global Styles */
:root {
    --primary-purple: #8B5CF6;
    --primary-blue: #3B82F6;
    --accent-dark: #494D5F;
    --background: #FFFFFF;
    --light-purple: #F3F4F6;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-light: #E5E7EB;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --soft-purple: #A78BFA;
    --soft-blue: #60A5FA;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
    color: var(--text-dark);
}

/* New logo styles */
.navbar-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
        max-width: 160px;
    }
    
    .footer-logo {
        height: 50px;
        max-width: 200px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.logo-tagline {
    font-weight: 400;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-top: -6px;
    opacity: 1;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-purple);
}

.navbar-nav .nav-link.cta-nav {
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #E0E7FF 0%, #DBEAFE 100%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E0E7FF 0%, #DBEAFE 100%);
    opacity: 0.6;
}

.halftone-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: float 20s ease-in-out infinite;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: .25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-problem {
    color: var(--text-dark);
    font-size: 1em;
    font-weight: 700;
    opacity: 0.8;
}

.hero-solution {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    color: white;
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(0);
}

/* Apply the same effect to all CTA buttons */
.interactive-button,
.get-started-button {
    position: relative;
    overflow: hidden;
}

.interactive-button::before,
.get-started-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.interactive-button:hover::before,
.get-started-button:hover::before {
    left: 100%;
}

/* Hero Callout Cards */
.hero-callouts {
    margin: 0;
    width: 100%;
}

.hero-callout-card {
    background: white;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.hero-callout-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.callout-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.hero-callout-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hero-callout-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Empathy Section */
.empathy-section {
    background: white;
    padding: 5rem 0;
}

.empathy-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.empathy-challenges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.challenge-item {
    background: var(--light-purple);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F87171, #EF4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.challenge-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.challenge-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.empathy-solution {
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.empathy-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.empathy-solution h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.empathy-solution p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Value Proposition Section */
.value-prop-section {
    background-color: var(--light-purple);
    padding: 5rem 0;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Interactive Experience Section */
.interactive-section {
    background: linear-gradient(135deg, #DDD6FE 0%, #C7D2FE 50%, #BFDBFE 100%);
    padding: 5rem 0;
}

.interactive-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.ai-sparkle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    font-size: 2.5rem;
}

.ai-sparkle-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.interactive-card {
    background: white;
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.interactive-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.interactive-cta {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.interactive-button {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.interactive-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    color: white;
    text-decoration: none;
}

.interactive-button-outline {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.interactive-button-outline:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    text-decoration: none;
}

.interactive-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Social Proof Section */
.social-proof-section {
    background-color: white;
    padding: 5rem 0;
}

/* Get Started Today Section */
.get-started-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: float 20s ease-in-out infinite;
}

.get-started-content {
    position: relative;
    z-index: 2;
}

.get-started-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.get-started-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.get-started-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.get-started-cta {
    margin-top: 2rem;
}

.get-started-button {
    background: white;
    color: var(--primary-purple);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1rem;
}

.get-started-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    color: var(--primary-purple);
    text-decoration: none;
    background: white;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--accent-dark);
    color: white;
    padding: 0rem 0 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: none;
}

.footer-brand {
    margin-bottom: .5rem;
    display: flex;
    justify-content: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--soft-purple), var(--soft-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
}

.footer-logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 6px 6px;
    background-position: 0 0, 3px 3px;
}

.footer-logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-tagline {
    font-weight: 400;
    font-size: 0.7rem;
    background: linear-gradient(135deg, #A78BFA, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-top: -6px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    .footer-logo-tagline {
        font-size: 0.65rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-link.cta-nav {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
        padding-top: 80px;
    }
    
    .hero-content {
        min-height: 60vh;
        gap: 1.5rem;
    }
    
    .empathy-challenges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .empathy-solution {
        padding: 2rem;
    }
    
    .get-started-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-title {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .hero-callout-card {
        padding: 1.25rem 1rem;
    }
    
    .callout-icon {
        width: 40px;
        height: 40px;
    }
    
    .interactive-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .company-logos {
        gap: 1rem;
    }
    
    .logo-placeholder {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .footer-link {
        margin: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .footer-logo-text {
        font-size: 1rem;
    }
    
    .footer-logo-tagline {
        font-size: 0.6rem;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 1.5rem 0;
        padding-top: 80px;
    }
    
    .hero-content {
        min-height: 50vh;
        gap: 1rem;
    }
    
    .empathy-challenges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .challenge-item {
        padding: 1.5rem;
    }
    
    .empathy-solution {
        padding: 1.5rem;
    }
    
    .empathy-solution h3 {
        font-size: 1.25rem;
    }
    
    .get-started-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-callout-card {
        padding: 1rem 0.75rem;
    }
    
    .callout-icon {
        width: 35px;
        height: 35px;
    }
    
    .ai-sparkle-icon {
        width: 60px;
        height: 60px;
    }
    
    .interactive-description {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.cta-button:focus,
.footer-link:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Loading animation for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

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

.value-card:nth-child(3) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.2s;
} 