@import 'variables.css';
@import 'animations.css';

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: all var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-4) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text);
}

.logo-icon {
    font-size: var(--text-3xl);
    padding-top: 10px;
}

.btn-header {
    padding: var(--spacing-2) var(--spacing-6);
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-header:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: var(--spacing-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: slideUp 0.8s var(--easing-ease-out);
}

.badge {
    display: inline-block;
    padding: var(--spacing-2) var(--spacing-4);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-6);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--spacing-4);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}

.hero-benefits {
    list-style: none;
    margin-bottom: var(--spacing-8);
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) 0;
    font-size: var(--text-lg);
    color: var(--text);
}

.benefit-icon {
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-8);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: var(--spacing-5) var(--spacing-10);
    font-size: var(--text-lg);
}

.btn-arrow {
    font-size: var(--text-xl);
    transition: transform var(--transition-base);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-note {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wheelCanvas {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.3));
    animation: fadeIn 1s var(--easing-ease-out) 0.3s both;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: floatSlow 4s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation: floatAlt 5s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--success);
    top: 50%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    50% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }
}

@keyframes floatAlt {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    50% {
        transform: translateY(30px) translateX(-20px) scale(1.05);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    50% {
        transform: translateY(-40px) translateX(-25px) scale(1.15);
    }
}

.why-section, .how-section {
    padding: var(--spacing-16) 0;
    position: relative;
    overflow: hidden;
}

.why-section .section-shapes,
.how-section .section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-section .section-header,
.why-section .cards-grid,
.how-section .section-header,
.how-section .timeline {
    position: relative;
    z-index: 1;
}

.section-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    will-change: transform;
}

.why-section .section-shape-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    top: 10%;
    right: 5%;
    animation: floatAlt 4.5s ease-in-out infinite;
}

.why-section .section-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    bottom: 15%;
    left: 8%;
    animation: floatSlow 5.5s ease-in-out infinite 0.5s;
}

.why-section .section-shape-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    top: 50%;
    left: 45%;
    animation: float 6.5s ease-in-out infinite 1s;
}

.how-section .section-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f472b6, #ec4899);
    top: 15%;
    left: 10%;
    animation: float 5s ease-in-out infinite;
}

.how-section .section-shape-2 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #34d399, #10b981);
    bottom: 20%;
    right: 12%;
    animation: floatAlt 6s ease-in-out infinite 0.75s;
}

.how-section .section-shape-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    top: 40%;
    right: 5%;
    animation: floatSlow 7s ease-in-out infinite 1.25s;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--spacing-3);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-8);
}

.cards-grid .card:nth-child(1),
.cards-grid .card:nth-child(2),
.cards-grid .card:nth-child(3) {
    grid-column: span 2;
}

.cards-grid .card:nth-child(4) {
    grid-column: 2 / 4;
}

.cards-grid .card:nth-child(5) {
    grid-column: 4 / 6;
}

