/* style_new.css */
:root {
    /* Color Palette derived from image */
    --primary-green: #689f64;      /* "COMPRAR CON DESCUENTO" button */
    --dark-green: #52824e;         /* Button hover state */
    --primary-blue: #4a90e2;       /* "EVOLUCIÓN" text and accents */
    --text-dark: #333333;          /* Main text color */
    --text-medium: #666666;        /* Secondary text */
    --text-light: #999999;         /* Placeholders and subtle text */
    --bg-light: #f9f9f9;           /* Background color for form section */
    --border-color: #dddddd;       /* Form borders */
    --white: #ffffff;
    --black: #000000;
    --red-urgency: #d93025;        /* "¡Quedan pocas unidades..." text */
    --review-stars: #ffc107;       /* Star rating color */
    --badge-bg: #e6f4ea;           /* "Save 50%" badge background */
    --badge-text: #137333;         /* "Save 50%" badge text */
    --table-header-bg: #747f8d;    /* Size table header background */
    --footer-bg: #000000;          /* Footer background */
    --footer-text: #cccccc;        /* Footer text color */
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout */
    --max-width: 100%;             /* Full width, responsive */
    --content-max-width: 1200px;   /* Max content width on desktop */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
}

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

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

/* App Container */
.app-container {
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
}

/* ---------- TOP BANNER ---------- */
.top-banner {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 8px var(--spacing-md);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ---------- HEADER ---------- */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
    text-align: center;
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-block;
}

/* ---------- PRODUCT HERO ---------- */
.product-hero {
    display: flex;
    flex-direction: column;
}

/* ---------- SLIDESHOW ---------- */
.slideshow {
    position: relative;
    width: 100%;
    background-color: var(--white);
}

.slideshow-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slideshow-track::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 5 / 5;
    scroll-snap-align: start;
    background-color: var(--white);
    overflow: hidden;
}

@supports not (aspect-ratio: 5 / 5) {
    .slide {
        padding-top: 100%;
        position: relative;
    }
    .slide img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
    background: var(--white);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-color);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s, transform 0.2s;
}

.dot.active {
    background-color: var(--text-dark);
    transform: scale(1.25);
}

.dot:hover:not(.active) {
    background-color: var(--text-light);
}

.product-header-info {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--black);
}

.star-icon {
    width: 18px;
    height: 18px;
}

.review-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.new-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
}

