:root {
    --bg: #07090e;
    --bg-soft: #0d1119;
    --panel: #131a26;
    --panel-soft: #192334;
    --text: #f3f7ff;
    --muted: #8fa1bb;
    --line: rgba(177, 192, 214, 0.2);
    --diamond: #89e8ff;
    --diamond-2: #55cbff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(85, 203, 255, 0.12), transparent 26%),
        radial-gradient(circle at 15% 85%, rgba(137, 232, 255, 0.07), transparent 30%),
        linear-gradient(165deg, #07090e, #0d131d 62%, #111826);
}

.home-page {
    background:
        radial-gradient(circle at 80% 18%, rgba(85, 203, 255, 0.16), transparent 32%),
        radial-gradient(circle at 12% 85%, rgba(137, 232, 255, 0.09), transparent 30%),
        linear-gradient(165deg, #05080d, #0a111a 58%, #0f1622);
}

.home-hero {
    min-height: 88vh;
    position: relative;
    background: url("assets/fondo.png") center/cover no-repeat;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(170deg, rgba(5, 8, 13, 0.9), rgba(5, 8, 13, 0.62) 42%, rgba(5, 8, 13, 0.82) 100%),
        radial-gradient(circle at 75% 22%, rgba(85, 203, 255, 0.24), transparent 30%);
}

.home-nav {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 1.1rem 7% 0;
    justify-content: flex-end;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    padding: 6.5rem 7% 4.2rem;
    max-width: 820px;
}

.home-kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--diamond);
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.1rem;
}

.home-hero-content h1 span {
    color: var(--diamond);
}

#home-main-title {
    color: #ffffff;
}

#home-main-title-accent {
    color: var(--diamond);
}

.home-lead {
    color: #ccdcf0;
    max-width: 650px;
    line-height: 1.75;
    font-size: 1rem;
}

.home-proof-chips {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.home-proof-chips span {
    border: 1px solid rgba(85, 203, 255, 0.35);
    background: rgba(10, 18, 29, 0.68);
    color: #d8e5f5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.38rem 0.5rem;
}

.home-countdown {
    margin-top: 1rem;
    border: 1px solid rgba(85, 203, 255, 0.36);
    background: rgba(10, 18, 29, 0.72);
    padding: 0.75rem;
}

.home-countdown p {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b8cfe8;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.home-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.home-countdown-grid div {
    border: 1px solid var(--line);
    background: rgba(7, 12, 19, 0.72);
    text-align: center;
    padding: 0.4rem 0.3rem;
}

.home-countdown-grid strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--diamond);
    margin-bottom: 0.15rem;
}

.home-countdown-grid span {
    font-size: 0.56rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #adc3da;
}

.home-cta-row {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.home-cta-center {
    justify-content: center;
}

.home-btn {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.71rem;
    font-weight: 800;
    padding: 0.7rem 0.95rem;
    border: 1px solid var(--line);
    transition: all 220ms ease;
}

.home-btn-primary {
    background: linear-gradient(135deg, var(--diamond-2), var(--diamond));
    color: #031018;
    border-color: transparent;
}

.home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(85, 203, 255, 0.25);
}

.home-btn-ghost {
    color: #d8e5f5;
    background: rgba(10, 16, 25, 0.6);
}

.home-btn-ghost:hover {
    color: var(--diamond);
    border-color: rgba(85, 203, 255, 0.55);
}

.home-main {
    width: min(1100px, 92vw);
    margin: 0 auto;
    padding: 2.2rem 0 2.5rem;
}

.home-section {
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(16, 24, 37, 0.88), rgba(19, 30, 45, 0.8));
    padding: clamp(1.1rem, 2vw, 2rem);
    margin-bottom: 1.2rem;
}

