/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3859e9;
    --primary-dark: #2C46B8;
    --primary-light: #6F85F0;
    --secondary-color: #f6f7f7;
    --text-color: #1e1e1e;
    --text-muted: #757575;
    --border-color: #dcdcde;
    --success-color: #00a32a;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #3859e9 0%, #2C46B8 100%);
    --gradient-secondary: linear-gradient(135deg, #f6f7f7 0%, #e8e9ea 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Gabarito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 8px;
    line-height: 1;
    z-index: 1000;
}

.mobile-menu-button:hover {
    background: var(--secondary-color);
    border-radius: 4px;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--secondary-color);
    border-radius: 6px;
}

.lang-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: rgba(56, 89, 233, 0.1);
    color: var(--primary-color);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #f6f7f7 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-note {
    color: var(--text-muted);
    font-size: 14px;
}

/* Browser Mockup */
.browser-mockup {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-header {
    background: #e8e9ea;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dcdcde;
}

.browser-content {
    background: var(--white);
    min-height: 400px;
    position: relative;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

.placeholder-mockup {
    padding: 40px;
}

.mockup-toolbar {
    height: 40px;
    background: var(--secondary-color);
    border-radius: 4px;
    margin-bottom: 30px;
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-field {
    height: 50px;
    background: var(--secondary-color);
    border-radius: 4px;
    border: 2px solid var(--border-color);
    cursor: move;
    transition: all 0.3s ease;
    position: relative;
}

.mockup-field:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(56, 89, 233, 0.15);
    border-color: var(--primary-light);
}

.mockup-field:not(.wide):nth-child(1) {
    animation: floatField 4s ease-in-out infinite;
    animation-delay: 0s;
}

.mockup-field:nth-child(2) {
    animation: floatField 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.mockup-field:nth-child(3), .mockup-field.wide {
    animation: floatField 4s ease-in-out infinite;
    animation-delay: 1.6s;
}

.mockup-field:nth-child(4) {
    animation: floatField 4s ease-in-out infinite;
    animation-delay: 2.4s;
}

@keyframes floatField {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
        box-shadow: 0 8px 16px rgba(56, 89, 233, 0.2);
    }
    50% {
        transform: translateY(0);
    }
}

.mockup-field.short {
    width: 60%;
}

.mockup-button {
    height: 50px;
    background: var(--primary-color);
    border-radius: 4px;
    width: 200px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1;
}

.section-header p {
    font-size: 20px;
    color: var(--text-muted);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

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

/* Feature card links */
.feature-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.feature-link .learn-more {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.2s;
}

.feature-card.premium-badge {
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Field Types Section */
.field-types {
    padding: 100px 0;
    background: var(--secondary-color);
}

.fields-comparison {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.fields-column {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.fields-column.premium {
    background: var(--gradient-primary);
    color: var(--white);
}

.fields-column h3 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.fields-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 40px;
}

.fields-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fields-column.premium .fields-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.check {
    color: var(--success-color);
    flex-shrink: 0;
}

.check.premium {
    color: #ffd700;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

/* Promo Banner */
.promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.promo-icon {
    font-size: 20px;
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid-four {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.sale-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.original-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.original-price:empty {
    height: 38px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-muted);
    font-size: 16px;
    display: block;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.features-list li {
    padding: 4  px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trial-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: 32px;
}

/* Pricing Upcoming Features */
.pricing-upcoming {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 32px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(56, 88, 233, 0.1);
}

.upcoming-badge {
    font-size: 32px;
    animation: bounce 2s infinite;
}

.upcoming-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    text-align: center;
}

/* Pricing Extras (Agency & Custom) */
.pricing-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.pricing-extra-card {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 32px;
    transition: all 0.3s;
}

.pricing-extra-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.extra-content {
    flex: 1;
}

.extra-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
}

.extra-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.extra-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
    margin: 10px 0 16px 0;
}

.extra-price .original-price {
    font-size: 16px;
}

.extra-price .amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.extra-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-extra-card .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pricing-upcoming {
        flex-direction: column;
        padding: 16px 20px;
        gap: 12px;
    }

    .upcoming-badge {
        font-size: 28px;
    }

    .upcoming-text {
        font-size: 14px;
    }

    .pricing-extras {
        grid-template-columns: 1fr;
    }

    .pricing-extra-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .extra-price {
        justify-content: center;
    }
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-info strong {
    display: block;
    font-weight: 600;
}

.author-info span {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

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

.faq-question {
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 12px;
    display: none;
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.cta h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background: #1e1e1e;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 16px;
}

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

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .fields-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        gap: 16px;
    }

    .nav.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        border-bottom: 1px solid var(--border-color);
    }

    .nav a:last-of-type {
        border-bottom: none;
    }

    .language-switcher {
        margin: 8px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .column-showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .column-showcase-text h2 {
        font-size: 32px;
    }

    .column-showcase-subtitle {
        font-size: 18px;
    }

    .benefit-item h4 {
        font-size: 16px;
    }

    .benefit-item p {
        font-size: 14px;
    }

    .drag-indicator {
        right: 50%;
        top: auto;
        bottom: -12px;
        transform: translateX(50%) rotate(90deg);
    }

    .mockup-columns {
        gap: 12px;
    }

    .mockup-field {
        font-size: 13px;
        padding: 12px 14px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-text h2 {
        font-size: 32px;
    }

    .booking-subtitle {
        font-size: 18px;
    }

    .booking-feature-item h4 {
        font-size: 16px;
    }

    .booking-feature-item p {
        font-size: 14px;
    }

    .calendar-grid {
        gap: 6px;
    }

    .calendar-day {
        font-size: 13px;
    }

    .time-slot {
        padding: 10px;
        font-size: 13px;
    }
}

/* Column Showcase Section */
.column-showcase {
    padding: 100px 0;
    background: white;
}

.column-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-showcase-visual {
    animation: fadeInLeft 0.8s ease-out;
}

.showcase-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(56, 89, 233, 0.15);
    padding: 24px;
    border: 1px solid rgba(56, 89, 233, 0.1);
    position: relative;
}

.mockup-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

.toolbar-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--secondary-color);
    cursor: pointer;
    transition: all 0.2s;
}

.toolbar-item:hover {
    background: var(--primary-light);
    color: white;
}

.toolbar-item.active {
    background: var(--primary-color);
    color: white;
}

.toolbar-icon {
    font-size: 20px;
    font-weight: 500;
}

.toolbar-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
}

.mockup-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.mockup-columns.single {
    grid-template-columns: 1fr;
}

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

.mockup-field {
    padding: 14px 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s;
    cursor: move;
}

.mockup-field:hover {
    border-color: var(--primary-light);
    box-shadow: 0 2px 8px rgba(56, 89, 233, 0.1);
    transform: translateY(-2px);
}

.mockup-field.wide {
    min-height: 80px;
}

.drag-indicator {
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.1);
    }
}

