/* Global Variables */
:root {
    /* Main palette */
    --primary: #4dd0e1;
    --primary-light: #b4ffff;
    --primary-dark: #009faf;
    --secondary: #b39ddb;
    --secondary-light: #e6ceff;
    --secondary-dark: #836fa9;
    --accent: #ffe0b2;
    --accent-light: #ffffe4;
    --accent-dark: #cbae82;
    
    /* Neutrals */
    --bg-light: #f8f9fa;
    --bg-dark: #333;
    --text-dark: #212121;
    --text-light: #f8f9fa;
    --text-muted: #757575;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-light), var(--primary));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent-light), var(--accent));
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-glow-primary: 0 0 15px rgba(77,208,225,0.4);
    --shadow-glow-secondary: 0 0 15px rgba(179,157,219,0.4);
    
    /* Spacing */
    --space-xs: 0.25rem; /* 4px */
    --space-sm: 0.5rem;  /* 8px */
    --space-md: 1rem;    /* 16px */
    --space-lg: 2rem;    /* 32px */
    --space-xl: 4rem;    /* 64px */
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

button, .button {
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    outline: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-xl);
    text-align: center;
    position: relative;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
    transition: transform var(--transition-normal);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(77, 208, 225, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 8px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--space-md);
    overflow: hidden;
    margin-top: 60px;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
    animation: zoomBg 20s infinite alternate ease-in-out;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    animation: fadeUp 1.2s ease-out;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
    color: var(--text-dark);
}

/* Benefits Section */
.benefits-section {
    padding: var(--space-xl) 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.benefit-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--text-dark);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-xl) 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/how.png");
    opacity: 0.05;
}

.how-it-works .section-title {
    color: white;
}

.how-it-works .section-title::after {
    background: white;
}

.steps-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--secondary-dark);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-right: var(--space-lg);
    flex-shrink: 0;
}

.step-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--secondary-dark);
}

.step-content p {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
}

.step-icon img {
    border-radius: var(--radius-md);
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.connector {
    width: 2px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-left: 30px;
    position: relative;
    z-index: 1;
}

/* Plans Section */
.plans-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.plans-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 2;
}

.plan-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 3;
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
}

.plan-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.plan-price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-features {
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.plan-features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.plan-button {
    display: block;
    background: var(--gradient-primary);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.plan-button:hover {
    box-shadow: var(--shadow-md), var(--shadow-glow-primary);
    color: var(--text-dark);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xl) 0;
    background: var(--gradient-accent);
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/test.png");
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    height: 300px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    padding: var(--space-lg);
    background: white;
}

.testimonial-text blockquote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
    line-height: 1.7;
}

.testimonial-text blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-light);
    font-family: serif;
}

.testimonial-text cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    text-align: right;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-lg);
}

.prev-slide, .next-slide {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.prev-slide:hover, .next-slide:hover {
    box-shadow: var(--shadow-md);
}

.prev-slide::before, .next-slide::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
}

.prev-slide::before {
    transform: rotate(135deg);
    margin-left: 5px;
}

.next-slide::before {
    transform: rotate(-45deg);
    margin-right: 5px;
}

.slider-dots {
    display: flex;
    margin: 0 var(--space-md);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(0,0,0,0.2);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* About Section */
.about-section {
    padding: var(--space-xl) 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: var(--space-lg);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content p {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: white;
    border: none;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(77, 208, 225, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: all var(--transition-fast);
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Subscribe Section */
.subscribe-section {
    padding: var(--space-xl) 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.subscribe-section::before, .subscribe-section::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
}

.subscribe-section::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.subscribe-section::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.subscribe-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.subscribe-section .section-title {
    color: white;
}

.subscribe-section .section-title::after {
    background: white;
}

.subscribe-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.subscribe-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.subscribe-form .form-group {
    display: flex;
    margin-bottom: var(--space-md);
}

.subscribe-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.subscribe-form .submit-button {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.subscribe-form .submit-button:hover {
    box-shadow: var(--shadow-glow-primary);
}

.form-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: var(--space-xl) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-form-container {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: var(--space-md);
}

.contact-form label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border var(--transition-fast);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form .submit-button {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
}

.contact-form .submit-button:hover {
    box-shadow: var(--shadow-glow-primary);
    transform: translateY(-2px);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--space-md);
}

.footer-nav h3, .footer-contact h3, .footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--primary-light);
}

.footer-nav ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary-light);
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
}

.footer-newsletter .form-group {
    display: flex;
    margin-top: var(--space-sm);
}

.footer-newsletter input {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: var(--font-primary);
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter input:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
}

.footer-newsletter button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.footer-newsletter button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.legal-links {
    display: flex;
    gap: var(--space-md);
}

.legal-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.legal-links a:hover {
    color: var(--primary-light);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding: var(--space-lg);
    }
    
    .benefit-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
    
    .connector {
        display: none;
    }
    
    .plans-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        max-width: 350px;
        width: 100%;
    }
    
    .plan-card.featured {
        order: -1;
    }
    
    .testimonial-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subscribe-form .form-group {
        flex-direction: column;
    }
    
    .subscribe-form input, .subscribe-form .submit-button {
        border-radius: var(--radius-full);
    }
    
    .subscribe-form input {
        margin-bottom: var(--space-sm);
    }
    
    .footer-newsletter .form-group {
        flex-direction: column;
    }
    
    .footer-newsletter input, .footer-newsletter button {
        border-radius: var(--radius-full);
    }
    
    .footer-newsletter input {
        margin-bottom: var(--space-xs);
    }
}