.badge {
    background-color: var(--black);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-star {
    color: var(--review-stars);
}

/* ---------- CHECKOUT FORM ---------- */
.checkout-section {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-title.left-align {
    text-align: left;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-row {
    display: flex;
    width: 100%;
}

.flex-row {
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.flex-row input {
    flex: 1;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-green);
}

input::placeholder {
    color: var(--text-light);
}

/* Inline SVG Icons */
.flag-icon {
    vertical-align: middle;
}

.sparkle-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.check-square-icon {
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
}

.gift-icon {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
}

/* Select / Dropdown */
.select-wrapper {
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background-color: var(--white);
    color: var(--text-dark);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Phone Input */
.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 100%;
    overflow: hidden;
    transition: border-color 0.2s;
}

.phone-input:focus-within {
    border-color: var(--primary-green);
}

.phone-prefix {
    padding: 12px 10px 12px 14px;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
    background-color: var(--bg-light);
    border-right: 1px solid var(--border-color);
}

.phone-input input[type="tel"] {
    border: none;
    border-radius: 0;
    padding-left: 12px;
}

.phone-input input[type="tel"]:focus {
    outline: none;
}

.field-error {
    border-color: #d32f2f !important;
}

.field-error:focus-within {
    border-color: #d32f2f !important;
}

/* Options */
.options-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.option-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Color Selector */
.color-selector {
    display: flex;
    gap: var(--spacing-sm);
}

.color-btn {
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.color-btn.active {
    border-color: var(--black);
    border-width: 2px;
}

.color-btn:hover:not(.active) {
    background-color: var(--bg-light);
}

/* Size Selector */
.size-selector {
    display: flex;
    gap: var(--spacing-sm);
}

.size-btn {
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn.active {
    border-color: var(--black);
    border-width: 2px;
}

.size-btn:hover:not(.active) {
    background-color: var(--bg-light);
}

/* CTA Button */
.cta-button {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 18px 16px;
    font-size: clamp(0.85rem, 3.5vw, 1.15rem);
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin: var(--spacing-sm) 0;
    transition: background-color 0.2s;
    box-shadow: 0 4px 6px rgba(104, 159, 100, 0.2);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--dark-green);
}

.cta-button-secondary {
    margin-top: var(--spacing-lg);
    font-family: inherit;
}

/* Urgency Lines */
.urgency-lines {
    text-align: center;
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.urgency-bold {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.urgency-green {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-green);
}

/* ---------- SECTIONS SHARED ---------- */
.benefits-section,
.product-gallery-section,
.evolution-section,
.specifications-section,
.act-now-section,
.reviews-section,
.important-notes-section,
.payment-shipping-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

/* ---------- PRODUCT GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.gallery-item figcaption {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-top: var(--spacing-xs);
    font-weight: 500;
}

/* Checks / Lists */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.act-now-text-block {
    flex: 1;
}

.act-now-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    line-height: 1.5;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: var(--spacing-lg);
    display: block;
}

/* Evolution Section */
.evolution-title {
    text-transform: uppercase;
    font-size: 1.5rem;
}

.highlight-blue {
    color: var(--primary-blue);
}

/* Specifications */
.specs-text {
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.table-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    text-align: center;
}

.size-table th,
.size-table td {
    padding: 10px;
    border: 1px solid var(--border-color);
}

.size-table th {
    background-color: var(--table-header-bg);
    color: var(--white);
    font-weight: 600;
}

.size-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Reviews */
.review-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.review-card:last-child {
    margin-bottom: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--review-stars);
}

.star-icon-sm {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

/* FAQs */
.faq-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-list dt {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-top: var(--spacing-sm);
}

.faq-list dd {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin-left: 0;
}

/* Important Notes */
.notes-title {
    margin-bottom: var(--spacing-sm);
}

.bullet-list {
    padding-left: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
}

/* Payment & Shipping */
.secure-checkout {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.payment-icon-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon-card svg {
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.package-title {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.package-content {
    display: flex;
    justify-content: center;
}

.package-image {
    max-width: 200px;
    height: auto;
}

/* Legal Disclaimer */
.legal-disclaimer-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background-color: #3a3a3a;
    color: var(--white);
}

.legal-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.legal-cards {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.legal-cards svg {
    border-radius: 4px;
}

/* Fidelity Club */
.fidelity-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.fidelity-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item figcaption {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    font-size: 0.75rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.disclaimer {
    color: #888888;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ---------- FLOATING CTA ---------- */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: stretch;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    font-family: var(--font-family);
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-cta:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-cta-price {
    background-color: #e0e0e0;
    color: var(--black);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 14px;
    display: flex;
    align-items: center;
}

.floating-cta-action {
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
    max-width: 120px;
    text-align: left;
}

/* ========================================
   TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {

    /* Sections get more breathing room */
    .benefits-section,
    .product-gallery-section,
    .evolution-section,
    .specifications-section,
    .act-now-section,
    .reviews-section,
    .important-notes-section,
    .payment-shipping-section,
    .faq-section,
    .fidelity-section,
    .legal-disclaimer-section {
        padding: 48px 40px;
    }

    .site-header {
        padding: var(--spacing-md) 40px;
    }

    /* Product hero: slideshow left, info+form right */
    .product-hero {
        flex-direction: row;
        align-items: flex-start;
    }

    .slideshow {
        flex: 1;
        min-width: 0;
    }

    .hero-right {
        flex: 1;
    }

    .product-header-info {
        padding: var(--spacing-lg) 40px;
    }

    .checkout-section {
        padding: var(--spacing-lg) 40px var(--spacing-xl);
    }

    /* Reviews: 2 columns */
    .reviews-section .section-title {
        grid-column: 1 / -1;
    }

    .reviews-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .review-card {
        margin-bottom: 0;
    }

    /* Steps: horizontal */
    .steps-grid {
        flex-direction: row;
        justify-content: center;
    }

    /* Gallery bigger gap */
    .gallery-grid {
        gap: var(--spacing-md);
    }

    /* Size table: don't need full width */
    .size-table {
        max-width: 500px;
    }

    /* Footer */
    .site-footer {
        padding: 40px;
    }

    .footer-content {
        max-width: var(--content-max-width);
        margin: 0 auto;
    }

    /* Floating CTA: position relative to viewport */
    .floating-cta {
        bottom: 24px;
        right: 24px;
    }
}

/* ========================================
   DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {

    /* Header: wider padding, centered content */
    .site-header {
        padding: var(--spacing-md) 60px;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Sections: centered with max-width */
    .benefits-section,
    .product-gallery-section,
    .evolution-section,
    .specifications-section,
    .act-now-section,
    .reviews-section,
    .important-notes-section,
    .payment-shipping-section,
    .faq-section,
    .fidelity-section {
        padding: 60px 80px;
        max-width: var(--content-max-width);
        margin-left: auto;
        margin-right: auto;
    }

    .legal-disclaimer-section {
        padding: 48px 80px;
    }

    .legal-disclaimer-section > * {
        max-width: var(--content-max-width);
        margin-left: auto;
        margin-right: auto;
    }

    /* Product hero: slideshow takes more space */
    .slideshow {
        flex: 1.2;
    }

    .hero-right {
        flex: 0.8;
    }

    .product-header-info {
        padding: var(--spacing-xl) 48px;
    }

    .checkout-section {
        padding: var(--spacing-lg) 48px var(--spacing-xl);
    }

    .product-title {
        font-size: 1.6rem;
    }

    .new-price {
        font-size: 2rem;
    }

    /* Form: 2 cols for options row */
    .options-container {
        flex-direction: row;
        align-items: flex-end;
    }

    .option-group {
        flex: 1;
    }

    /* Specs: text + table side by side */
    .specs-layout {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .specs-text {
        flex: 1;
        margin-bottom: 0;
    }

    .table-container {
        flex: 1;
    }

    /* Reviews: still 2 cols but wider cards */
    .reviews-grid-wrapper {
        gap: var(--spacing-lg);
    }

    /* Gallery */
    .gallery-grid {
        gap: var(--spacing-lg);
        max-width: 800px;
        margin: 0 auto;
    }

    /* Evolution image constrained */
    .evolution-image {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FAQ: 2 columns */
    .faq-list {
        columns: 2;
        column-gap: 40px;
    }

    .faq-list dt {
        margin-top: var(--spacing-md);
        break-after: avoid;
    }

    .faq-list dt:first-child {
        margin-top: 0;
    }

    .faq-list dd {
        break-before: avoid;
        break-inside: avoid;
    }

    /* Act now: content + image side by side */
    .act-now-content {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .act-now-content .content-image {
        max-width: 400px;
        margin-top: 0;
    }

    /* Fidelity: text + steps side by side */
    .fidelity-section {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .fidelity-text {
        flex: 1;
    }

    .steps-grid {
        flex: 1;
        margin-top: 0;
    }

    /* Footer */
    .site-footer {
        padding: 48px 80px;
    }

    /* Floating CTA */
    .floating-cta {
        bottom: 32px;
        right: 32px;
    }
}
