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

:root {
    /* LumiBirth "Illuminated" color palette */
    --primary: #D4AF37;
    /* Gold */
    --primary-dark: #B8860B;
    /* Dark Gold */
    --primary-light: #FFD700;
    /* Bright Gold */
    --secondary: #0F172A;
    /* Deep Night Indigo */
    --accent: #E2E8F0;
    /* Soft Slate */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Neutral colors */
    --text-dark: #0F172A;
    --text-medium: #334155;
    --text-light: #64748B;
    --bg-light: #FFFDF5;
    /* Soft Cream */
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;

    /* Layout */
    --glass-bg: rgba(255, 253, 245, 0.7);
    --glass-border: rgba(212, 175, 55, 0.3);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-soft: 0 8px 30px rgba(15, 23, 42, 0.05);
    --shadow-medium: 0 12px 40px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 16px 50px rgba(15, 23, 42, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.nav-brand {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
    text-transform: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 10rem 0 8rem;
    min-height: 90vh;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0.8;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(15, 23, 42, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 3.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(94, 92, 230, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(94, 92, 230, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--bg-light);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    width: 100%;
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--bg-light);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Horizontal Feature Cards Layout */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 5rem;
}

.feature-card-horizontal {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--bg-light);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.feature-image-col {
    flex: 0 0 45%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.feature-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card-horizontal:hover .feature-image-col img {
    transform: scale(1.08);
}

.feature-content-col {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.feature-card-horizontal .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card-horizontal h3 {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-card-horizontal p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.feature-card-horizontal ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.feature-card-horizontal li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card-horizontal li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.reverse-card {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {

    .feature-card-horizontal,
    .feature-card-horizontal.reverse-card {
        flex-direction: column;
    }

    .feature-image-col {
        flex: 0 0 350px;
        min-height: auto;
    }

    .feature-content-col {
        padding: 3rem 2rem;
    }
}

/* Product Section */
.product {
    background: var(--bg-light);
}

.page-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.page-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.page-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Section */
.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-strong);
    position: relative;
    border: 1px solid var(--bg-light);
}

.pricing-card::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.04em;
    font-family: 'Outfit', sans-serif;
}

.price-note {
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(94, 92, 230, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-medium);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    background: var(--bg-section);
    padding: 5rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    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;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Contact Section */
.contact {
    background: var(--bg-white);
    padding: 5rem 0;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Products Page Styles */
.products-hero {
    margin-top: 80px;
    padding: 6rem 0;
    min-height: 50vh;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.products-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(5, 150, 105, 0.85) 100%);
    z-index: 2;
}

.products-hero .container {
    position: relative;
    z-index: 3;
}

.products-hero .hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products-hero .hero-subtitle {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
}

.cta-section .section-title {
    color: white;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

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

.cta-button-primary:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-category {
    margin: 4rem 0;
}

.product-category.alt-bg {
    background: var(--bg-light);
    padding: 4rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.product-card.featured::before {
    height: 6px;
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    letter-spacing: -0.5px;
}

.product-price-range {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.product-description {
    color: var(--text-light);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.product-cta {
    margin-top: 1.5rem;
}

.btn-product {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-product.secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

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

.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.product-card.coming-soon-card {
    position: relative;
}

.product-card.coming-soon-card::after {
    content: 'Coming Soon';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--text-light);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 4% auto;
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--error);
    transform: rotate(90deg);
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

.modal-form {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--bg-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(94, 92, 230, 0.1);
}

.modal-form textarea {
    min-height: 80px;
    resize: vertical;
}

/* Premium File Upload */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border: 1.5px solid var(--bg-light);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: var(--primary);
    background-color: #fafafa;
}

.file-text {
    font-size: 0.9rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
}

.file-input:focus+.file-label {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(94, 92, 230, 0.1);
}

.file-button {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.file-label:hover .file-button {
    background: var(--primary);
    color: white;
}

.modal-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.modal-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.modal-features h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.modal-value {
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 8px;
    text-align: center;
}

.modal-value p {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.modal-security {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Gift selection step */
.gift-prompt {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.5rem 0 1.25rem;
    color: var(--text-dark, #1a1a2e);
}

.gift-choice-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.gift-choice-btn {
    flex: 1;
    max-width: 220px;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--primary, #7c3aed);
    border-radius: var(--border-radius-md, 10px);
    background: #fff;
    color: var(--primary, #7c3aed);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.gift-choice-btn:hover {
    background: #f5f3ff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.gift-choice-gift {
    background: linear-gradient(135deg, var(--primary, #7c3aed) 0%, var(--accent, #5e5ce6) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(94, 92, 230, 0.3);
}

.gift-choice-gift:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #4f46e5 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(94, 92, 230, 0.4);
}

#gift-banner {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #4c1d95;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#changeGiftChoice {
    background: none;
    border: none;
    color: var(--primary, #7c3aed);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    padding: 0;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .hero {
        padding: 8rem 0 5rem;
    }

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

    .modal-content {
        padding: 2.5rem 1.5rem;
        width: 95%;
    }
}

/* Hero CTA button row */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

/* Video Section Styles */
.commercial {
    background-color: var(--bg-white);
    padding: 4rem 0;
}

.video-outer-container {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    padding: 6px;
}

.video-inner-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 1px solid var(--glass-border);
    background: var(--bg-white);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-inner-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary);
}

.video-inner-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: calc(var(--border-radius-lg) - 1px);
}

.commercial .section-subtitle {
    margin-bottom: 2rem;
}