.card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
    transition: transform var(--transition-base);
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-1 .card-icon {
    background: linear-gradient(135deg, #3b82f620, #2563eb20);
    color: var(--info);
}

.card-2 .card-icon {
    background: linear-gradient(135deg, #10b98120, #059e6920);
    color: var(--success);
}

.card-3 .card-icon {
    background: linear-gradient(135deg, #3b82f620, #2563eb20);
    color: var(--info);
}

.card-4 .card-icon {
    background: linear-gradient(135deg, #f59e0b20, #d9770620);
    color: var(--warning);
}

.card-5 .card-icon {
    background: linear-gradient(135deg, #10b98120, #059e6920);
    color: var(--success);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-3);
}

.card-stat {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
}

.card-1 .card-stat {
    color: #3b82f6;
}

.card-2 .card-stat {
    color: #10b981;
}

.card-3 .card-stat {
    color: #3b82f6;
}

.card-4 .card-stat {
    color: #f59e0b;
}

.card-5 .card-stat {
    color: #10b981;
}

.card-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-8) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-12);
    position: relative;
}

.timeline-item-left {
    justify-content: flex-end;
    padding-right: calc(50% + var(--spacing-8));
}

.timeline-item-right {
    justify-content: flex-start;
    padding-left: calc(50% + var(--spacing-8));
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.timeline-item:nth-child(1) .timeline-number {
    background: #a78bfa;
}

.timeline-item:nth-child(2) .timeline-number {
    background: #6ee7b7;
}

.timeline-item:nth-child(3) .timeline-number {
    background: #fbbf24;
}

.timeline-item:nth-child(4) .timeline-number {
    background: #f9a8d4;
}

.timeline-item:nth-child(5) .timeline-number {
    background: #93c5fd;
}

.timeline-content {
    background: var(--surface);
    padding: var(--spacing-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 400px;
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-content {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-3);
}

.timeline-item:nth-child(1) .timeline-icon {
    background: linear-gradient(135deg, #a78bfa20, #8b5cf620);
    color: #8b5cf6;
}

.timeline-item:nth-child(2) .timeline-icon {
    background: linear-gradient(135deg, #6ee7b720, #10b98120);
    color: #10b981;
}

.timeline-item:nth-child(3) .timeline-icon {
    background: linear-gradient(135deg, #fbbf2420, #f59e0b20);
    color: #f59e0b;
}

.timeline-item:nth-child(4) .timeline-icon {
    background: linear-gradient(135deg, #f9a8d420, #ec489920);
    color: #ec4899;
}

.timeline-item:nth-child(5) .timeline-icon {
    background: linear-gradient(135deg, #93c5fd20, #3b82f620);
    color: #3b82f6;
}

.timeline-content h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-2);
}

.timeline-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    background: var(--primary);
    padding: var(--spacing-16) 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-3);
}

.cta-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-8);
}

.demo-form {
    display: flex;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.form-group {
    flex: 1;
}

.demo-form input {
    width: 100%;
    padding: var(--spacing-4);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    background: white;
    transition: all var(--transition-base);
}

.demo-form input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.btn-cta {
    position: relative;
    padding: var(--spacing-4) var(--spacing-8);
    background: white;
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--text-base);
    white-space: nowrap;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-loader,
.btn-success {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-cta.loading .btn-text {
    opacity: 0;
}

.btn-cta.loading .btn-loader {
    display: block;
}

.btn-cta.success .btn-text {
    opacity: 0;
}

.btn-cta.success .btn-success {
    display: block;
    font-size: var(--text-2xl);
    color: var(--success);
    animation: scaleIn 0.3s var(--easing-ease-out);
}

.cta-reassurance {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
}

.form-message {
    margin-top: var(--spacing-4);
    padding: var(--spacing-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-message {
            background: #dbeafe;
            color: #1e40af;
            padding: 0.75rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
}

.footer {
    background: #1f2937;
    color: white;
    padding: var(--spacing-16) 0 var(--spacing-6);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
}

.footer-tagline {
    color: #9ca3af;
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: var(--spacing-3);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-2);
}

.footer-links a {
    color: #9ca3af;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: var(--spacing-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }

    .hero-right {
        order: -1;
    }

    #wheelCanvas {
        max-width: 400px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item-left,
    .timeline-item-right {
        justify-content: flex-start;
        padding-left: 100px;
        padding-right: 0;
    }

    .timeline-number {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-5);
        align-items: start;
    }

    .cards-grid .card:nth-child(1),
    .cards-grid .card:nth-child(2),
    .cards-grid .card:nth-child(3),
    .cards-grid .card:nth-child(4),
    .cards-grid .card:nth-child(5) {
        grid-column: span 1;
    }

    .card {
        padding: var(--spacing-6);
        height: auto;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--spacing-3);
        flex-shrink: 0;
    }

    .card-title {
        font-size: var(--text-lg);
        line-height: 1.3;
    }

    .card-stat {
        font-size: var(--text-base);
        font-weight: 700;
    }

    .card-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .demo-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .cta-title {
        font-size: var(--text-2xl);
    }

    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }

    .container {
        padding: 0 var(--spacing-4);
    }

    .hero-title {
        font-size: var(--text-2xl);
    }

    .hero-benefits li {
        font-size: var(--text-base);
    }

    .btn-large {
        padding: var(--spacing-4) var(--spacing-6);
        font-size: var(--text-base);
    }

    #wheelCanvas {
        max-width: 300px;
    }

    .cards-grid {
        gap: var(--spacing-4);
        grid-template-columns: 1fr;
    }

    .card {
        padding: var(--spacing-5);
        height: auto;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .card-icon svg {
        width: 32px;
        height: 32px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-2);
        line-height: 1.3;
        font-weight: 600;
    }

    .card-stat {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-3);
        font-weight: 700;
    }

    .card-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

.main-nav {
    display: flex;
    gap: var(--spacing-6);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    text-decoration: none;
    padding: var(--spacing-2) 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.menu-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-2);
}

.menu-burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition-base);
}

.menu-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-burger.active span:nth-child(2) {
    opacity: 0;
}

.menu-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.card-targets {
    margin-top: var(--spacing-4);
    padding-top: var(--spacing-4);
    border-top: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-section {
    padding: var(--spacing-16) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.pricing-section .section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.pricing-section .section-header,
.pricing-section .pricing-card-wrapper {
    position: relative;
    z-index: 1;
}

.pricing-section .section-shape-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    top: 12%;
    right: 8%;
    animation: floatSlow 5s ease-in-out infinite;
}

.pricing-section .section-shape-2 {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    bottom: 18%;
    left: 5%;
    animation: floatAlt 6s ease-in-out infinite 0.5s;
}

.pricing-section .section-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    top: 45%;
    left: 50%;
    animation: float 7s ease-in-out infinite 1s;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-12);
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--spacing-10);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
    border: 2px solid var(--border);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.pricing-badge {
    display: inline-block;
    padding: var(--spacing-2) var(--spacing-4);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
}

