/* Landing Page Styles - HoneyBook Style */
:root {
    --primary: #7B68EE;
    --primary-dark: #6A5ACD;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    --dark: #2C3E50;
    --light: #F8F9FA;
    --gray: #6C757D;
    --success: #28A745;
    --warning: #FFC107;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.1;
    animation: pulse 8s infinite ease-in-out;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 80%;
    animation-delay: 4s;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

/* Layout */
.landing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.hero-logo {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn-login):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-login)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-login):hover::after {
    width: 100%;
}

.btn-login {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary), #FF8E53);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(45deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-highlight {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.button-row {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 104, 238, 0.4);
}

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

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

.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.trust-item i {
    color: var(--primary);
    font-size: 18px;
}

/* Hero Image / Dashboard Preview */
.hero-image {
    position: relative;
}

.dashboard-preview {
    position: relative;
    perspective: 1000px;
}

.screen-mockup {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-hover);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-preview:hover .screen-mockup {
    transform: rotateY(0) rotateX(0);
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF5F57;
    display: block;
}

.screen-dots span:nth-child(2) {
    background: #FFBD2E;
}

.screen-dots span:nth-child(3) {
    background: #28CA42;
}

.screen-title {
    font-weight: 600;
    color: var(--dark);
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-row {
    display: flex;
    gap: 15px;
}

.mockup-card {
    flex: 1;
    background: #F8F9FA;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-card-header {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 14px;
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-list-item {
    font-size: 13px;
    color: var(--gray);
    padding: 5px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.mockup-list-item:last-child {
    border-bottom: none;
}

.mockup-timeline {
    flex: 1;
    background: #F8F9FA;
    border-radius: 12px;
    padding: 15px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.3s ease;
}

.timeline-item.active {
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.1), rgba(78, 205, 196, 0.1));
    border-left: 4px solid var(--primary);
}

.timeline-item .time {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.timeline-item .event {
    font-size: 14px;
    color: var(--dark);
}

.mockup-requests {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    padding: 20px;
    color: white;
}

.requests-header {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
    opacity: 0.9;
}

.request-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Why EventSynkt Section */
.why-section {
    background: linear-gradient(to bottom, white, #F8F9FA);
    border-radius: 40px;
    margin: 40px;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary));
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.comparison-card.old-way {
    border-top: 5px solid #FF6B6B;
}

.comparison-card.eventsynkt-way {
    border-top: 5px solid #4ECDC4;
}

.comparison-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.comparison-card.old-way h3 {
    color: #FF6B6B;
}

.comparison-card.eventsynkt-way h3 {
    color: #4ECDC4;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(123, 104, 238, 0.3);
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.comparison-item i {
    font-size: 20px;
    margin-top: 2px;
}

.comparison-item i.fa-times-circle {
    color: #FF6B6B;
}

.comparison-item i.fa-check-circle {
    color: #4ECDC4;
}

.comparison-item span {
    font-size: 16px;
    line-height: 1.5;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(123, 104, 238, 0.2);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card > p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.feature-sublist {
    list-style: none;
}

.feature-sublist li {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-sublist li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 12px;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: Georgia, serif;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.author-plan {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    background: #F8F9FA;
    border-radius: 40px;
    margin: 40px;
}

.pricing-container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

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

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 60px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

.plan-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark);
    font-size: 15px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.btn-pricing {
    padding: 18px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    margin-top: auto;
}

.btn-pricing.featured {
    background: linear-gradient(45deg, var(--secondary), #FF8E53);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 104, 238, 0.3);
}

.btn-pricing.featured:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.pricing-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray);
    font-size: 14px;
    max-width: 800px;
    margin: 50px auto 0;
}

/* Comparison Table */
.comparison-section {
    background: white;
}

.comparison-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
}

.comparison-table th {
    padding: 25px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.comparison-table th:first-child {
    border-radius: 20px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 20px 0 0;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table tbody tr:nth-child(even) {
    background: #F8F9FA;
}

.comparison-table td {
    padding: 20px 25px;
    font-size: 16px;
    color: var(--dark);
}

.comparison-table td:first-child {
    font-weight: 500;
    width: 30%;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    width: 35%;
    text-align: center;
}

.comparison-table i.fa-check,
.comparison-table i.fa-infinity {
    color: var(--success);
    font-size: 20px;
}

/* FAQ Section */
.faq-section {
    background: #F8F9FA;
    border-radius: 40px;
    margin: 40px;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(123, 104, 238, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: var(--primary);
    font-size: 20px;
    transition: transform 0.3s ease;
}

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

.faq-answer.active {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 40px;
    margin: 40px;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-section .button-row {
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.cta-note i {
    font-size: 20px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 40px;
    border-top: 5px solid var(--primary);
}

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

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .comparison-grid,
    .pricing-container {
        flex-direction: column;
        max-width: 600px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a:not(.btn-login) {
        display: none;
    }
    
    .button-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .why-section,
    .pricing-section,
    .faq-section,
    .cta-section {
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 15px 25px;
    }
}
