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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-link {
    text-decoration: none;
    transition: transform 0.2s ease;
}

.header__logo-link:hover {
    transform: scale(1.05);
}

.header__logo-text {
    font-family: monospace;
    font-size: 1.75rem;
    font-weight: 900;
    color: #217346;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #217346, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(33, 115, 70, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.header__logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #217346, #059669);
    transition: width 0.3s ease;
}

.header__logo-link:hover .header__logo-text::after {
    width: 100%;
}

/* Hamburger button */
.header__menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: default;
    padding: 0.25rem;
}

.header__menu-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: #1f2937;
    margin: 5px 0;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.header__nav {
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s ease;
    font-family: "Orbitron", monospace;
}

.header__nav-link:hover {
    color: #217346;
}

.header__nav-link--app {
    background: linear-gradient(45deg, #217346, #059669);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none;
}

.header__nav-link--app:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #217346 0%, #059669 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero__subheading {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero__title-highlight {
    color: #ebb23c;
}

.hero__title-highlight--old {
    color: white;
}


.hero__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero__cta-button {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    min-width: 320px;
    position: relative;
}

/* Additional hero styles for inline style replacement */
.hero__variant--main {
    display: block;
}

.hero__cta--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__cta-button--clean {
    text-decoration: none;
    border: none;
    cursor: default;
}

.hero__cta-pricing--styled {
    margin: 1.5rem 0 0 0;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 320px;
    padding: 0;
    font-style: italic;
}

.hero__cta-button .strike-through {
    position: relative;
    display: inline-block;
}

.hero__cta-button .strike-through::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    transform: translateY(-50%) rotate(-15deg);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(220, 38, 38, 0.3);
}

.hero__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer__copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.footer__links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer__link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: default;
}

.footer__link:hover {
    color: #217346;
}

/* Legal Modal Styles */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.legal-modal.active {
    display: flex;
}

.legal-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.legal-modal__content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 700px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.legal-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.legal-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.legal-modal__close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: default;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.legal-modal__close:hover {
    color: #1a1a1a;
    background: #f3f4f6;
}

.legal-modal__body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    line-height: 1.6;
    color: #374151;
}

.legal-modal__body h2 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.legal-modal__body h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.legal-modal__body p {
    margin-bottom: 1rem;
}

.legal-modal__body ul,
.legal-modal__body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-modal__body li {
    margin-bottom: 0.5rem;
}

/* Small print styling for legal content */
.legal-modal__body--small {
    font-size: 0.8rem;
    line-height: 1.5;
}

.legal-modal__body--small h2 {
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-modal__body--small p {
    margin-bottom: 0.75rem;
}

/* Mobile responsiveness for modals */
@media (max-width: 768px) {
    .legal-modal {
        padding: 1rem;
    }
    
    .footer__content {
        gap: 1rem;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-modal__header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .legal-modal__body {
        padding: 1.5rem;
    }
    
    .legal-modal__title {
        font-size: 1.25rem;
    }
}
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.hero__cta-guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

}

/* High-Value Promise Section */
.promise {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 20%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(16, 185, 129, 0.03) 100%);
    pointer-events: none;
}

.promise__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.promise__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #217346;
    position: relative;
}

.promise__intro {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.promise__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promise__feature {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.promise__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background: white;
}

.promise__feature-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    line-height: 1;
}

.promise__feature-content {
    flex: 1;
}

.promise__feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.promise__feature-example {
    font-size: 0.9rem;
    color: #217346;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.promise__feature-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.promise__conclusion {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 0 auto;
    max-width: 600px;
    border: 2px solid #e5e7eb;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: #f8fafc;
}

.benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefits__item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefits__item-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefits__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefits__item-description {
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.how-it-works__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-it-works__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #217346;
    position: relative;
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.how-it-works__step {
    text-align: center;
    position: relative;
}

.how-it-works__step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #217346, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.how-it-works__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.how-it-works__step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.pricing__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pricing__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.pricing__card {
    background: white;
    color: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing__card-header {
    margin-bottom: 2rem;
}

.pricing__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing__card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing__card-currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing__card-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #217346;
}

.pricing__card-period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing__card-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing__card-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
}

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