.pricing-old-price {
    font-size: var(--text-2xl);
    color: var(--text-tertiary);
    text-decoration: line-through;
    margin-bottom: var(--spacing-2);
}

.pricing-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--spacing-3);
}

.pricing-period {
    font-size: var(--text-xl);
    font-weight: 500;
}

.pricing-save {
    display: inline-block;
    padding: var(--spacing-2) var(--spacing-4);
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.pricing-features {
    margin-bottom: var(--spacing-8);
}

.pricing-features-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-4);
}

.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) 0;
    font-size: var(--text-base);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--success);
    font-weight: 700;
    font-size: var(--text-xl);
}

.btn-pricing {
    width: 100%;
    padding: var(--spacing-4);
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-pricing:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 203, 119, 0.4);
}

.pricing-trial-info {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    padding: var(--spacing-4);
    background: #fef3c7;
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-6);
}

.trial-icon {
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.trial-text {
    font-size: var(--text-sm);
    color: #92400e;
}

.trial-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.trial-link:hover {
    color: var(--primary-dark);
}

.pricing-reassurance {
    text-align: center;
    color: var(--text-tertiary);
    font-size: var(--text-sm);
    margin-top: var(--spacing-4);
}

.faq-section {
    padding: var(--spacing-16) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.faq-section .section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.faq-section .section-header,
.faq-section .faq-container {
    position: relative;
    z-index: 1;
}

.faq-section .section-shape-1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #34d399, #10b981);
    top: 10%;
    left: 10%;
    animation: float 5.5s ease-in-out infinite;
}

.faq-section .section-shape-2 {
    width: 330px;
    height: 330px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    bottom: 15%;
    right: 8%;
    animation: floatAlt 6.5s ease-in-out infinite 0.75s;
}

.faq-section .section-shape-3 {
    width: 190px;
    height: 190px;
    background: linear-gradient(135deg, #f472b6, #ec4899);
    top: 50%;
    right: 15%;
    animation: floatSlow 7.5s ease-in-out infinite 1.25s;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-4);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-5);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-4);
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 var(--spacing-5) var(--spacing-5);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--text-base);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-6);
    padding: var(--spacing-8) 0;
    margin-bottom: var(--spacing-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-2);
}

.trust-badge-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--spacing-2);
}

.trust-badge-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: white;
}

.trust-badge-subtitle {
    font-size: var(--text-sm);
    color: #9ca3af;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        padding: var(--spacing-4) var(--spacing-6);
        border-bottom: 1px solid var(--border);
    }

    .menu-burger {
        display: flex;
    }

    .pricing-card {
        padding: var(--spacing-8);
    }

    .pricing-price {
        font-size: 3rem;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-4);
    }

    .faq-question {
        font-size: var(--text-base);
        padding: var(--spacing-4);
    }
}

/* Segment Selection Section */
.segment-selection-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.segment-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
}

.segment-main-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--spacing-6);
}

/* Segment Selection Buttons */
.segment-selector {
    display: flex;
    gap: var(--spacing-3);
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
    max-width: 600px;
}

.segment-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-4);
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: auto;
    box-shadow: var(--shadow-sm);
}

.segment-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.segment-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.segment-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-btn-icon svg {
    width: 20px;
    height: 20px;
}

.segment-btn-text {
    text-align: center;
    line-height: 1.3;
}

/* Dynamic Content Sections */
.dynamic-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.dynamic-content.active {
    display: block;
}

.dynamic-section {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--spacing-10);
    margin-top: var(--spacing-8);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dynamic-section > h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--spacing-4);
    line-height: 1.3;
    text-align: center;
}

.dynamic-section > p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-8);
    text-align: center;
}

.benefits-section {
    margin-bottom: var(--spacing-6);
}

.benefits-section h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-6);
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--spacing-4);
}

.benefits-list li {
    display: flex;
    gap: var(--spacing-3);
    padding: var(--spacing-4);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all var(--transition-base);
    align-items: flex-start;
}

.benefits-list li:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.benefit-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary)20, var(--primary)10);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-bullet svg {
    width: 24px;
    height: 24px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--spacing-1);
}

.benefit-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .segment-main-title {
        font-size: var(--text-2xl);
    }

    .segment-selector {
        flex-direction: column;
        gap: var(--spacing-3);
        max-width: 100%;
    }

    .segment-btn {
        width: 100%;
        padding: var(--spacing-4) var(--spacing-5);
    }

    .dynamic-section {
        padding: var(--spacing-6);
    }

    .dynamic-section > h2 {
        font-size: var(--text-xl);
    }

    .dynamic-section > p {
        font-size: var(--text-base);
    }

    .benefits-section h3 {
        font-size: var(--text-lg);
    }

    .benefits-list li {
        padding: var(--spacing-3);
    }

    .benefit-bullet {
        width: 36px;
        height: 36px;
    }

    .benefit-bullet svg {
        width: 20px;
        height: 20px;
    }

    .benefit-title {
        font-size: var(--text-sm);
    }

    .benefit-description {
        font-size: 0.8125rem;
    }
}
