/* ===========================================
   RESET & BASE (mobile-first)
=========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    overflow-x: clip;
}

body {
    font-family: var(--font-main);
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 84px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* ===========================================
   TYPOGRAPHY
=========================================== */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 1.65rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.45;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* spacing utils */
.mt-8 {
    margin-top: 48px;
}

.mt-12 {
    margin-top: 48px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 32px;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hidden {
    display: none !important;
}

/* ===========================================
   LAYOUT
=========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 56px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.bg-white {
    background-color: var(--white);
}

.section-header {
    margin-bottom: 48px;
}

.section-header p {
    color: var(--muted);
    margin-top: 8px;
}

/* ===========================================
   BUTTONS
=========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-family: var(--font-main);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn .btn-arrow,
.btn i.btn-arrow {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.btn:hover .btn-arrow,
.btn:hover i.btn-arrow {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(184, 62, 37, 0.3), 0 1px 3px rgba(184, 62, 37, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 62, 37, 0.45), 0 2px 8px rgba(184, 62, 37, 0.25);
    filter: brightness(1.08);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(184, 62, 37, 0.3);
    filter: brightness(0.96);
    transition-duration: 0.1s;
}

.btn-bonus-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    color: #B83E25;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 700;
    font-family: var(--font-main);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-bonus-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.45), 0 0 20px rgba(255, 255, 255, 0.25);
    filter: brightness(1.05);
    color: #B83E25;
}

.btn-bonus-white:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    filter: brightness(0.97);
    transition-duration: 0.1s;
}

.btn-full {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.875rem;
}

/* ===========================================
   HEADER / NAV
=========================================== */
.header,
.header * {
    max-width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(250, 246, 241, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition:
        top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        left 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        right 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-bottom-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid transparent;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 14px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
}

.logo img {
    max-width: 100%;
    height: auto !important;
    max-height: 42px;
}

.nav-desktop {
    display: none;
    gap: 8px;
}

.nav-desktop a {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nav-desktop a:hover {
    background-color: rgba(0, 0, 0, 0.04);
    color: var(--primary);
}

.nav-desktop-cta {
    display: none;
}

.hamburger-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 6px;
    border-radius: 10px;
    transition: background 0.2s ease;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 40px;
    min-height: 40px;
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.nav-mobile {
    display: none !important;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 12px;
    overflow-x: hidden;
}

.nav-mobile.is-open {
    display: flex !important;
}

.nav-mobile a {
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    max-width: 100%;
}

.nav-mobile a:hover {
    background-color: rgba(0, 0, 0, 0.04);
    color: var(--primary);
}

.nav-mobile .btn {
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

section[id] {
    scroll-margin-top: 100px;
}

/* ===========================================
   HERO
=========================================== */
.hero {
    position: relative;
    padding: 24px 0 40px;
    padding-top: calc(24px + 56px);
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 62, 37, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-text {
    min-width: 0;
}

.hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
    max-width: 100%;
}

.badge {
    color: var(--white);
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.06em;
}

.subheadline {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 20px;
    max-width: 560px;
}

.event-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    min-width: 0;
    max-width: 100%;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 100%;
}

.speakers {
    margin-top: 4px;
    min-width: 0;
    max-width: 100%;
}

/* ===========================================
   FORM WRAPPER
=========================================== */
.hero-banner .hero-form-wrapper {
    min-height: 714px;
}

.hero-form-wrapper {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-form-wrapper h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.form-micro {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 20px;
}

input,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-input);
    background: var(--cream);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.2s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 62, 37, 0.08);
}

/* ===========================================
   VIDEO PLACEHOLDER
=========================================== */
.video-placeholder {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: var(--radius-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-placeholder video {
    aspect-ratio: 16 / 9;
}

/* ===========================================
   KPI GRID
=========================================== */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.kpi-grid-wrapper {
    box-sizing: border-box;
}

.kpi-card {
    background: var(--white);
    border-radius: 15px;
    padding: 22px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

.kpi-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kpi-icon-right {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 24px;
    order: -1;
}

.kpi-card--featured {
    background: var(--primary);
    border-color: var(--primary);
}

.kpi-card--featured .kpi-icon-right {
    color: #fff;
}

.kpi-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.kpi-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.kpi-unit {
    font-size: 1.1rem;
    font-weight: 800;
}

.kpi-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.35;
}

/* ===========================================
   CARDS / GRIDS
=========================================== */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: var(--radius-card);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===========================================
   BONUS SECTION
=========================================== */
.bonus-section {
    overflow: hidden;
    padding: 0;
}

.bonus-section-inner {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    max-width: 100%;
}

.bonus-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.bonus-text-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bonus-section .bonus-card-text {
    position: relative;
    z-index: 2;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    max-width: 560px;
}

/* ===========================================
   AGENDA / TIMELINE
=========================================== */
.timeline {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
}

.timeline-item {
    position: relative;
    margin-bottom: 0;
    padding: 16px 18px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.timeline-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.timeline-item .time {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.timeline-item .content {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.agenda-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
}

.agenda-image {
    display: none !important;
}

.agenda-grid .timeline-item {
    grid-column: 1 / -1;
}

/* ===========================================
   COMPARISON LISTS
=========================================== */
.comparison .card {
    padding: 28px 22px;
}

.border-primary {
    border: 2px solid var(--primary) !important;
    position: relative;
}

.check-list,
.cross-list {
    list-style: none;
    margin-top: 16px;
}

.check-list li,
.cross-list li {
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.list-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.list-icon-check {
    color: #2D9C4A;
}

.list-icon-cross {
    color: var(--primary);
}

/* ===========================================
   PROJECTS
=========================================== */
.project-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.project-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
}

.project-content {
    padding: 24px 20px;
}

.highlight {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.amenity-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    background: #faf7f4;
    border-radius: 10px;
    text-align: center;
    transition: background 0.2s;
}

.amenity-box span {
    font-size: 0.78rem;
    line-height: 1.3;
    color: var(--text);
}

/* ===========================================
   VIDEO TESTIMONIALS (Slick)
=========================================== */
.video-testimonial-slider {
    padding: 0 10px;
    padding-bottom: 40px;
}

.video-testimonial-slide {
    padding: 0 10px;
    height: auto;
}

.video-testimonial-slider .slick-track {
    display: flex !important;
}

.video-testimonial-slider .slick-slide {
    height: auto !important;
}

.video-testimonial-slider .slick-slide>div {
    height: 100%;
}

.video-testimonial-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column;
    height: 100%;
}

.video-testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.video-testimonial-thumb {
    position: relative;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

.video-testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    transition: background 0.3s ease;
}

.video-testimonial-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-testimonial-card:hover .video-testimonial-play {
    background: var(--primary);
    border-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.12);
}

.video-testimonial-card:hover .video-testimonial-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.video-testimonial-info {
    padding: 18px 20px 22px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-testimonial-quote {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.video-testimonial-author strong {
    font-size: 0.9rem;
    color: var(--text);
}

.video-testimonial-author span {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
}

.video-testimonial-slider .slick-dots {
    bottom: -35px !important;
}

.video-testimonial-slider .slick-dots li {
    margin: 0 4px !important;
    width: 10px !important;
    height: 10px !important;
}

.video-testimonial-slider .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
}

.video-testimonial-slider .slick-dots li button:before {
    content: '' !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: var(--primary) !important;
    opacity: 0.2 !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
    display: block !important;
    line-height: normal !important;
    font-size: 0 !important;
}

.video-testimonial-slider .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    transform: scale(1.15) !important;
}

.video-testimonial-slider .slick-prev,
.video-testimonial-slider .slick-next {
    display: none !important;
}

/* ===========================================
   ACCORDION
=========================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: none;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-main);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.accordion-trigger:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.accordion-trigger[aria-expanded="true"] {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(184, 62, 37, 0.25);
    border-radius: 10px 10px 0 0;
}

.accordion-trigger .icon {
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.accordion-trigger .icon::after {
    content: '+';
}

.accordion-trigger[aria-expanded="true"] .icon {
    background: rgba(255, 255, 255, 0.2);
}

.accordion-trigger[aria-expanded="true"] .icon::after {
    content: '\2212';
}

.accordion-panel {
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 18px 20px;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.accordion-panel p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 0;
}

.accordion-panel[hidden] {
    display: none;
}

/* ===========================================
   CTA FINAL
=========================================== */
.cta-final-split {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
}

.cta-final-floating-chips {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
    margin-bottom: 32px;
}

.cta-final-floating-chips .chip {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--text);
    font-weight: 700;
}

/* ===========================================
   FOOTER
=========================================== */
.footer {
    padding: 36px 0 100px;
    text-align: center;
    font-size: 0.85rem;
}

.footer p {
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    opacity: 1 !important;
    text-decoration: underline;
}

/* ===========================================
   STICKY CTA (mobile)
=========================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: 900;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===========================================
   BREAKPOINTS (min-width)
=========================================== */
@media (min-width: 600px) {
    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 16px;
    }

    .kpi-grid {
        gap: 14px;
    }

    .kpi-icon-right {
        font-size: 28px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-vsl {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .video-placeholder {
        width: 55%;
        margin-left: auto;
        margin-right: auto;
    }

    .agenda-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .agenda-image {
        display: block !important;
    }

    .agenda-grid .timeline-item {
        grid-column: auto;
    }
}

@media (min-width: 960px) {
    body {
        padding-bottom: 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 18px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 56px 0;
    }

    .btn {
        padding: 14px 36px;
        white-space: nowrap;
    }

    .btn-bonus-white {
        padding: 14px 36px;
        white-space: nowrap;
    }

    .btn-sm {
        padding: 10px 24px;
    }

    .nav-desktop {
        display: flex;
    }

    .nav-desktop-cta {
        display: inline-flex;
    }

    .hamburger-btn {
        display: none;
    }

    .header.scrolled {
        top: 20px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: 1400px;
        padding: 12px 24px;
    }

    .logo img {
        max-height: 50px;
    }

    .hero {
        padding: 32px 0 48px;
        padding-top: calc(32px + 56px);
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
    }

    .event-details {
        gap: 12px;
    }

    .chip {
        padding: 10px 18px;
        font-size: 0.875rem;
    }

    .grid-3 {
        grid-template-columns: repeat(4, 1fr);
    }

    .kpi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 100%;
    }

    .kpi-grid-wrapper {
        padding: 0 24px !important;
    }

    .kpi-card {
        flex-direction: row;
        align-items: center;
        padding: 28px 24px 24px;
    }

    .kpi-icon-right {
        font-size: 40px;
        order: 0;
    }

    .kpi-number {
        font-size: 2.8rem;
    }

    .kpi-unit {
        font-size: 1.4rem;
    }

    .bonus-section .bonus-card-text {
        padding: 56px 56px 56px 64px;
    }

    .cta-final-split {
        flex-direction: column;
        min-height: auto;
        align-items: center;
    }

    .sticky-cta {
        display: none;
    }

    .footer {
        padding-bottom: 36px;
    }

    .container {
        padding: 0 24px;
    }

    .hero-form-wrapper h3 {
        font-size: 21px;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}