:root {
    --bg: #F7F7F8;
    --bg-white: #FFFFFF;
    --text: #111827;
    --text-light: #6B7280;
    --accent: #0EA5A4;
    --accent-dark: #0D9494;
    --amber: #F59E0B;
    --border: #E5E7EB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

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

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

.lang-switch {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: var(--bg);
    border-radius: 6px;
}

.lang-switch a {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-switch a.active {
    background: var(--accent);
    color: white !important;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg) 100%);
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: var(--bg-white);
    border: 2px solid var(--accent);
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.price-badge .amount {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.price-badge .period {
    color: var(--text-light);
    font-size: 1rem;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-feature::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

/* Hero Image */
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Included Image */
.included-image {
    text-align: center;
    margin-bottom: 40px;
}

.included-image img {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* How it works */
.how-it-works {
    background: var(--bg-white);
}

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

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
}

/* What's included */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.included-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.included-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.included-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    background: var(--bg-white);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-row:last-of-type {
    border-bottom: none;
}

.pricing-label {
    text-align: left;
}

.pricing-label strong {
    display: block;
    font-size: 1.1rem;
}

.pricing-label span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-amount {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.pricing-card .btn {
    margin-top: 30px;
    width: 100%;
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--text-light);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* Contact */
.contact {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--bg);
    padding: 40px;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Rental Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal .modal-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.modal .form-group {
    margin-bottom: 16px;
}

.modal .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.modal .form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.modal .form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal .btn {
    width: 100%;
    margin-top: 10px;
}

.modal .form-status {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
}

.modal .form-status.success {
    color: var(--accent);
}

.modal .form-status.error {
    color: #dc2626;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 60px;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.legal-page .legal-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page a {
    color: var(--accent);
}

/* Success Popup */
.success-popup .modal {
    text-align: center;
    max-width: 420px;
    padding: 40px 30px;
}

.success-popup .success-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.success-popup h2 {
    margin-bottom: 12px;
}

.success-popup p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links .btn {
        text-align: center;
    }

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

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

    .hero-ctas .btn {
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .price-badge {
        padding: 10px 16px;
    }

    .price-badge .amount {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 25px;
    }

    .pricing-amount {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Modal mobile */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal {
        padding: 25px 20px;
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }

    .modal h2 {
        font-size: 1.3rem;
        padding-right: 30px;
    }

    .modal .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .modal .form-group {
        margin-bottom: 12px;
    }

    .modal .form-group input {
        padding: 12px 14px;
        font-size: 16px;
    }

    .modal .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left top;
    }

    /* Touch-friendly tap targets */
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-bar .btn {
        width: 100%;
    }
}

/* Cookie Consent Bar */
.cookie-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: #f3f4f6;
    padding: 16px 24px;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-bar.show {
    display: flex;
}

.cookie-bar p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-bar a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-bar .btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 24px;
}
