/* UroAdvanced — Radical v3: Syne + DM Sans, split hero, high contrast, grid / brutal clarity */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@500;600;700;800&display=swap');

:root {
    --void: #0a0a0b;
    --ink: #0a0a0b;
    --muted: #6b6b6f;
    --bg: #e6e4df;
    --surface: #f7f6f3;
    --white: #ffffff;
    --accent: #ff4a2c;
    --accent-hover: #e03d22;
    --lime: #dfff3b;
    --lime-dark: #b8d62a;
    --line: rgba(10, 10, 11, 0.14);
    --line-strong: rgba(10, 10, 11, 0.85);
    --product-bg: #0e0e10;
    --product-fg: #eceae6;
    --radius: 0;
    --radius-sm: 0;
    --radius-lg: 0;
    --radius-xl: 0;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-ticker__track {
        animation: none !important;
    }
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
    font-size: 1.05rem;
    font-weight: 400;
}

h1,
h2,
h3,
.logo,
.price-label,
.section-title {
    font-family: 'Syne', system-ui, sans-serif;
}

h2,
h3 {
    font-weight: 700;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.75rem);
    position: relative;
}

.grain::before {
    display: none;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--void);
    color: var(--surface);
    border-bottom: 3px solid var(--accent);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    gap: 1rem;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--surface);
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent);
    flex-shrink: 0;
    transform: rotate(45deg);
}

.logo a:hover {
    color: var(--lime);
}

.header-cta {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--void);
    background: var(--lime);
    padding: 0.55rem 1rem;
    text-decoration: none;
    border: 2px solid var(--void);
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--accent);
    color: var(--white);
}

/* Hero */
.hero {
    position: relative;
    background: var(--void);
    color: var(--surface);
    overflow: hidden;
}

.hero-ticker {
    border-bottom: 2px solid var(--accent);
    background: var(--void);
    overflow: hidden;
    padding: 0.4rem 0;
}

.hero-ticker__track {
    display: flex;
    width: max-content;
    animation: hero-marquee 28s linear infinite;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--lime);
}

.hero-ticker__track span {
    padding-right: 3rem;
    white-space: nowrap;
}

@keyframes hero-marquee {
    to {
        transform: translateX(-50%);
    }
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    min-height: min(88vh, 820px);
    align-items: stretch;
}

.hero-media {
    margin: 0;
    position: relative;
    min-height: 280px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(10, 10, 11, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(1.05);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
    background: var(--surface);
    color: var(--ink);
    border-left: 6px solid var(--accent);
    position: relative;
}

.hero-copy::before {
    content: '01';
    position: absolute;
    top: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    font-family: 'Syne', sans-serif;
    font-size: clamp(4rem, 14vw, 8rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(10, 10, 11, 0.06);
    pointer-events: none;
    user-select: none;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 6.5vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.hero-headline-brand {
    display: block;
}

.hero-headline-sub {
    display: block;
    margin-top: 0.35em;
    font-size: 0.32em;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--muted);
    line-height: 1.2;
}

.hero-copy h1::after {
    display: none;
}

.hero .subtitle {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 28rem;
    line-height: 1.7;
    margin: 0 0 1.75rem;
    position: relative;
    z-index: 1;
}

.hero-actions {
    position: relative;
    z-index: 1;
}

.btn-hero-cta {
    width: auto !important;
    min-width: 14rem;
}

/* Comparison highlight badge */
.comparison-highlight {
    position: relative;
    background: var(--lime) !important;
    border: 3px solid var(--void) !important;
    box-shadow: 8px 8px 0 var(--void) !important;
}

.comparison-highlight::before {
    content: 'Recomendado';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--void);
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 0.65rem;
    border: 2px solid var(--void);
    z-index: 2;
}

/* Product — dark band */
.product-section {
    padding: clamp(3.5rem, 10vw, 6.5rem) 0;
    background: var(--product-bg);
    color: var(--product-fg);
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--void);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.product-grid .product-info {
    order: 1;
}

.product-grid .product-image {
    order: 2;
}

.product-badge {
    display: inline-block;
    background: var(--lime);
    color: var(--void);
    padding: 0.45rem 0.85rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    margin-bottom: 1.25rem;
    border: 2px solid var(--void);
}

.product-info h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    margin-bottom: 1.1rem;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1.12;
    font-weight: 800;
}

.product-description {
    margin-bottom: 1.75rem;
    color: rgba(236, 234, 230, 0.78);
    line-height: 1.75;
    font-size: 0.98rem;
}

.product-description strong {
    color: var(--white);
}

.product-features {
    margin-bottom: 2rem;
    display: grid;
    gap: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.94rem;
    color: rgba(236, 234, 230, 0.88);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: none;
}

