/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1e293b;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo .logo-p {
    color: white;
}

.logo .logo-text {
    color: white;
}

.logo .logo-dot {
    color: #60a5fa;
    margin-left: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #60a5fa;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.90), rgba(248, 250, 252, 0.92)), url('collaboration-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}



@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) scale(1.1);
        opacity: 1;
    }
}

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



/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 16px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-highlight {
    color: #64748b;
    font-weight: 400;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.01em;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 32px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.emphasis-text {
    color: #1e293b;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #475569);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Features Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f59e0b;
}

.feature-card:nth-child(2)::before {
    background: #8b5cf6;
}

.feature-card:nth-child(3)::before {
    background: #10b981;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #bfdbfe;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.feature-emoji {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-highlight {
    font-weight: 900;
    letter-spacing: 1px;
}

.feature-card:first-child .feature-highlight {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:last-child .feature-highlight {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fix gradient text readability in dark sections */
.dark-section .feature-highlight {
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    color: #ffffff !important;
}

/* Fix gradient text in dark sections */
.dark-section .feature-highlight {
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    color: #ffffff !important;
}

.feature-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Button Styles */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    line-height: 1;
}

.btn-primary {
    background: #1e293b;
    color: white;
    box-shadow: 0 4px 14px rgba(30, 41, 59, 0.25);
}

.btn-primary:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #1e293b;
    border: 2px solid #1e293b;
}

.btn-secondary:hover {
    background: #1e293b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(30, 41, 59, 0.25);
}

.btn.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: #f8fafc;
}

/* Dark Section Theme */
.dark-section {
    background: #1e293b !important;
}

.dark-section .section-header h2 {
    color: #ffffff;
}

.dark-section .section-header p {
    color: #cbd5e1;
}

.dark-section h3 {
    color: #ffffff;
}

.dark-section p {
    color: #cbd5e1;
}

.dark-section li {
    color: #cbd5e1;
}

.dark-section strong {
    color: #ffffff;
}

/* Dark Section Card Styles */
.dark-section .step-card {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #1e293b;
}