.home-section-header h2 {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.home-section-header p {
    color: var(--muted);
    max-width: 760px;
    line-height: 1.65;
}

.home-story-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.home-story-grid article {
    border: 1px solid var(--line);
    background: rgba(10, 16, 25, 0.6);
    padding: 1rem;
}

.home-story-grid h3 {
    color: var(--diamond);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
}

.home-story-grid p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.commercial-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.commercial-item {
    border: 1px solid var(--line);
    background: rgba(10, 16, 25, 0.62);
    padding: 1rem;
}

.commercial-tag {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--diamond);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.commercial-item h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.commercial-item p {
    color: var(--muted);
    line-height: 1.62;
    font-size: 0.9rem;
}

.commercial-cta-box {
    margin-top: 1rem;
    border: 1px solid rgba(85, 203, 255, 0.36);
    background: linear-gradient(160deg, rgba(17, 28, 41, 0.9), rgba(16, 23, 33, 0.92));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.commercial-cta-box p {
    color: #d5e3f5;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 700px;
}

.youtube-widget {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 1rem;
    border: 1px solid var(--line);
    background: rgba(10, 16, 25, 0.65);
}

.youtube-widget iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-note {
    margin-top: 0.8rem;
    border-left: 3px solid var(--diamond-2);
    padding-left: 0.75rem;
}

.video-note p {
    color: #d1dff1;
    font-size: 0.88rem;
    line-height: 1.6;
}

.split-layout {
    display: flex;
    min-height: 100vh;
}

.hero-section {
    flex: 0 0 43%;
    position: sticky;
    top: 0;
    height: 100vh;
    background: url("assets/fondo.png") center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(7, 9, 14, 0.88), rgba(7, 9, 14, 0.3) 55%),
        radial-gradient(circle at 55% 45%, transparent 22%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2.6rem;
    max-width: 540px;
}

.brand-logo {
    width: clamp(240px, 32vw, 360px);
    margin-bottom: 1.3rem;
    filter: drop-shadow(0 0 34px rgba(85, 203, 255, 0.28));
}

.hero-content h1 {
    font-size: clamp(2.1rem, 4.1vw, 4.2rem);
    font-weight: 800;
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.subtitle {
    margin-top: 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    color: var(--diamond);
    text-transform: uppercase;
    font-weight: 600;
}

.content-section {
    flex: 1;
    padding: 3.2rem 7%;
}

.minimal-nav {
    position: sticky;
    top: 1.1rem;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
    margin-bottom: 2.4rem;
}

.minimal-nav.scrolled a {
    border-color: rgba(85, 203, 255, 0.38);
    background: rgba(16, 31, 45, 0.78);
}

.minimal-nav a {
    color: #d8e5f5;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.58rem 0.72rem;
    border: 1px solid var(--line);
    background: rgba(10, 16, 25, 0.58);
    backdrop-filter: blur(10px);
    transition: all 220ms ease;
}

.minimal-nav a:hover {
    color: var(--diamond);
    border-color: rgba(85, 203, 255, 0.55);
    background: rgba(16, 31, 45, 0.72);
}

.menu-toggle {
    width: 42px;
    height: 36px;
    border: 1px solid var(--line);
    background: rgba(10, 16, 25, 0.58);
    backdrop-filter: blur(10px);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 220ms ease;
}

.menu-toggle:hover {
    border-color: rgba(85, 203, 255, 0.55);
    background: rgba(16, 31, 45, 0.72);
}

.menu-toggle span {
    width: 16px;
    height: 2px;
    background: #d8e5f5;
    transition: background 220ms ease;
}

.menu-toggle:hover span {
    background: var(--diamond);
}

body.menu-open {
    overflow: hidden;
}

.site-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86vw, 340px);
    height: 100vh;
    background: linear-gradient(165deg, rgba(10, 16, 25, 0.98), rgba(14, 24, 37, 0.98));
    border-right: 1px solid var(--line);
    transform: translateX(-102%);
    transition: transform 260ms ease;
    z-index: 40;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.site-sidebar.open {
    transform: translateX(0);
}

.site-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.8rem;
}

.site-sidebar-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.site-sidebar-close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    color: #d8e5f5;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.site-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.site-sidebar-nav a {
    text-decoration: none;
    color: #d8e5f5;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    border: 1px solid var(--line);
    padding: 0.7rem 0.75rem;
    transition: all 220ms ease;
}

.site-sidebar-nav a:hover {
    color: var(--diamond);
    border-color: rgba(85, 203, 255, 0.55);
    background: rgba(16, 31, 45, 0.72);
}

.site-overlay {
    position: fixed;
    inset: 0;
    border: none;
    background: rgba(4, 7, 11, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 35;
}

.site-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 2.1rem;
}