.feature-icon {
    color: var(--lime);
    font-weight: 800;
    font-size: 1rem;
    min-width: 22px;
    font-family: 'Syne', sans-serif;
}

.product-specs {
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.product-specs h3 {
    margin-bottom: 0.85rem;
    color: var(--lime);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.product-specs p {
    color: rgba(236, 234, 230, 0.75);
    line-height: 1.65;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-specs strong {
    color: var(--product-fg);
}

.product-price {
    margin-bottom: 1.25rem;
}

.price-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
}

.price-note {
    display: block;
    font-size: 0.82rem;
    color: rgba(236, 234, 230, 0.55);
    margin-top: 0.4rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 1rem 1.75rem;
    border: 3px solid var(--void);
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 6px 6px 0 var(--void);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--void);
}

.btn-primary:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 var(--void);
}

.btn-product-cta {
    margin-top: 0.25rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #16161a;
    border: 3px solid var(--lime);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.35);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #121214;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeSlide 0.3s ease-out;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    padding: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--lime);
    color: var(--void);
    border: 2px solid var(--void);
    padding: 0;
    font-size: 1.35rem;
    line-height: 1;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    cursor: pointer;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: 4px 4px 0 var(--void);
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--white);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    padding: 1rem;
    background: var(--void);
    border-top: 2px solid var(--lime);
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 32px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    display: inline-block;
    transition: background 0.15s ease;
}

.dot.active,
.dot:hover {
    background: var(--lime);
    transform: none;
}

.product-image img {
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.product-image img:hover {
    transform: none;
}

/* Benefits — lime field */
.benefits-section {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
    background: var(--lime);
    color: var(--void);
    border-bottom: 3px solid var(--void);
}

.benefits-section .section-title {
    color: var(--void);
}

.benefits-section .section-title::before {
    background: var(--void);
}

.benefits-section .section-title::after {
    background: var(--void);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2rem;
    border: 3px solid var(--void);
}

.benefit-card {
    background: var(--surface);
    padding: 1.5rem 1.25rem;
    text-align: left;
    border: none;
    border-right: 2px solid var(--void);
    border-bottom: 2px solid var(--void);
    box-shadow: none;
    transition: background 0.15s ease;
}

.benefit-card:nth-child(3n) {
    border-right: none;
}

.benefit-card:nth-last-child(-n + 3) {
    border-bottom: none;
}

.benefit-card:hover {
    transform: none;
    background: var(--white);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.benefit-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--void);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.88rem;
}

/* How it works */
.how-it-works {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
    background: var(--surface);
    border-bottom: 3px solid var(--void);
    position: relative;
}

.how-it-works::before {
    display: none;
}

.section-title {
    text-align: left;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    margin-bottom: 2rem;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1.08;
    font-weight: 800;
    padding: 0 0 0 1rem;
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.1em;
    bottom: 0.1em;
    width: 4px;
    background: var(--accent);
}

.section-title::after {
    display: block;
    content: '';
    width: 100%;
    max-width: 12rem;
    height: 3px;
    margin-top: 0.85rem;
    background: var(--void);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 3px solid var(--void);
}

.comparison-item {
    background: var(--white);
    padding: 1.75rem;
    border: none;
    border-right: 2px solid var(--void);
    box-shadow: none;
    transition: none;
}

.comparison-item:last-child {
    border-right: none;
}

.comparison-item:hover {
    transform: none;
    box-shadow: none;
}

.comparison-item h3 {
    margin-bottom: 1rem;
    color: var(--void);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.comparison-image {
    margin-bottom: 1rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--void);
    box-shadow: 6px 6px 0 rgba(10, 10, 11, 0.12);
}

.comparison-item p {
    margin-bottom: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* Guarantee */
.guarantee {
    padding: clamp(3.5rem, 10vw, 5.5rem) 0;
    background: var(--accent);
    color: var(--void);
    border-bottom: 3px solid var(--void);
    position: relative;
    overflow: hidden;
}

.guarantee::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(40vw, 320px);
    height: min(40vw, 320px);
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 12px,
        rgba(10, 10, 11, 0.06) 12px,
        rgba(10, 10, 11, 0.06) 14px
    );
    pointer-events: none;
}

.guarantee .container {
    position: relative;
    z-index: 1;
}

.guarantee .section-title {
    color: var(--void);
}

.guarantee .section-title::before {
    background: var(--void);
}

.guarantee .section-title::after {
    background: var(--void);
}

.guarantee p {
    font-size: 1.02rem;
    color: var(--void);
    max-width: 44rem;
    margin: 0;
    line-height: 1.65;
    font-weight: 500;
    background: var(--surface);
    border: 3px solid var(--void);
    padding: 1.5rem;
    box-shadow: 8px 8px 0 var(--void);
}

