/* UriStream — "Forma Nuova" v3: full-bleed hero, USP band, swapped columns */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    --bg-deep:    #071929;
    --bg-mid:     #0d2440;
    --paper:      #ffffff;
    --paper-muted: #f0f7ff;
    --accent:     #0ea5c9;
    --accent-2:   #0e7490;
    --accent-3:   #22d3ee;
    --accent-soft: rgba(14, 165, 201, 0.1);
    --accent-glow: rgba(14, 165, 201, 0.32);
    --text:       #0b1826;
    --text-muted: #4a6578;
    --on-dark:    #e0f2fe;
    --on-dark-dim: rgba(224, 242, 254, 0.65);
    --border:     rgba(14, 165, 201, 0.15);
    --border-light: rgba(11, 24, 38, 0.1);
    --border-dark: rgba(255, 255, 255, 0.08);
    --footer-bg:  #040d18;
    --shadow-xs:  0 2px 8px  rgba(7, 25, 41, 0.08);
    --shadow-sm:  0 4px 16px rgba(7, 25, 41, 0.1);
    --shadow-md:  0 8px 32px rgba(7, 25, 41, 0.13);
    --shadow-lg:  0 16px 56px rgba(7, 25, 41, 0.18);
    --shadow-accent: 0 8px 28px rgba(14, 165, 201, 0.35);
    --r-sm:  10px;
    --r-md:  18px;
    --r-lg:  28px;
    --pill:  999px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--paper);
    min-height: 100vh;
    font-weight: 400;
}

h1, h2, h3, .logo {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
    background: var(--paper);
    border-bottom: 1px solid rgba(14, 165, 201, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 24px rgba(7, 25, 41, 0.08);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-3));
}

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

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

.logo .accent { color: var(--accent); }

.logo a { text-decoration: none; color: inherit; }


/* ══════════════════════════════════════
   HERO — full-bleed image with overlay
   (completely different from before)
══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* darkened product image fills the entire hero */
.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.28) saturate(0.5) blur(2px);
    transform: scale(1.06);
}

/* gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 25, 41, 0.97) 0%,
        rgba(11, 37, 68, 0.88) 45%,
        rgba(14, 116, 144, 0.55) 100%
    );
    z-index: 1;
}

/* dot-grid texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14, 165, 201, 0.12) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-wrapper {
    text-align: center;
    padding: 7rem 0 9rem;
    max-width: 780px;
    margin: 0 auto;
}

.hero-chip-row {
    margin-bottom: 1.75rem;
}

.hero-chip {
    display: inline-block;
    background: rgba(34, 211, 238, 0.15);
    color: var(--accent-3);
    border: 1px solid rgba(34, 211, 238, 0.35);
    padding: 0.42rem 1.2rem;
    border-radius: var(--pill);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: 'Inter', sans-serif;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.02;
    color: var(--on-dark);
}

.hero-content h1 em {
    font-style: normal;
    color: var(--accent-3);
}

.subtitle {
    font-size: 1.18rem;
    color: var(--on-dark-dim);
    font-weight: 400;
    line-height: 1.78;
    max-width: 580px;
    margin: 0 auto;
}

.hero .subtitle { max-width: 580px; }

/* hero image column removed — it's now the background */
.hero-image { display: none; }


/* ══════════════════════════════════════
   USP BAR — new section (didn't exist before)
══════════════════════════════════════ */
.usp-bar {
    background: var(--bg-deep);
    border-bottom: 3px solid var(--accent);
    padding: 2.25rem 0;
}

.usp-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.usp-item {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 0 1rem;
}

.usp-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--on-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.usp-label {
    font-size: 0.84rem;
    color: var(--on-dark-dim);
    font-weight: 400;
}

.usp-sep {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}


/* ══════════════════════════════════════
   PRODUCT SECTION — image now on LEFT
══════════════════════════════════════ */
.product-section {
    padding: 6rem 0;
    background: var(--paper);
    position: relative;
}

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

/* image LEFT, info RIGHT (DOM order: image first) */
.product-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: start;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: var(--r-md);
    background: var(--paper-muted);
    border: 1px solid var(--border);
}

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

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

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: var(--r-md);
    background: var(--paper);
    padding: 24px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--paper);
    color: var(--accent);
    border: 2px solid var(--accent);
    font-size: 22px;
    cursor: pointer;
    border-radius: var(--pill);
    z-index: 10;
    transition: all 0.2s ease;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--paper);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-accent);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots { text-align: center; padding: 14px 0 4px; }

