/* ============================================
   DE PASTEL — Premium B2B Website Styles
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --color-black: #111111;
    --color-gold: #C9A24D;
    --color-gold-hover: #B8963E;
    --color-gold-light: #D4B366;
    
    /* Secondary Colors */
    --color-cream: #F6E6C8;
    --color-white: #FAFAFA;
    --color-white-pure: #FFFFFF;
    
    /* Text Colors */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-inverse: #FAFAFA;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(201, 162, 77, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-label--light {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: var(--space-md);
}

.section-title--light {
    color: var(--color-white);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin-bottom: var(--space-lg);
}

.gold-divider--center {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    background: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 77, 0.4);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
    transition: all var(--transition-base);
}

.nav--scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
}

.nav__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 16px;
    border-radius: 50px;
    transition: background var(--transition-fast);
}

.nav__logo:hover {
    background: rgba(255, 255, 255, 1);
}

.nav__logo img {
    height: 42px;
    width: auto;
}

.nav__menu {
    display: none;
}

.nav__list {
    display: flex;
    gap: var(--space-xl);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.02em;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--color-gold);
}

.nav__cta {
    display: none;
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-black);
    border-top: 1px solid rgba(201, 162, 77, 0.2);
    padding: var(--space-lg);
}

.nav__menu.active .nav__list {
    flex-direction: column;
    gap: var(--space-md);
}

.nav__menu.active .nav__link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .nav__menu {
        display: block;
    }
    
    .nav__cta {
        display: inline-flex;
    }
    
    .nav__toggle {
        display: none;
    }
    
    .nav__logo img {
        height: 46px;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 0.85) 0%,
        rgba(17, 17, 17, 0.7) 50%,
        rgba(17, 17, 17, 0.8) 100%
    );
}

.hero__content {
    text-align: center;
    padding: var(--space-4xl) var(--space-md);
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    margin-bottom: var(--space-lg);
    animation: badgePulse 2s ease-in-out infinite;
}

.hero__badge span {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(201, 162, 77, 0.4);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.hero__title--accent {
    color: var(--color-gold);
    display: block;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: rgba(250, 250, 250, 0.85);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.about__grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.about__features {
    display: grid;
    gap: var(--space-sm);
}

.about__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--color-text);
}

.about__features .icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    /* Ensure proper display without decorative frame */
    width: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

/* ============================================
   Product Section
   ============================================ */

.product {
    padding: var(--space-4xl) 0;
    background: var(--color-black);
}

.product__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.product__header .section-label {
    color: var(--color-gold-light);
}

.product__header .section-title {
    color: var(--color-white);
}

.product__grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.product__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.product__features {
    display: grid;
    gap: var(--space-md);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 77, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: rgba(201, 162, 77, 0.08);
    border-color: rgba(201, 162, 77, 0.3);
    transform: translateY(-2px);
}

/* Highlighted feature card for profit/ROI */
.feature-card--highlight {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.15), rgba(201, 162, 77, 0.05));
    border-color: var(--color-gold);
    position: relative;
    overflow: hidden;
}

.feature-card--highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-gold-light));
}

.feature-card--highlight:hover {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.2), rgba(201, 162, 77, 0.08));
}

.feature-card--highlight .feature-card__title {
    color: var(--color-gold);
}

.feature-card__icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.feature-card__text {
    font-size: 0.9375rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .product__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    
    .product__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Process Section
   ============================================ */

.process {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.process__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.process__steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.step {
    text-align: center;
    padding: var(--space-lg);
}

.step__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}

.step__text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    max-width: 280px;
    margin: 0 auto;
}

.step__connector {
    display: none;
}

.process__image {
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.process__image img {
    width: 100%;
}

@media (min-width: 768px) {
    .process__steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
    
    .step {
        flex: 1;
        max-width: 300px;
    }
    
    .step__connector {
        display: block;
        width: 60px;
        height: 2px;
        background: var(--color-gold);
        margin-top: 2rem;
        opacity: 0.5;
    }
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-black);
}

.contact__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.contact__grid {
    display: grid;
    gap: var(--space-2xl);
}

.contact__info {
    max-width: 400px;
}

.contact__intro {
    font-size: 1.0625rem;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: rgba(201, 162, 77, 0.1);
    border-color: var(--color-gold);
}

.contact-method__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    color: var(--color-black);
    flex-shrink: 0;
}

.contact-method__icon svg {
    width: 22px;
    height: 22px;
}

.contact-method__content {
    display: flex;
    flex-direction: column;
}

.contact-method__label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 2px;
}

.contact-method__value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
}

/* Contact Form */
.contact__form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 77, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(250, 250, 250, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(201, 162, 77, 0.05);
}

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

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-3xl);
        align-items: start;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: var(--space-xl) 0;
    background: var(--color-black);
    border-top: 1px solid rgba(201, 162, 77, 0.1);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 50px;
}

.footer__logo {
    opacity: 1;
}

.footer__links {
    display: flex;
    gap: var(--space-lg);
}