.guarantee p strong {
    font-weight: 800;
}

/* FAQ */
.faq {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
    background: var(--bg);
    border-bottom: 3px solid var(--void);
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    border: 3px solid var(--void);
    background: var(--surface);
}

.faq-item {
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--void);
    padding: 1.35rem 1.5rem;
    margin-bottom: 0;
    box-shadow: none;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(255, 74, 44, 0.06);
}

.faq-item h3 {
    color: var(--void);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 800;
}

.faq-item p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* Contact */
.contact-section {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
    background: var(--void);
    color: var(--surface);
    border-bottom: 3px solid var(--lime);
}

.contact-section .section-title {
    color: var(--surface);
}

.contact-section .section-title::before {
    background: var(--lime);
}

.contact-section .section-title::after {
    background: var(--lime);
}

.contact-section > .container > p {
    text-align: left;
    max-width: 36rem;
    margin: 0 0 1.75rem;
    color: rgba(247, 246, 243, 0.72);
    font-size: 0.98rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    text-align: left;
    padding: 1.5rem 1.25rem;
    background: transparent;
    border: none;
    border-right: 2px solid rgba(255, 255, 255, 0.15);
    min-width: 0;
}

.contact-item:last-child {
    border-right: none;
}

.contact-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--lime);
    margin-bottom: 0.35rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
}

.contact-item span {
    color: rgba(247, 246, 243, 0.65);
    font-size: 0.85rem;
}

.contact-item a {
    color: var(--surface);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
}

.contact-item a:hover {
    color: var(--lime);
}

/* Footer */
.footer {
    background: var(--void);
    color: var(--surface);
    padding: 2.75rem 0 1.25rem;
    border-top: none;
    position: relative;
}

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

.footer-legal h3 {
    color: var(--lime);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.02em;
}

.legal-info p {
    color: rgba(247, 246, 243, 0.78);
    margin-bottom: 0.5rem;
    line-height: 1.65;
    font-size: 0.88rem;
}

.legal-info strong {
    color: var(--white);
    font-weight: 700;
}

.health-notice {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border: 2px solid rgba(223, 255, 59, 0.35);
}

.health-notice h4 {
    color: var(--lime);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.health-notice p {
    color: rgba(247, 246, 243, 0.82);
    line-height: 1.65;
    font-size: 0.86rem;
}

.contact-info-footer p {
    color: rgba(247, 246, 243, 0.75);
    margin-bottom: 0.4rem;
    line-height: 1.65;
    font-size: 0.86rem;
}

.contact-info-footer strong {
    color: var(--white);
    font-weight: 700;
}

.contact-info-footer a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.contact-info-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--surface);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    border-bottom-color: var(--accent);
    color: var(--lime);
}

.footer-bottom p {
    color: rgba(247, 246, 243, 0.45);
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
}

/* Legal pages */
.legal-page {
    padding: 3rem 0;
    min-height: 60vh;
    background: var(--surface);
    border-bottom: 3px solid var(--void);
}

.legal-page h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--void);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    border-bottom: 4px solid var(--accent);
    padding-bottom: 1rem;
}

.legal-page section {
    margin-bottom: 2.25rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--line);
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    color: var(--void);
    font-weight: 800;
}

.legal-page h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    margin-top: 1.25rem;
    color: var(--ink);
    font-weight: 700;
}

.legal-page p,
.legal-page ul li {
    margin-bottom: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.94rem;
}

.legal-page ul {
    margin-left: 1.25rem;
    margin-bottom: 0.85rem;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

.legal-page a:hover {
    color: var(--accent-hover);
}

.withdrawal-form {
    background: var(--lime);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 3px solid var(--void);
    box-shadow: 6px 6px 0 var(--void);
}

.withdrawal-form p {
    margin-bottom: 0.85rem;
    color: var(--void);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-media {
        min-height: 42vw;
        max-height: 360px;
    }

    .hero-copy {
        border-left: none;
        border-top: 6px solid var(--accent);
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .header-cta {
        width: 100%;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-item {
        border-right: none;
        border-bottom: 2px solid var(--void);
    }

    .comparison-item:last-child {
        border-bottom: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        border-right: none;
    }

    .benefit-card:nth-last-child(-n + 3) {
        border-bottom: 2px solid var(--void);
    }

    .benefit-card:last-child {
        border-bottom: none;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-item:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-slides {
        height: 360px;
    }

    .legal-page h1 {
        font-size: 1.65rem;
    }
}

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

.product-image img,
.comparison-image img,
.advisor-image img {
    background-color: #1a1a1e;
    min-height: 200px;
    display: block;
}
