/* ── HERO ─────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--red2) 0%, var(--red) 60%, #ff6b6b 100%);
    overflow: hidden; position: relative;
}
.hero-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 420px;
    align-items: center; padding: 70px 24px 60px; gap: 40px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    padding: 6px 16px; border-radius: 30px;
    font-size: 14px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px;
}
.hero h1 { font-size: 50px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #ffd166; }
.hero p { font-size: 18px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; }
.btn-white {
    padding: 14px 30px; border-radius: 12px; background: #fff; color: var(--red);
    font-weight: 700; font-size: 16px; transition: .2s; border: 2px solid transparent;
}
.btn-white:hover { background: transparent; border-color: #fff; color: #fff; }
.btn-outline {
    padding: 14px 30px; border-radius: 12px; background: transparent; color: #fff;
    font-weight: 700; font-size: 16px; border: 2px solid rgba(255,255,255,.5); transition: .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.hero-stats { display: flex; gap: 30px; margin-top: 36px; }
.stat-item { color: #fff; }
.stat-item strong { display: block; font-size: 28px; font-weight: 900; }
.stat-item span   { font-size: 14px; opacity: .75; font-weight: 600; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-blob {
    width: 340px; height: 340px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-blob::before {
    content: ''; position: absolute; inset: -20px;
    border-radius: 50%; border: 2px dashed rgba(255,255,255,.2);
    animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-icon-main { font-size: 142px; color: rgba(255,255,255,.9); filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }
.hero-pill {
    position: absolute; background: #fff;
    border-radius: 14px; padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12); font-size: 15px; font-weight: 700;
}
.hero-pill.pill-1 { top: 20px; right: -10px; }
.hero-pill.pill-2 { bottom: 30px; left: -20px; }
.pill-dot { width: 10px; height: 10px; border-radius: 50%; background: #2ecc71; }

/* ── PROMO BANNER ───────────────────────────────────────── */
.promo-banner {
    background: linear-gradient(90deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 18px 24px;
}
.promo-banner-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap;
}
.promo-tag {
    background: var(--red); color: #fff;
    padding: 4px 12px; border-radius: 6px;
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    white-space: nowrap;
}
.promo-text { color: rgba(255,255,255,.9); font-size: 16px; font-weight: 600; }
.promo-text span { color: #ffd166; font-weight: 800; }
.promo-link {
    color: rgba(255,255,255,.8); font-size: 15px; font-weight: 700;
    border-bottom: 1px dashed rgba(255,255,255,.4);
    display: flex; align-items: center; gap: 6px;
    transition: .2s;
}
.promo-link:hover { color: #ffd166; border-color: #ffd166; }

/* ── CATEGORIES ───────────────────────────────────────── */
.categories-bg { background: var(--white); }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-card {
    background: var(--grey); border-radius: var(--radius); padding: 28px 14px 22px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    border: 1.5px solid transparent; transition: all .3s cubic-bezier(.4,0,.2,1); cursor: pointer;
}
.cat-card:hover { border-color: var(--red); background: #fff9f9; transform: translateY(-6px); box-shadow: 0 12px 30px rgba(230,57,70,.1); }
.cat-icon-wrap {
    width: 62px; height: 62px; border-radius: 16px;
    background: var(--white); color: var(--red); font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; transition: .3s; box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.cat-card:hover .cat-icon-wrap { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(230,57,70,.3); }
.cat-name { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.3; }

/* ── OFFER SPLIT ────────────────────────────────────────── */
.offer-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer-card {
    border-radius: 20px; padding: 40px 36px;
    display: flex; flex-direction: column; justify-content: space-between; min-height: 220px;
    position: relative; overflow: hidden;
}
.offer-card-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.offer-card-2 { background: linear-gradient(135deg, var(--red2) 0%, var(--red) 100%); }
.offer-card h3 { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.offer-card p  { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 280px; }
.offer-deco {
    position: absolute; right: -20px; top: -20px;
    font-size: 162px; opacity: .06; color: #fff; line-height: 1; pointer-events: none;
}
.btn-offer {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); color: #fff;
    padding: 11px 22px; border-radius: 10px;
    font-size: 15px; font-weight: 700; border: 1px solid rgba(255,255,255,.25);
    transition: .2s; margin-top: 24px; width: fit-content;
}
.btn-offer:hover { background: rgba(255,255,255,.28); }

/* ── BRANDS STRIP ─────────────────────────────────────── */
.brands-strip { background: var(--white); padding: 40px 24px; border-top: 1px solid var(--border); }
.brands-inner { max-width: 1320px; margin: 0 auto; }
.brands-label { text-align: center; font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 28px; }
.brands-scroll { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.brand-chip {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 12px;
    border: 1.5px solid var(--border); background: var(--grey);
    font-size: 15px; font-weight: 700; color: var(--text);
    white-space: nowrap; transition: .2s; text-decoration: none;
}
.brand-chip:hover { border-color: var(--red); color: var(--red); background: #fff9f9; }
.brand-chip img { height: 26px; width: auto; object-fit: contain; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
    background: var(--white); border-radius: 20px; border: 1.5px solid var(--border);
    padding: 28px 24px;
}
.testi-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--red2), var(--red));
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 16px; font-weight: 800; color: var(--dark); }
.testi-sub  { font-size: 14px; color: var(--muted); }

/* ── WHY US ───────────────────────────────────────────── */
.why-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px 24px; border: 1.5px solid var(--border);
    text-align: center; transition: .3s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
    width: 60px; height: 60px; margin: 0 auto 18px;
    background: #fff0f0; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--red);
}
.why-card h4 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.why-card p  { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── PRODUCTS ─────────────────────────────────────────── */
.products-bg { background: var(--grey); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── WHATSAPP CTA ────────────────────────────────────────── */
.wa-cta {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-radius: 24px; padding: 60px 40px; text-align: center;
}
.wa-cta h2 { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.wa-cta p  { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 30px; line-height: 1.7; }
.wa-btns   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 14px 28px; border-radius: 12px;
    font-size: 16px; font-weight: 700; transition: .2s;
}
.btn-wa:hover { background: #1eb554; transform: translateY(-2px); }
.btn-call {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25);
    padding: 14px 28px; border-radius: 12px;
    font-size: 16px; font-weight: 700; transition: .2s;
}
.btn-call:hover { background: rgba(255,255,255,.2); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
    .cat-grid          { grid-template-columns: repeat(4, 1fr); }
    .product-grid      { grid-template-columns: repeat(2, 1fr); }
    .why-grid          { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .offer-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-inner   { grid-template-columns: 1fr; }
    .hero-visual  { display: none; }
    .hero h1      { font-size: 34px; }
    .cat-grid     { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid     { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .wa-cta       { padding: 40px 24px; border-radius: 16px; }
    .wa-cta h2    { font-size: 24px; }
    .offer-card   { padding: 28px 24px; min-height: 180px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
    .cat-grid          { grid-template-columns: repeat(2, 1fr); }
    .product-grid      { grid-template-columns: 1fr; }
    .why-grid          { grid-template-columns: 1fr; }
    .hero-inner        { padding: 36px 16px 32px; }
    .hero h1           { font-size: 28px; }
    .hero p            { font-size: 16px; margin-bottom: 22px; }
    .hero-btns         { flex-direction: column; gap: 10px; }
    .hero-stats        { gap: 18px; flex-wrap: wrap; }
    .btn-white, .btn-outline { width: 100%; justify-content: center; display: flex; padding: 13px 24px; }
    .stat-item strong  { font-size: 22px; }
    .promo-banner-inner { flex-direction: column; gap: 8px; text-align: center; }
    .offer-card h3     { font-size: 20px; }
    .btn-offer         { width: 100%; justify-content: center; }
    .testi-card        { padding: 20px 18px; }
    .wa-cta p          { font-size: 16px; }
    .btn-wa, .btn-call { padding: 12px 20px; font-size: 15px; }
}