.footer__link {
    font-size: 0.875rem;
    color: rgba(250, 250, 250, 0.6);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-gold);
}

.footer__copyright {
    font-size: 0.8125rem;
    color: rgba(250, 250, 250, 0.4);
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: var(--radius-full);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    z-index: 999;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Animations
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.about__grid [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.product__grid [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.contact__grid [data-animate]:nth-child(2) { transition-delay: 0.15s; }

.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease;
}

.product__features.animated .feature-card:nth-child(1) { transition-delay: 0.1s; }
.product__features.animated .feature-card:nth-child(2) { transition-delay: 0.2s; }
.product__features.animated .feature-card:nth-child(3) { transition-delay: 0.3s; }
.product__features.animated .feature-card:nth-child(4) { transition-delay: 0.4s; }

.product__features.animated .feature-card {
    opacity: 1;
    transform: translateY(0);
}

/* Feature cards in benefit-grid (inner pages) - visible immediately */
.benefit-grid .feature-card {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 767px) {
    :root {
        --space-4xl: 5rem;
        --space-3xl: 4rem;
    }
    
    .hero__content {
        padding-top: calc(var(--space-4xl) + 60px);
    }
    
    .hero__scroll {
        display: none;
    }
}

@media (min-width: 1024px) {
    .nav__container {
        padding: var(--space-md) var(--space-xl);
    }
    
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
    padding-top: calc(80px + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    background: var(--color-white);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(201, 162, 77, 0.3);
}

.legal-content section {
    margin-bottom: var(--space-xl);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-xs);
    margin-top: var(--space-md);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    list-style-type: disc;
}

.legal-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-gold-hover);
}

.legal-back {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201, 162, 77, 0.3);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    font-weight: 600;
    color: var(--color-black);
    background: var(--color-cream);
}

.cookie-table td {
    color: var(--color-text);
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-black);
    padding: var(--space-md) var(--space-lg);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(201, 162, 77, 0.3);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__text p {
    font-size: 0.9375rem;
    color: rgba(250, 250, 250, 0.9);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: var(--font-body);
}

.cookie-banner__btn--accept {
    background: var(--color-gold);
    color: var(--color-black);
}

.cookie-banner__btn--accept:hover {
    background: var(--color-gold-hover);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(250, 250, 250, 0.3);
}

.cookie-banner__btn--decline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

@media (min-width: 768px) {
    .cookie-banner__content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-banner__actions {
        flex-shrink: 0;
    }
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq__item {
    background: var(--color-white);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: var(--color-gold);
}

.faq__item[open] {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-fast);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gold);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq__item[open] .faq__question::after {
    content: '−';
}

.faq__question:hover {
    color: var(--color-gold);
}

.faq__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    animation: faqSlideDown 0.3s ease;
}

.faq__answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

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

/* ============================================
   Inner Page Hero (Compact)
   ============================================ */

.page-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: var(--color-black);
    text-align: center;
}

.page-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.page-hero__title--accent {
    color: var(--color-gold);
}

.page-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Content Sections (Inner Pages)
   ============================================ */

.content-section {
    padding: var(--space-3xl) 0;
}

.content-section--white {
    background: var(--color-white);
}

.content-section--cream {
    background: var(--color-cream);
}

.content-section--dark {
    background: var(--color-black);
}

.content-section--dark .section-title {
    color: var(--color-white);
}

.content-section--dark .section-label {
    color: var(--color-gold-light);
}

.content-section--dark p {
    color: rgba(250, 250, 250, 0.8);
}

.content-section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.content-section__body {
    max-width: 800px;
    margin: 0 auto;
}

.content-section__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.content-section--dark .content-section__text {
    color: rgba(250, 250, 250, 0.8);
}

/* ============================================
   Benefit List
   ============================================ */

.benefit-list {
    display: grid;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.benefit-list__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.benefit-list__item .icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.content-section--dark .benefit-list__item {
    color: rgba(250, 250, 250, 0.9);
}

/* Two-column benefit grid */
.benefit-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--color-black);
    text-align: center;
}

.cta-section__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section__text {
    font-size: 1.0625rem;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* ============================================
   Instructions/Steps (Inner Pages)
   ============================================ */

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
}

.instruction-step {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.instruction-step__number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.instruction-step__content {
    flex: 1;
    padding-top: var(--space-xs);
}

.instruction-step__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}

.instruction-step__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.content-section--dark .instruction-step__title {
    color: var(--color-white);
}

.content-section--dark .instruction-step__text {
    color: rgba(250, 250, 250, 0.7);
}

/* ============================================
   Breadcrumbs
   ============================================ */

.breadcrumbs {
    padding: var(--space-sm) 0;
    background: rgba(0, 0, 0, 0.3);
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.breadcrumbs__link {
    color: rgba(250, 250, 250, 0.6);
    transition: color var(--transition-fast);
}

.breadcrumbs__link:hover {
    color: var(--color-gold);
}

.breadcrumbs__separator {
    color: rgba(250, 250, 250, 0.4);
}

.breadcrumbs__current {
    color: var(--color-gold);
}

