/* ========================================
   PinkGuard - Custom Ochraniacze na Zęby
   DARK STREET STYLE — Black + Neon Pink
   ======================================== */

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateY(100%);
    animation: cookieSlideIn 0.5s ease 0.5s forwards;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(233, 30, 140, 0.3);
}

.cookie-banner.hidden {
    animation: cookieSlideOut 0.4s ease forwards;
}

@keyframes cookieSlideIn {
    to {
        transform: translateY(0);
    }
}

@keyframes cookieSlideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text p:first-child {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.cookie-text p:last-child {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* --- CONSTRUCTION BANNER --- */
.construction-banner {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 20px rgba(233, 30, 140, 0.35);
}

/* --- BLURRED PRICES --- */
.blurred {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-glow: rgba(233, 30, 140, 0.5);
    --pink-light: #f7a8c9;
    --pink: #e91e8c;
    --pink-dark: #c4176f;
    --pink-pastel: rgba(233, 30, 140, 0.08);

    --black: #0a0a0a;
    --dark: #111111;
    --dark-card: #161616;
    --dark-surface: #1c1c1c;
    --dark-border: rgba(255, 255, 255, 0.06);
    --gray: #999;
    --gray-light: #141414;
    --white: #f0f0f0;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-pink: 0 0 40px rgba(233, 30, 140, 0.3), 0 0 80px rgba(233, 30, 140, 0.1);
    --glow-pink: 0 0 25px rgba(233, 30, 140, 0.5), 0 0 60px rgba(233, 30, 140, 0.25), 0 0 100px rgba(233, 30, 140, 0.1);

    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--pink);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--pink-light);
}

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

.highlight {
    color: var(--pink);
    text-shadow: 0 0 30px rgba(233, 30, 140, 0.5), 0 0 60px rgba(233, 30, 140, 0.2);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
}

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

.btn-outline {
    background: transparent;
    color: var(--pink);
    border-color: var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.05rem;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--dark-border);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(233, 30, 140, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 64px;
    width: auto;
    filter: brightness(1.1);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--pink);
    background: rgba(233, 30, 140, 0.1);
}

.nav-link.active {
    color: var(--pink);
}

.nav-cta {
    background: var(--pink);
    color: var(--white) !important;
    margin-left: 8px;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4), 0 0 40px rgba(233, 30, 140, 0.15);
}

.nav-cta:hover {
    background: var(--pink-dark) !important;
    color: var(--white) !important;
    box-shadow: var(--glow-pink);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

/* --- HERO --- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(160deg, var(--black) 0%, #0d0014 40%, #140018 60%, var(--dark) 100%);
    overflow: hidden;
    position: relative;
}

/* Radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glow ring behind hero image */
.hero-image::before {
    content: '';
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from {
        opacity: 0.5;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    transition: transform var(--transition);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(233, 30, 140, 0.2));
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* --- SECTIONS --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* --- ABOUT / FEATURES --- */
.section-about {
    background: var(--black);
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pink);
    border-color: rgba(233, 30, 140, 0.2);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 140, 0.1);
    border-radius: 50%;
    color: var(--pink);
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

.product-showcase {
    margin-top: 64px;
    text-align: center;
}

.product-showcase img {
    max-width: 500px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
    border: 1px solid var(--dark-border);
}

.product-showcase img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-pink);
}

.showcase-caption {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

/* --- STEPS --- */
.section-steps {
    background: var(--dark);
}

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

.step-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(233, 30, 140, 0.5), 0 0 50px rgba(233, 30, 140, 0.2);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

/* --- PRICING --- */
.section-pricing {
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pink);
    border-color: rgba(233, 30, 140, 0.2);
}

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

.pricing-card-featured {
    border-color: var(--pink);
    box-shadow: 0 0 40px rgba(233, 30, 140, 0.25), 0 0 80px rgba(233, 30, 140, 0.08);
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.08) 0%, var(--dark-card) 100%);
}

.pricing-card-featured::before {
    opacity: 1;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.pricing-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.pricing-type {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray);
}

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