.block {
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(18, 25, 37, 0.8), rgba(21, 32, 47, 0.5));
    padding: 1.15rem;
    min-height: 145px;
    transition: transform 220ms ease, border-color 220ms ease;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.block:hover {
    transform: translateY(-3px);
    border-color: rgba(85, 203, 255, 0.48);
}

.block h3 {
    font-size: 0.94rem;
    margin-bottom: 0.55rem;
    color: var(--diamond);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.block p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.registration {
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(16, 24, 37, 0.88), rgba(19, 30, 45, 0.8));
    padding: 1.35rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    margin-bottom: 0.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--muted);
    font-size: 0.92rem;
}

.modern-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.05rem 0.9rem;
}

.form-fields-dynamic {
    display: contents;
}

.input-group {
    position: relative;
}

.full-width {
    grid-column: 1 / -1;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    background: rgba(8, 13, 20, 0.78);
    border: 1px solid var(--line);
    padding: 1.2rem 0.8rem 0.58rem;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 220ms ease, box-shadow 220ms ease;
    font-family: inherit;
}

.modern-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-top: 1.1rem;
}

.modern-form textarea {
    resize: vertical;
    min-height: 96px;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--diamond-2);
    box-shadow: 0 0 0 3px rgba(85, 203, 255, 0.14);
}

.input-group > label {
    position: absolute;
    left: 0.8rem;
    top: 0.86rem;
    color: var(--muted);
    pointer-events: none;
    transition: all 0.26s ease;
    font-size: 0.83rem;
}

.modern-form input:focus + label,
.modern-form input:not(:placeholder-shown) + label,
.modern-form select + label,
.modern-form textarea:focus + label,
.modern-form textarea:not(:placeholder-shown) + label {
    top: 0.34rem;
    font-size: 0.64rem;
    color: var(--diamond);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload {
    border: 1px dashed var(--line);
    background: rgba(14, 21, 32, 0.7);
    padding: 1rem;
}

.file-label-text {
    display: block;
    color: var(--muted);
    font-size: 0.74rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.file-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#car-photo {
    display: none;
}

.custom-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: none;
    border: none;
    color: var(--diamond);
    padding: 0;
    cursor: pointer;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: color 220ms ease;
}

.btn-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
}

.custom-file-btn:hover {
    color: var(--diamond-2);
}

.file-name {
    font-size: 0.84rem;
    color: #d7e5f6;
    font-style: italic;
}

.submit-btn {
    background: linear-gradient(135deg, var(--diamond-2), var(--diamond));
    color: #021018;
    border: none;
    padding: 0.95rem;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(85, 203, 255, 0.28);
}

.submit-btn.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

/* Photo preview styles */
.photo-preview {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(14, 21, 32, 0.5);
    border-radius: 8px;
}

.photo-preview:empty {
    display: none;
}

.photo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.photo-item img {
    border-radius: 8px;
    border: 2px solid var(--diamond);
}

.upload-status {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(85, 203, 255, 0.1);
    width: 100%;
}

.upload-status.uploading {
    animation: pulse 1.5s ease-in-out infinite;
}

.upload-status.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.upload-status.error {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Checkbox group styles */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(14, 21, 32, 0.5);
    border-radius: 8px;
    font-size: 0.85rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--diamond);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    cursor: pointer;
    flex: 1;
}

.checkbox-group a {
    color: var(--diamond);
    text-decoration: none;
    border-bottom: 1px dotted var(--diamond);
    transition: color 220ms ease;
}

.checkbox-group a:hover {
    color: var(--diamond-2);
    border-bottom-color: var(--diamond-2);
}

footer {
    margin-top: 2.4rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.72rem;
    border-top: 1px solid var(--line);
    padding-top: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.footer-logo {
    width: 28px;
    opacity: 0.55;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #d8e5f5;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--line);
    padding: 0.4rem 0.55rem;
    transition: all 220ms ease;
}

.footer-links a:hover {
    color: var(--diamond);
    border-color: rgba(85, 203, 255, 0.55);
}

.copyright {
    font-size: 0.67rem;
    color: var(--muted);
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: min(94vw, 500px);
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(10, 16, 25, 0.96), rgba(14, 24, 37, 0.96));
    padding: 0.9rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    z-index: 45;
}