.dot {
    cursor: pointer;
    height: 8px; width: 8px;
    margin: 0 4px;
    background: #b8d8ec;
    border-radius: var(--pill);
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: var(--accent);
    width: 28px;
    box-shadow: 0 0 10px var(--accent-glow);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-soft);
    color: var(--accent-2);
    padding: 0.45rem 1.1rem;
    border-radius: var(--pill);
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(14, 165, 201, 0.25);
    font-family: 'Inter', sans-serif;
}

.product-info h2 {
    font-size: 2.1rem;
    margin-bottom: 1.1rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.product-description {
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1.01rem;
}

.product-features {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.6rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.88rem 1.1rem;
    background: var(--paper-muted);
    border-radius: var(--r-sm);
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.feature:hover {
    background: var(--paper);
    border-color: var(--border);
    box-shadow: var(--shadow-xs);
    transform: translateX(3px);
}

.feature-icon {
    color: var(--paper);
    background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
    font-weight: 700;
    font-size: 0.75rem;
    min-width: 22px; height: 22px;
    border-radius: var(--pill);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}

.product-specs {
    background: var(--paper-muted);
    padding: 1.65rem;
    border-radius: var(--r-sm);
    margin-bottom: 1.65rem;
    border: 1px solid var(--border);
}

.product-specs h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-specs p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.4rem;
    font-size: 0.97rem;
}

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

.price-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent-2) 100%);
    color: var(--paper);
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: var(--pill);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    width: 100%;
    box-shadow: 0 6px 24px rgba(14, 165, 201, 0.38);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 14px 40px rgba(14, 165, 201, 0.44);
}


/* ══════════════════════════════════════
   BENEFITS — horizontal 2-column cards
   (was 3-column vertical icon cards)
══════════════════════════════════════ */
.benefits-section {
    padding: 6rem 0;
    background: var(--paper-muted);
}

.section-title {
    text-align: center;
    font-size: clamp(1.9rem, 3.2vw, 2.55rem);
    margin-bottom: 3rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--paper);
    padding: 1.75rem;
    border-radius: var(--r-md);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-xs);
}

/* no staggered middle card — layout is now 2-col, stagger doesn't apply */
.benefit-card:nth-child(2) { transform: none; }
.benefit-card:nth-child(2):hover { transform: translateY(-4px); }

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 201, 0.28);
}

.benefit-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #cffafe, #bae6fd);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    border: 1.5px solid rgba(14, 165, 201, 0.2);
    margin: 0;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    color: var(--text);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.68;
    font-size: 0.92rem;
}


/* ══════════════════════════════════════
   COMPARISON
══════════════════════════════════════ */
.how-it-works {
    padding: 6rem 0;
    background: var(--paper);
}

.how-it-works .section-title { color: var(--text); }

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

.comparison-item {
    background: var(--paper-muted);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    border: 1.5px solid transparent;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: #dde8f5;
}

.comparison-highlight {
    background: linear-gradient(150deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: rgba(14, 165, 201, 0.22);
}

.comparison-highlight::before {
    background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.comparison-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.comparison-item h3 {
    margin-bottom: 1.25rem;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 700;
}

.comparison-highlight h3 { color: var(--accent-2); }

.comparison-image {
    margin-bottom: 1.25rem;
    border-radius: var(--r-sm);
    overflow: hidden;
}

.comparison-image img {
    width: 100%; height: auto;
    border-radius: var(--r-sm);
    border: 1px solid var(--border-light);
}

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


/* ══════════════════════════════════════
   GUARANTEE — dark band
══════════════════════════════════════ */
.guarantee {
    padding: 5.5rem 0;
    background:
        radial-gradient(ellipse 110% 130% at 0% 50%,  rgba(14, 165, 201, 0.15) 0%, transparent 52%),
        radial-gradient(ellipse  70%  90% at 100% 30%, rgba(14, 116, 144, 0.2)  0%, transparent 48%),
        linear-gradient(150deg, #071929, #0d2440);
    text-align: center;
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14, 165, 201, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.guarantee .section-title { color: var(--on-dark); position: relative; z-index: 1; }

.guarantee p {
    font-size: 1.1rem;
    color: var(--on-dark-dim);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.85;
    position: relative;
    z-index: 1;
}


/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq {
    padding: 6rem 0;
    background: var(--paper-muted);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    counter-reset: faq-counter;
}

.faq-item {
    background: var(--paper);
    border: 1.5px solid transparent;
    border-radius: var(--r-md);
    padding: 1.75rem 1.85rem 1.75rem 5.5rem;
    margin-bottom: 0.85rem;
    transition: all 0.22s ease;
    box-shadow: var(--shadow-xs);
    position: relative;
    counter-increment: faq-counter;
}

.faq-item::before {
    content: counter(faq-counter);
    position: absolute;
    left: 1.65rem;
    top: 1.65rem;
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
    color: var(--paper);
    border-radius: var(--pill);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item:hover {
    border-color: rgba(14, 165, 201, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.97rem;
}


/* ══════════════════════════════════════
   CONTACT — dark navy
══════════════════════════════════════ */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-deep);
    color: var(--on-dark);
}

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

.contact-section > .container > p {
    color: var(--on-dark-dim);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.75rem;
    font-size: 1.05rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 2rem 2.25rem;
    background: var(--bg-mid);
    border-radius: var(--r-md);
    min-width: 215px;
    border: 1px solid rgba(14, 165, 201, 0.2);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-3), var(--accent-2));
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.3), 0 0 0 1px rgba(14,165,201,0.28);
}

.contact-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--on-dark);
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.contact-item span { color: var(--on-dark-dim); font-size: 0.9rem; }

