:root {
    --primary: #1a3a5c;
    --secondary: #e85d04;
    --accent: #f8961e;
    --dark: #0d1b2a;
    --light: #f7f9fc;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

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

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

/* Navigation */
.nav-wrapper {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

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

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
}

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

.btn-white:hover {
    background: var(--light);
    color: var(--secondary);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1920&q=80') center/cover;
    opacity: 0.15;
}

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

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.hero-image {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-light {
    background: var(--light);
}

.section-gradient {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

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

.section-header h2 {
    margin-bottom: 15px;
}

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

/* Problem Section */
.problem-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.problem-content {
    flex: 1;
}

.problem-content h2 {
    margin-bottom: 25px;
    color: var(--primary);
}

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

.problem-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

.problem-visual {
    flex: 1;
}

.problem-image {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Story Section */
.story-wrapper {
    display: flex;
    gap: 60px;
}

.story-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.story-sticky {
    position: sticky;
    top: 120px;
}

.story-quote {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.story-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    width: calc(33.333% - 20px);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

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

/* Testimonials */
.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--primary);
    margin-bottom: 3px;
}

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

/* Services/Pricing */
.pricing-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 45px 35px;
    width: calc(33.333% - 20px);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--gray);
}

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

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

/* Form Styles */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.urgency-banner p {
    font-size: 1.15rem;
    font-weight: 600;
}

.urgency-banner strong {
    font-size: 1.3rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--primary);
}

/* Split Sections */
.split-section {
    display: flex;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-reverse {
    flex-direction: row-reverse;
}

/* Trust Badges */
.trust-bar {
    background: var(--light);
    padding: 40px 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--secondary);
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

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

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

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 25px;
    color: var(--secondary);
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary);
}

.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.7;
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

.cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--secondary);
}

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

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: var(--accent);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: var(--white);
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 40px 20px;
}

.thanks-card {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 600px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.thanks-card h1 {
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-card p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.thanks-service {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.thanks-service h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 150px 0 80px;
    color: var(--white);
    text-align: center;
}

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

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
}

.contact-form-wrapper {
    flex: 1.5;
    background: var(--light);
    border-radius: 16px;
    padding: 50px;
}

/* Legal Pages */
.legal-hero {
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 60px;
    text-align: center;
}

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

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

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

.legal-content p {
    margin-bottom: 20px;
    color: var(--gray);
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--gray);
}

/* Instructor Section */
.instructor-section {
    display: flex;
    gap: 60px;
    align-items: center;
}

.instructor-image {
    flex: 0 0 350px;
}

.instructor-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.instructor-info {
    flex: 1;
}

.instructor-info h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.instructor-info .subtitle {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.instructor-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.instructor-stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.instructor-stat .label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 30px;
    counter-reset: step;
}

.process-step {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    margin: 15px 0 10px;
    color: var(--primary);
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    width: calc(50% - 15px);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 150px 0 80px;
    color: var(--white);
    text-align: center;
}

.about-mission {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-mission-content {
    flex: 1;
}

.about-mission-visual {
    flex: 1;
}

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 12px;
}

.value-card h4 {
    color: var(--primary);
    margin: 20px 0 10px;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary);
}

/* Inline CTA */
.inline-cta {
    background: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
}

.inline-cta h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.inline-cta p {
    margin-bottom: 15px;
    color: var(--gray);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

    .problem-grid,
    .story-wrapper,
    .instructor-section,
    .about-mission,
    .contact-grid {
        flex-direction: column;
    }

    .story-sidebar {
        width: 100%;
    }

    .story-sticky {
        position: static;
    }

    .benefit-card,
    .pricing-card {
        width: calc(50% - 15px);
    }

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

    .split-section {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 30px;
    }

    .split-visual {
        min-height: 300px;
    }

    .process-steps {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .about-values {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        display: none;
        box-shadow: var(--shadow);
    }

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

    .nav-menu li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .benefit-card,
    .pricing-card {
        width: 100%;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

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

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-container {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-card {
        padding: 35px 25px;
    }

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