.cookie-banner p {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.cookie-banner a {
    color: var(--diamond);
}

.cookie-btn {
    border: none;
    background: linear-gradient(135deg, var(--diamond-2), var(--diamond));
    color: #021018;
    padding: 0.58rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    white-space: nowrap;
}

.mobile-sticky-cta {
    position: fixed;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 48;
    display: none;
    gap: 0.55rem;
}

.sticky-btn {
    flex: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    padding: 0.68rem 0.5rem;
    border: 1px solid var(--line);
}

.sticky-btn-primary {
    background: linear-gradient(135deg, var(--diamond-2), var(--diamond));
    color: #021018;
    border-color: transparent;
}

.sticky-btn-secondary {
    color: #d8e5f5;
    background: rgba(9, 15, 23, 0.9);
}

.whatsapp-float {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 47;
}

body.cookie-banner-visible .whatsapp-float {
    bottom: 6.2rem;
}

body.has-sticky-cta .whatsapp-float {
    bottom: 5.2rem;
}

body.has-sticky-cta.cookie-banner-visible .whatsapp-float {
    bottom: 10.4rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 0.68rem;
    text-transform: uppercase;
    border: 1px solid rgba(37, 211, 102, 0.38);
    background: linear-gradient(145deg, rgba(37, 211, 102, 0.95), rgba(18, 166, 76, 0.95));
    color: #01110a;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.36);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 17, 10, 0.18);
    font-size: 0.9rem;
    line-height: 1;
}

.simple-page {
    min-height: 100vh;
    padding: 2.2rem 7%;
    display: flex;
    flex-direction: column;
}

.simple-page .minimal-nav {
    position: static;
    justify-content: flex-start;
    margin-bottom: 1.6rem;
}

.simple-page-main {
    width: min(980px, 100%);
    margin: 0 auto;
}

.placeholder-panel,
.policy-panel {
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(16, 24, 37, 0.88), rgba(19, 30, 45, 0.8));
    padding: clamp(1.2rem, 2vw, 2rem);
}

.placeholder-panel h1,
.policy-panel h1 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.placeholder-panel p,
.policy-panel p,
.policy-panel li {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.policy-panel h2 {
    color: var(--diamond);
    margin: 1.2rem 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.86rem;
}

.policy-panel ul {
    padding-left: 1.1rem;
}

@media (max-width: 1100px) {
    .hero-content {
        padding: 2rem;
    }

    .content-section {
        padding: 2.5rem 5%;
    }
}

@media (max-width: 960px) {
    .split-layout {
        flex-direction: column;
    }

    .hero-section {
        height: 62vh;
        flex: none;
        position: relative;
    }

    .minimal-nav {
        position: static;
    }

    .info-blocks {
        grid-template-columns: 1fr;
    }

    .home-story-grid {
        grid-template-columns: 1fr;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: 74vh;
    }

    .home-hero-content {
        padding-top: 5.4rem;
    }
}

@media (max-width: 680px) {
    .modern-form {
        grid-template-columns: 1fr;
    }

    .minimal-nav {
        justify-content: center;
        gap: 0.45rem;
        flex-wrap: wrap;
    }

    .home-nav {
        justify-content: center;
        padding-top: 0.8rem;
    }

    .home-hero-content {
        padding: 4.8rem 6% 3.2rem;
    }

    .minimal-nav a {
        font-size: 0.6rem;
    }

    .file-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .site-sidebar {
        width: min(92vw, 340px);
    }

    .cookie-banner {
        left: 0.7rem;
        right: 0.7rem;
        bottom: 0.7rem;
        width: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    body.has-sticky-cta .cookie-banner {
        bottom: 3.9rem;
    }

    .cookie-btn {
        width: 100%;
    }

    body.has-sticky-cta {
        padding-bottom: 4.7rem;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .whatsapp-float {
        left: auto;
        right: 0.7rem;
        bottom: 6rem;
    }

    body.cookie-banner-visible .whatsapp-float {
        bottom: 10.2rem;
    }

    body.has-sticky-cta .whatsapp-float {
        bottom: 9.2rem;
    }

    body.has-sticky-cta.cookie-banner-visible .whatsapp-float {
        bottom: 12.6rem;
    }

    .whatsapp-btn {
        padding: 0.6rem 0.75rem;
    }

    .whatsapp-btn span:last-child {
        display: none;
    }

    .home-countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}