.pricing-features li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid var(--dark-border);
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 700;
}

.pricing-extras {
    text-align: center;
}

.pricing-extras h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.extras-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.extra-item {
    background: var(--dark-card);
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--dark-border);
}

.extra-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.extra-price {
    font-weight: 800;
    color: var(--pink);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(233, 30, 140, 0.3);
}

/* --- ORDER FORM --- */
.section-order {
    background: linear-gradient(160deg, var(--dark) 0%, #0d0014 50%, var(--black) 100%);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--dark-border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.78rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    background: var(--dark-surface);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 15px rgba(233, 30, 140, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-surface);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--pink);
    cursor: pointer;
}

.order-form .btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- FORM SECTION TITLES --- */
.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 12px;
    margin-bottom: -8px;
    border-top: 1px solid var(--dark-border);
    padding-top: 20px;
}

.form-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
    display: block;
}

/* --- PAYMENT OPTIONS --- */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.payment-option:hover {
    border-color: rgba(233, 30, 140, 0.3);
    background: rgba(233, 30, 140, 0.05);
}

.payment-option:has(input:checked) {
    border-color: var(--pink);
    background: rgba(233, 30, 140, 0.08);
    box-shadow: 0 0 15px rgba(233, 30, 140, 0.15);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--pink);
    cursor: pointer;
    flex-shrink: 0;
}

.payment-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-option-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.payment-option-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

/* --- ORDER SUCCESS MODAL --- */
.order-success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.order-success-overlay.active {
    display: flex;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.order-success-modal {
    background: var(--dark-card);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 60px rgba(233, 30, 140, 0.2), var(--shadow-lg);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.order-success-modal h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.order-success-modal p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.order-success-modal .success-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    padding-top: 12px;
    border-top: 1px solid var(--dark-border);
}

.order-success-modal .btn {
    display: inline-block;
    width: auto;
}

/* --- FAQ --- */
.section-faq {
    background: var(--dark);
}

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

.faq-item {
    background: var(--dark-card);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--dark-border);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(233, 30, 140, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.faq-item[open] {
    border-color: rgba(233, 30, 140, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--pink);
    transition: transform var(--transition);
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(233, 30, 140, 0.3);
}

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

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* --- CONTACT --- */
.section-contact {
    background: var(--black);
}

.contact-grid {
    max-width: 640px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

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

.contact-item svg {
    flex-shrink: 0;
    color: var(--pink);
    margin-top: 2px;
    filter: drop-shadow(0 0 6px rgba(233, 30, 140, 0.3));
}

.contact-item h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item address {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gray);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--pink);
}

.contact-info-extra {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

.contact-info-extra p {
    font-size: 0.85rem;
    color: var(--gray);
    display: inline-block;
    margin: 0 16px;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 48px 0 32px;
    border-top: 1px solid var(--dark-border);
}

.footer-container {
    text-align: center;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    margin: 0 auto 12px;
    filter: grayscale(1) brightness(2);
    opacity: 0.7;
}

.footer-logo p {
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-nav a {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 0.8rem;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

.footer-copy a {
    color: var(--pink-light);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
        border-bottom: 1px solid rgba(233, 30, 140, 0.15);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 240px;
        margin: 0 auto;
    }

    .hero-image::before {
        width: 200px;
        height: 200px;
    }

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

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

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-grid,
    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }

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

    .order-form {
        padding: 28px 20px;
    }

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

    .construction-banner {
        font-size: 0.75rem;
        padding: 8px 16px;
        top: 72px;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .extras-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .extra-item {
        justify-content: space-between;
    }

    .nav-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

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

    .hero-image img {
        max-width: 200px;
    }

    .hero-image::before {
        width: 160px;
        height: 160px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 13px 28px;
        font-size: 0.9rem;
    }

    .pricing-price .price {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .feature-card {
        padding: 28px 18px;
    }

    .step-card {
        padding: 28px 16px;
    }

    .construction-banner {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}