.pricing__card-button {
    background: linear-gradient(45deg, #217346, #059669);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: default;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
    min-height: 50px;
}

.pricing__card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.pricing__card-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.pricing__card-original {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing__card-original-text {
    font-size: 1.2rem;
    color: #dc2626;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    position: relative;
}

/* Removed diagonal line - commented out for potential future use
.pricing__card-original-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    height: 3px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    transform: translateY(-50%) rotate(-15deg);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(220, 38, 38, 0.3);
}
*/

.pricing__card-savings {
    font-size: 1rem;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Section */
.trust {
    padding: 6rem 0;
    background: #f8fafc;
}

.trust__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust__item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.trust__item-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust__item-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact__description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact__method {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact__method:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0 1rem 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer__copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: white;
    cursor: default;
}

.footer__cookie-notice {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background-color: #334155;
    border-radius: 6px;
}

.footer__cookie-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.footer__company-details {
    text-align: center;
    border-top: 1px solid #475569;
    padding-top: 1rem;
}

.footer__company-details p {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .footer__content {
        justify-content: center;
        text-align: center;
    }
    
    .footer__links {
        gap: 1.5rem;
    }
    
    .footer__company-details p {
        font-size: 0.75rem;
    }
}

/* Payment Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.payment-modal--active {
    display: flex;
}

.payment-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.payment-modal__content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.payment-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: default;
    color: #6b7280;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.payment-modal__close:hover {
    background: #f3f4f6;
}

.payment-modal__header {
    text-align: center;
    margin-bottom: 1rem;
}

.payment-modal__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.payment-modal__subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

.payment-modal__summary {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.payment-modal__body {
    display: flex;
    flex-direction: column;
}

.payment-modal__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.payment-modal__item:last-child {
    margin-bottom: 0;
}

.payment-modal__item-label {
    font-weight: 500;
}

.payment-modal__item-price {
    font-weight: 600;
    color: #217346;
}

.payment-modal__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
    font-weight: 700;
    font-size: 1.125rem;
}

.payment-modal__total-price {
    color: #217346;
}

.payment-modal__form-group {
    margin-bottom: 1rem;
}

.payment-modal__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.payment-modal__input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.payment-modal__input:focus {
    outline: none;
    border-color: #217346;
}

.payment-modal__card-element {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
}

.payment-modal__card-errors {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.payment-modal__submit {
    width: 100%;
    background: linear-gradient(45deg, #217346, #059669);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: default;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.payment-modal__submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.payment-modal__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-modal__guarantee {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.payment-modal__guarantee-text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.payment-modal__submit-loading--hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    /* Show hamburger, hide nav by default */
    .header__menu-toggle {
        display: block;
    }
    
    .header__nav {
        display: none;
        position: absolute;
        top: 64px;
        right: 2rem;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.75rem;
        z-index: 1100;
    }

    .header__nav.header__nav--open {
        display: flex;
    }
    
    .benefits__grid,
    .how-it-works__steps,
    .trust__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-modal__content {
        margin: 1rem;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .payment-modal__layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-modal__summary {
        order: 2;
    }
    
    .payment-modal__form-container {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .benefits__title,
    .how-it-works__title,
    .pricing__title,
    .trust__title,
    .contact__title {
        font-size: 2rem;
    }
}


/* Video Placeholder Styles */
.hero__video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 315px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: all 0.4s ease;
}

.hero__video-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.video-placeholder__content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.video-placeholder__icon {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hero__video-placeholder:hover .video-placeholder__icon {
    color: white;
    transform: scale(1.1);
}

.video-placeholder__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ebb23c;
}

.video-placeholder__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.video-placeholder__arrow {
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    40% {
        transform: translateY(-8px);
        opacity: 1;
    }
    60% {
        transform: translateY(-4px);
        opacity: 0.9;
    }
}

.hero__video-placeholder:hover .video-placeholder__arrow {
    animation-duration: 0.8s;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero__video-placeholder {
        height: 250px;
    }
    
    .video-placeholder__title {
        font-size: 1.25rem;
    }
    
    .video-placeholder__icon svg {
        width: 60px;
        height: 60px;
    }
}


/* Enhanced button spacing */
.hero__cta--centered {
    padding: 2rem 0;
}

.hero__cta-button {
    margin: 1rem 0;
}