.dark-section .step-card::after {
    background: linear-gradient(transparent, #f8fafc);
}

.dark-section .step-card h3 {
    color: #1e293b;
}

.dark-section .step-card p {
    color: #475569;
}

.dark-section .step-card li {
    color: #475569;
}

.dark-section .promo-title h3 {
    color: #1e293b;
}

.dark-section .promo-badge {
    background: #1e293b;
    color: #ffffff;
}

.dark-section .step-card strong {
    color: #1e293b;
}

.dark-section .testimonial-card {
    background: #334155;
    border-color: #475569;
}

.dark-section .testimonial-info strong {
    color: #ffffff;
}

.dark-section .testimonial-info span {
    color: #94a3b8;
}

.dark-section blockquote {
    color: #cbd5e1;
}

.dark-section .faq-question {
    color: #ffffff;
}

.dark-section .faq-answer {
    color: #cbd5e1;
}

.dark-section .about-text {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
}

.dark-section .about-text p {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.dark-section .photo-caption strong {
    color: #ffffff;
}

.dark-section .photo-caption span {
    color: #cbd5e1;
}

.dark-section .cert-logo {
    opacity: 0.9;
    filter: brightness(1.1);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dark-section .cert-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(96, 165, 250, 0.2);
}

.dark-section .founder-quote {
    background: #334155;
    border-left: 4px solid #60a5fa;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #f1f5f9;
}

.hover-expandable {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hover-expandable .expandable-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hover-expandable:hover .expandable-content {
    max-height: 1000px;
    opacity: 1;
    margin-top: 16px;
}

.hover-hint {
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.hover-hint span {
    color: #60a5fa;
    font-size: 14px;
    font-weight: 500;
}

.hover-expandable:hover .hover-hint {
    opacity: 0;
    transform: translateY(-10px);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: 320px;
}

.step-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.step-card:hover::after {
    opacity: 0;
}

.step-card:nth-child(1) {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #f8fafc 100%);
}

.step-card:nth-child(2) {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #ede9fe 0%, #f1f5f9 100%);
}



.step-number {
    width: 48px;
    height: 48px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-card:nth-child(1) .step-number {
    background: #f59e0b;
}

.step-card:nth-child(2) .step-number {
    background: #8b5cf6;
}



/* Promotional Heading Styles */
.promo-heading {
    position: relative;
    margin-bottom: 16px;
    text-align: left;
    padding: 8px 0;
}

.promo-icon {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.promo-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.promo-heading h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    color: #1e293b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-highlight {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-shadow: none;
    letter-spacing: 1.5px;
    line-height: 1;
}

.bootcamp-heading .promo-highlight {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clinic-heading .promo-highlight {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-badge {
    background: linear-gradient(135deg, #1e293b, #374151);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 16px;
    display: inline-block;
    margin-top: 8px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bootcamp-heading .promo-badge {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.clinic-heading .promo-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 20px 0 12px 0;
}

.step-card p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.7;
}

.step-card ul {
    list-style: none;
    margin: 16px 0;
}

.step-card ul li {
    padding: 8px 0;
    color: #334155;
    position: relative;
    padding-left: 24px;
}

.step-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.step-note {
    font-style: italic;
    color: #64748b;
    font-size: 14px;
    margin-top: 16px;
}



/* Partners Section */
.partners {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    max-width: 800px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Why It Works Section */
.benefits-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto 60px;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-circle {
    position: relative;
    width: 550px;
    height: 550px;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-element {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.benefit-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    width: 160px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.benefit-card:nth-child(2) {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.benefit-card:nth-child(3) {
    top: 30%;
    right: -110px;
    transform: translateY(-50%);
}

.benefit-card:nth-child(4) {
    bottom: -40px;
    right: 18%;
    transform: translateX(50%);
}

.benefit-card:nth-child(5) {
    bottom: -40px;
    left: 18%;
    transform: translateX(-50%);
}

.benefit-card:nth-child(6) {
    top: 30%;
    left: -110px;
    transform: translateY(-50%);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

/* Who We Are Section */
.about-content-with-photo {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.founder-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 85% center;
    border: 6px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.photo-caption {
    margin-top: 20px;
    text-align: center;
}

.photo-caption strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.3;
}

.photo-caption span {
    font-size: 16px;
    color: #64748b;
    font-style: italic;
}

.certification-logos {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cert-logo {
    width: 120px;
    height: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: left;
    height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-card:hover {
    height: auto;
    min-height: 280px;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.testimonial-info strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

.testimonial-card blockquote {
    font-size: 16px;
    color: #334155;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    quotes: """ """ "'" "'";
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
    opacity: 0;
}

.testimonial-card cite {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    font-style: normal;
}



/* FAQs Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    cursor: pointer;
    padding-right: 24px;
    position: relative;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    color: #64748b;
    line-height: 1.7;
    display: none;
    margin-top: 16px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin-bottom: 16px;
}

/* Contact Section */
.contact-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #1e293b;
    padding: 60px 0;
    color: white;
}

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

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-logo .footer-logo-p {
    color: white;
}

.footer-logo .footer-logo-text {
    color: white;
}

.footer-logo .footer-logo-dot {
    color: #60a5fa;
    margin-left: 0.1em;
}

.footer-section h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    margin-bottom: 8px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: #64748b;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 24px;
}

.close:hover {
    color: #1e293b;
}

.modal h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #1e293b;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 20px 0;
        z-index: 999;
    }

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

    .nav-menu li {
        padding: 0 24px;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        color: #94a3b8;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover {
        color: #60a5fa;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .graphic-1, .graphic-2, .graphic-3 {
        display: none;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
        max-width: none;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    /* Who We Are Mobile Styles */
    .about-content-with-photo {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .founder-photo {
        width: 200px;
        height: 200px;
    }

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

    .about-text p {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 18px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: none;
    }

    .step-card {
        padding: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .partner-logo img {
        max-height: 60px;
        max-width: 150px;
    }

    .benefits-container {
        min-height: 400px;
    }

    .benefits-circle {
        width: 350px;
        height: 350px;
    }

    .center-element {
        width: 140px;
        height: 140px;
        font-size: 18px;
    }

    .benefit-card {
        width: 140px;
        padding: 16px;
    }

    .benefit-card:nth-child(2) {
        top: -70px;
    }

    .benefit-card:nth-child(3) {
        right: -70px;
    }

    .benefit-card:nth-child(6) {
        left: -70px;
    }

    .benefit-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .benefit-card h3 {
        font-size: 12px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }
}

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

    .nav-container {
        padding: 0 16px;
    }

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

    .section-header h2 {
        font-size: 28px;
    }

    .step-card {
        padding: 20px;
    }

    .step-card h3 {
        font-size: 20px;
    }

    .promo-heading h3 {
        font-size: 16px;
    }

    .promo-highlight {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .promo-icon {
        font-size: 18px;
    }

    .promo-badge {
        font-size: 9px;
        padding: 3px 10px;
    }

    .feature-emoji {
        font-size: 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-highlight {
        letter-spacing: 0.5px;
    }

    .benefits-circle {
        width: 280px;
        height: 280px;
    }

    .center-element {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }

    .benefit-card {
        width: 110px;
        padding: 12px;
    }

    .benefit-card:nth-child(2) {
        top: -55px;
    }

    .benefit-card:nth-child(3) {
        right: -55px;
    }

    .benefit-card:nth-child(6) {
        left: -55px;
    }

    .benefit-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .benefit-card h3 {
        font-size: 10px;
        line-height: 1.2;
    }
}

/* Flyer Download Links */
.flyer-link {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #60a5fa;
    opacity: 0.7;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 2px 4px;
}

.flyer-link:hover {
    opacity: 1;
    background-color: rgba(96, 165, 250, 0.1);
    transform: scale(1.1);
}