.column-showcase-text {
    animation: fadeInRight 0.8s ease-out;
}

.column-showcase-label {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.column-showcase-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.column-showcase-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.column-showcase-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.column-showcase-note {
    font-size: 14px;
    color: var(--text-muted);
}

/* Booking Spotlight Section */
.booking-spotlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f3ff 0%, #e8ecff 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-text {
    animation: fadeInLeft 0.8s ease-out;
}

.booking-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.booking-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.booking-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.booking-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.booking-feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.booking-feature-item p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.booking-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-note {
    font-size: 14px;
    color: var(--text-muted);
}

.booking-visual {
    animation: fadeInRight 0.8s ease-out;
}

.booking-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(56, 89, 233, 0.15);
    padding: 24px;
    border: 1px solid rgba(56, 89, 233, 0.1);
}

.mockup-header {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--secondary-color);
}

.mockup-calendar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    font-weight: 600;
    color: var(--text-color);
}

.calendar-header span:first-child,
.calendar-header span:last-child {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.calendar-header span:first-child:hover,
.calendar-header span:last-child:hover {
    background: var(--secondary-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    border: 2px solid var(--border-color);
}

.calendar-day.header {
    font-weight: 600;
    color: var(--text-muted);
    border: none;
    cursor: default;
    background: transparent;
}

.calendar-day:not(.header):not(.disabled):hover {
    border-color: var(--primary-light);
    background: rgba(56, 89, 233, 0.05);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calendar-day.disabled {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
    border-color: transparent;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--secondary-color);
}

.time-slot {
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: var(--primary-light);
    background: rgba(56, 89, 233, 0.05);
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content,
.feature-card,
.testimonial-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}
