:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-hover: #ff6b6b;
    --light: #f8f9fa;
    --dark: #0f0f1a;
    --text: #2d2d2d;
    --text-light: #6c757d;
    --success: #28a745;
    --gradient-1: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-2: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

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

img {
    max-width: 100%;
    height: auto;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--accent);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 69, 96, 0.2);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.code-window {
    background: #1e1e3f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.code-header {
    background: #2d2d5a;
    padding: 12px 15px;
    display: flex;
    gap: 8px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27ca40; }

.code-body {
    padding: 25px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    color: #a9b7c6;
    line-height: 1.8;
}

.code-line .keyword { color: #cc7832; }
.code-line .string { color: #6a8759; }
.code-line .function { color: #ffc66d; }
.code-line .comment { color: #808080; }
.code-line .number { color: #6897bb; }

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-2);
    color: #fff;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--secondary);
}

/* Stats Bar */
.stats-bar {
    background: var(--secondary);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--light);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateX(10px);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

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

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.story-text {
    flex: 1;
    color: #fff;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-highlight {
    background: rgba(233, 69, 96, 0.2);
    border-left: 4px solid var(--accent);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.story-highlight p {
    margin: 0;
    font-style: italic;
}

/* Insight Section */
.insight-section {
    padding: 100px 0;
    background: #fff;
}

.insight-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.insight-main {
    flex: 2;
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
}

.insight-main h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.insight-main p {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.insight-list {
    list-style: none;
    margin: 30px 0;
}

.insight-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.insight-list .check {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.insight-list .check svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
}

.insight-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-card {
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    flex: 1;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.insight-card p {
    opacity: 0.85;
    line-height: 1.6;
}

/* Curriculum Section */
.curriculum-section {
    padding: 100px 0;
    background: var(--light);
}

.curriculum-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
}

.curriculum-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.curriculum-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.curriculum-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.curriculum-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.curriculum-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.curriculum-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-tag {
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--secondary);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: #fff;
}

.testimonials-section .section-header p {
    opacity: 0.8;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #fff;
}

.benefits-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-visual {
    flex: 1;
}

.benefits-visual svg {
    width: 100%;
    max-width: 450px;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.benefit-text h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.benefit-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    background: var(--primary);
    color: #fff;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    padding: 8px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-card.featured .price {
    color: var(--accent);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li svg {
    stroke: var(--accent);
}

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

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: var(--accent);
    text-align: center;
}

.urgency-content h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.timer-block {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.timer-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.urgency-section .btn {
    background: #fff;
    color: var(--accent);
}

.urgency-section .btn:hover {
    background: var(--dark);
    color: #fff;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--gradient-1);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-info {
    flex: 1;
    color: #fff;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.form-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.form-benefits li svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-container h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-container .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
}

/* Trust Badges */
.trust-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.trust-item:hover {
    opacity: 1;
}

.trust-item svg {
    width: 80px;
    height: 40px;
    fill: var(--text);
}

.trust-item span {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(233, 69, 96, 0.05);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    transition: transform 0.3s;
}

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

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

.faq-answer-inner {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.7;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    color: #fff;
}

.sticky-text strong {
    display: block;
    font-size: 1.1rem;
}

.sticky-text span {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    opacity: 0.6;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.btn-reject {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: var(--text);
}

.btn-reject:hover {
    border-color: var(--text);
}

/* About Page Styles */
.page-hero {
    background: var(--gradient-1);
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.team-section {
    padding: 80px 0;
    background: var(--light);
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-photo {
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-info span {
    color: var(--accent);
    font-size: 0.9rem;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 15px;
    line-height: 1.6;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
}

.service-card-large {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 300px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 120px;
    height: 120px;
    stroke: var(--accent);
    stroke-width: 1;
}

.service-details {
    flex: 1.5;
    padding: 50px;
}

.service-details h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-details p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    background: var(--light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
}

.service-price {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.service-price span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-details .icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.contact-details .text strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details .text span {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-map {
    flex: 1;
    background: var(--light);
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent);
    margin-bottom: 15px;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    padding: 40px 20px;
}

.thanks-content {
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
}

.thanks-content h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-details {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.thanks-details p {
    margin: 0;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.legal-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content,
    .story-content,
    .form-wrapper,
    .benefits-wrapper,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .about-grid.reverse {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .insight-grid {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-large:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .sticky-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .urgency-timer {
        flex-wrap: wrap;
    }

    .timer-block {
        padding: 15px 20px;
    }

    .timer-number {
        font-size: 1.8rem;
    }

    .curriculum-timeline::before {
        left: 15px;
    }

    .curriculum-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .curriculum-item {
        gap: 20px;
    }
}

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

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .code-body {
        font-size: 0.75rem;
        padding: 15px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .thanks-content {
        padding: 40px 25px;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-close svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent);
}