.contact-item a { color: var(--accent-3); text-decoration: none; }

.contact-item a:hover { color: #67e8f9; text-decoration: underline; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: var(--footer-bg);
    color: var(--on-dark);
    padding: 4rem 0 2rem;
}

.footer-legal h3 {
    color: var(--accent-3);
    margin-bottom: 1.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legal-info { margin-bottom: 1.75rem; }

.legal-info p {
    color: var(--on-dark-dim);
    margin-bottom: 0.55rem;
    line-height: 1.8;
    font-size: 0.94rem;
}

.legal-info strong { color: var(--on-dark); font-weight: 600; }

.health-notice {
    background: rgba(14, 165, 201, 0.08);
    padding: 1.65rem;
    border-radius: var(--r-sm);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(14, 165, 201, 0.2);
}

.health-notice h4 {
    color: var(--accent-3);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.health-notice p { color: var(--on-dark-dim); line-height: 1.8; font-size: 0.94rem; }

.contact-info-footer { margin-bottom: 1.75rem; }

.contact-info-footer p {
    color: var(--on-dark-dim);
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 0.94rem;
}

.contact-info-footer strong { color: var(--on-dark); font-weight: 600; }
.contact-info-footer a { color: var(--accent-3); text-decoration: none; }
.contact-info-footer a:hover { color: #67e8f9; text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 1.75rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }

.footer-links a {
    color: var(--on-dark-dim);
    text-decoration: none;
    transition: color 0.22s;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--accent-3); }

.footer-bottom p { color: rgba(224, 242, 254, 0.3); font-size: 0.87rem; }


/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
    background: var(--paper-muted);
}

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 2.75rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.035em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legal-page section {
    background: var(--paper);
    border-radius: var(--r-md);
    padding: 2.25rem 2.5rem;
    margin-bottom: 1.25rem;
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-xs);
}

.legal-page h2 {
    font-size: 1.42rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--paper-muted);
}

.legal-page h3 {
    font-size: 1.14rem;
    margin-bottom: 0.7rem;
    margin-top: 1.4rem;
    color: var(--text);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1rem;
}

.legal-page ul { margin-left: 1.4rem; margin-bottom: 1rem; }

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.legal-page a { color: var(--accent-2); text-decoration: none; font-weight: 600; }
.legal-page a:hover { color: var(--accent); text-decoration: underline; }

.withdrawal-form {
    background: var(--paper-muted);
    padding: 1.85rem;
    border-radius: var(--r-sm);
    margin: 1.5rem 0;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}

.withdrawal-form p { margin-bottom: 0.85rem; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
    .header-top { flex-direction: column; gap: 0.5rem; }

    .hero-wrapper { padding: 5rem 0 6.5rem; }

    .usp-grid { flex-direction: column; gap: 1.5rem; }
    .usp-sep { width: 40px; height: 1px; }

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

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

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

    .footer-bottom { flex-direction: column; text-align: center; }

    .section-title { font-size: 1.8rem; }

    .contact-info { flex-direction: column; gap: 1rem; }
    .contact-item { min-width: unset; width: 100%; }

    .carousel-slides { height: 360px; }

    .legal-page h1 { font-size: 1.9rem; }
    .legal-page section { padding: 1.5rem 1.25rem; }

    .hero { min-height: 520px; }
}

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

.product-image img,
.comparison-image img {
    background-color: var(--paper-muted);
    min-height: 120px;
    display: block;
}
