/* =====================================================================
   Sabio United — Frontend Design System (RTL)
   Colors & font are injected as CSS variables from the dynamic settings.
   ===================================================================== */

:root {
    /* fallbacks — overridden inline from settings in the layout <head> */
    --brand-primary: #0A6EA8;
    --brand-secondary: #00557F;
    --brand-accent: #34A9DE;
    --brand-dark: #0B2540;
    --brand-font: 'Tajawal', system-ui, sans-serif;

    --primary-tint: color-mix(in srgb, var(--brand-primary) 8%, #fff);
    --primary-soft: color-mix(in srgb, var(--brand-primary) 14%, #fff);
    --accent-soft: color-mix(in srgb, var(--brand-accent) 16%, #fff);

    --bg: #ffffff;
    --bg-alt: #f5f9fc;
    --surface: #ffffff;
    --text: #33414f;
    --heading: #0e2233;
    --muted: #6d7d8c;
    --border: #e6eef4;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 28px;
    --shadow-sm: 0 2px 10px rgba(11, 37, 64, .06);
    --shadow: 0 12px 30px rgba(11, 37, 64, .10);
    --shadow-lg: 0 28px 60px rgba(10, 110, 168, .18);

    --container: 1280px;
    --gutter: clamp(16px, 4vw, 40px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--brand-font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    font-size: clamp(15px, 1.05vw, 17px);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { color: var(--heading); line-height: 1.35; font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { position: relative; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 7vw, 120px); }
.section--alt { background: var(--bg-alt); }
.grid { display: grid; gap: clamp(20px, 2.4vw, 34px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Section heading ---------- */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(32px, 4vw, 60px); }
.sec-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--brand-primary); font-weight: 700; font-size: .95rem;
    background: var(--primary-tint); padding: 7px 18px; border-radius: 999px; margin-bottom: 18px;
}
.sec-title { font-size: clamp(1.7rem, 3.4vw, 2.85rem); }
.sec-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem;
    cursor: pointer; border: 2px solid transparent; transition: .25s ease; white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)); color: #fff; box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-primary) 35%, transparent); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px color-mix(in srgb, var(--brand-primary) 45%, transparent); }
.btn-ghost { background: transparent; border-color: color-mix(in srgb, var(--brand-primary) 30%, transparent); color: var(--brand-primary); }
.btn-ghost:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.btn-white { background: #fff; color: var(--brand-primary); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-light:hover { background: #fff; color: var(--brand-primary); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: .3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1.2; }
.brand .brand-txt b { color: var(--heading); font-size: 1.08rem; }
.brand .brand-txt span { color: var(--muted); font-size: .72rem; letter-spacing: .5px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 10px 16px; border-radius: 999px; font-weight: 600; color: var(--heading); transition: .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-primary); background: var(--primary-tint); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: var(--primary-tint); border: 0; width: 46px; height: 46px; border-radius: 12px; cursor: pointer; color: var(--brand-primary); }
.nav-toggle svg { width: 24px; height: 24px; margin: auto; }
@media (max-width: 1040px) {
    .nav-links { position: fixed; inset: 82px 0 auto 0; flex-direction: column; background: #fff; padding: 18px var(--gutter) 30px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); transform: translateY(-140%); transition: .35s; z-index: 40; }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { width: 100%; }
    .nav-toggle { display: block; }
    .nav-cta .btn:not(.nav-toggle) { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--brand-secondary) 0%, var(--brand-primary) 55%, var(--brand-accent) 120%); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.16), transparent 45%), radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 40%); }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: clamp(40px, 6vw, 90px); }
/* slides stacked in one grid cell -> the hero auto-grows to the tallest slide (no overflow) */
.hero-slides { position: relative; display: grid; min-height: clamp(520px, 58vh, 680px); z-index: 2; }
.hero-slide { grid-area: 1 / 1; display: flex; align-items: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 2; }
.hero-slide > .container { width: 100%; }
/* extra bottom padding keeps the buttons clear of the overlapping stats card + wave */
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; padding-top: clamp(44px, 6vw, 78px); padding-bottom: clamp(110px, 12vw, 160px); }

/* transition variants — controlled from the admin (data-transition) */
.hero[data-transition="slide"] .hero-slide { transform: translateX(70px); }
.hero[data-transition="slide"] .hero-slide.active { transform: translateX(0); }
.hero[data-transition="zoom"] .hero-slide { transform: scale(1.09); }
.hero[data-transition="zoom"] .hero-slide.active { transform: scale(1); }

/* staggered content entrance on the active slide */
.hero-slide.active .hero-badge { animation: heroUp .7s .15s both; }
.hero-slide.active h1 { animation: heroUp .8s .3s both; }
.hero-slide.active p { animation: heroUp .8s .45s both; }
.hero-slide.active .hero-actions { animation: heroUp .8s .6s both; }
.hero-slide.active .hero-visual { animation: heroUp .9s .35s both; }
.hero-slide.active .hero-visual img:not(.hero-mark) { animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes heroUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce) {
    .hero-slide, .hero-slide.active *, .hero-slide.active .hero-visual img:not(.hero-mark) { animation: none !important; transition: opacity .4s ease !important; }
}

/* navigation arrows */
.hero-arrow { position: absolute; top: 44%; transform: translateY(-50%); z-index: 6; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.42); color: #fff; display: grid; place-items: center; cursor: pointer; transition: .3s; backdrop-filter: blur(6px); }
.hero-arrow:hover { background: #fff; color: var(--brand-primary); transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow); }
.hero-arrow svg { width: 26px; height: 26px; }
.hero-arrow.prev { inset-inline-start: clamp(10px, 2vw, 32px); }
.hero-arrow.next { inset-inline-end: clamp(10px, 2vw, 32px); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem; margin-bottom: 22px; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 4rem); font-weight: 900; line-height: 1.25; }
.hero p { color: rgba(255,255,255,.9); font-size: clamp(1.02rem, 1.5vw, 1.28rem); margin: 22px 0 34px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .blob { position: absolute; width: 115%; aspect-ratio: 1; background: radial-gradient(circle, rgba(255,255,255,.22), transparent 62%); border-radius: 50%; }
.hero-visual img { position: relative; max-height: 460px; object-fit: contain; filter: drop-shadow(0 30px 50px rgba(0,0,0,.35)); border-radius: 20px; }
.hero-mark { position: relative; width: clamp(200px, 26vw, 340px); opacity: .96; animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-16px); } }
.hero-dots { display: flex; gap: 10px; justify-content: center; padding-bottom: 42px; position: relative; z-index: 3; }
.hero-dots button { width: 12px; height: 12px; border-radius: 999px; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: .3s; }
.hero-dots button.active { width: 34px; background: #fff; }
@media (max-width: 900px) {
    .hero-slides { min-height: clamp(600px, 92vh, 820px); }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero p { margin-inline: auto; }
    .hero-visual { display: none; }
    .hero-arrow { display: none; }
}

/* ---------- Stats bar ---------- */
.stats-bar { margin-top: clamp(-56px, -5vw, -44px); position: relative; z-index: 5; }
.stats-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(26px, 3vw, 44px); display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; inset-inline-start: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.stat-ico { width: 52px; height: 52px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 14px; background: var(--primary-tint); color: var(--brand-primary); }
.stat-ico svg { width: 28px; height: 28px; }
.stat b { display: block; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--brand-primary); font-weight: 900; line-height: 1; }
.stat span { color: var(--muted); font-size: .95rem; }
@media (max-width: 760px) { .stats-card { grid-template-columns: repeat(2,1fr); } .stat:nth-child(2)::after { display: none; } }

/* ---------- Cards ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: .3s; overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand-primary) 25%, var(--border)); }

/* service card */
.service-card { padding: clamp(26px, 2.8vw, 38px); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; inset-inline: 0; height: 4px; background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent)); transform: scaleX(0); transform-origin: center; transition: transform .4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ico { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)); color: #fff; margin-bottom: 20px; position: relative; z-index: 1; transition: .4s cubic-bezier(.22,1,.36,1); box-shadow: 0 10px 22px color-mix(in srgb, var(--brand-primary) 26%, transparent); }
.service-card:hover .ico { transform: translateY(-5px) rotate(-6deg); }
.service-card .ico svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { color: var(--muted); position: relative; z-index: 1; }
.service-card .num { position: absolute; top: 18px; inset-inline-end: 26px; font-size: 3.4rem; font-weight: 900; color: var(--primary-tint); z-index: 0; line-height: 1; transition: .4s; }
.service-card:hover .num { color: var(--primary-soft); transform: scale(1.05); }

/* category card */
.cat-card { display: flex; flex-direction: column; }
.cat-card .cat-media { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft)); display: grid; place-items: center; overflow: hidden; }
.cat-card .cat-media img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.cat-card:hover .cat-media img { transform: scale(1.06); }
.cat-card .cat-icon { width: 76px; height: 76px; border-radius: 20px; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); color: var(--brand-primary); }
.cat-card .cat-icon svg { width: 38px; height: 38px; }
.cat-card .cat-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.cat-card .cat-count { align-self: flex-start; background: var(--primary-tint); color: var(--brand-primary); font-weight: 700; font-size: .82rem; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.cat-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.cat-card p { color: var(--muted); flex: 1; }
.cat-card .cat-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--brand-primary); font-weight: 700; }
.cat-card .cat-link svg { width: 18px; height: 18px; transition: .3s; }
.cat-card:hover .cat-link svg { transform: translateX(-6px); }

/* product card */
.product-card { display: flex; flex-direction: column; }
.product-card .p-media { position: relative; aspect-ratio: 1; background: linear-gradient(160deg, #fff, var(--bg-alt)); padding: 18px; display: grid; place-items: center; }
.product-card .p-media img { width: 100%; height: 100%; object-fit: contain; transition: .4s; }
.product-card:hover .p-media img { transform: scale(1.05); }
.p-badge { position: absolute; top: 14px; inset-inline-start: 14px; background: linear-gradient(135deg, #E8642E, #f59e0b); color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); z-index: 2; }
.p-brand { position: absolute; top: 14px; inset-inline-end: 14px; background: rgba(255,255,255,.9); color: var(--brand-primary); font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.product-card .p-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: .92rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.p-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.p-duration { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-accent); font-weight: 600; font-size: .82rem; }
.p-duration svg { width: 16px; height: 16px; }
.p-more { color: var(--brand-primary); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.p-more svg { width: 16px; height: 16px; }

/* value card */
.value-card { text-align: center; padding: clamp(26px, 3vw, 40px) 24px; position: relative; overflow: hidden; }
.value-card::before { content: ""; position: absolute; top: 0; inset-inline: 0; height: 4px; background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent)); transform: scaleX(0); transform-origin: center; transition: transform .4s ease; }
.value-card:hover::before { transform: scaleX(1); }
.value-card .v-ico { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-tint); color: var(--brand-primary); transition: .3s; }
.value-card:hover .v-ico { background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)); color: #fff; transform: rotate(-6deg) scale(1.05); }
.value-card .v-ico svg { width: 34px; height: 34px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent)); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-tint); color: var(--brand-primary); font-weight: 700; padding: 8px 18px; border-radius: 999px; margin-bottom: 18px; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--text); }
/* ---------- About section (professional) ---------- */
.about-section { position: relative; overflow: hidden; }
.about-section::before { content: ""; position: absolute; top: -12%; inset-inline-end: -6%; width: 480px; height: 480px; background: radial-gradient(circle, color-mix(in srgb, var(--brand-accent) 12%, transparent), transparent 68%); border-radius: 50%; pointer-events: none; z-index: 0; }
.about-section::after { content: ""; position: absolute; bottom: -16%; inset-inline-start: -6%; width: 420px; height: 420px; background: radial-gradient(circle, color-mix(in srgb, var(--brand-primary) 9%, transparent), transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
.about-section .container { position: relative; z-index: 1; }

.title-bar { display: block; width: 70px; height: 5px; border-radius: 999px; margin-top: 18px; background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent)); }

.about-callout { display: flex; gap: 16px; align-items: flex-start; background: color-mix(in srgb, var(--brand-primary) 6%, #fff); border: 1px solid color-mix(in srgb, var(--brand-primary) 14%, var(--border)); border-inline-start: 4px solid var(--brand-primary); border-radius: var(--radius); padding: 22px 24px; margin-top: 24px; }
.about-callout svg { width: 30px; height: 30px; color: var(--brand-primary); flex-shrink: 0; margin-top: 2px; }
.about-callout p { color: var(--text); margin: 0; font-size: 1rem; }

.vm-grid, .about-vm { display: grid; gap: 22px; }
.vm-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(26px, 2.6vw, 34px); box-shadow: var(--shadow-sm); transition: .35s ease; overflow: hidden; }
.vm-card::before { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: 5px; background: linear-gradient(var(--brand-primary), var(--brand-accent)); }
.vm-card::after { content: ""; position: absolute; inset-block-start: -45px; inset-inline-end: -45px; width: 130px; height: 130px; border-radius: 50%; background: var(--primary-tint); opacity: .55; transition: .4s ease; z-index: 0; }
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand-primary) 22%, var(--border)); }
.vm-card:hover::after { transform: scale(1.5); }
.vm-card > * { position: relative; z-index: 1; }
.vm-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)); color: #fff; margin-bottom: 18px; box-shadow: 0 10px 20px color-mix(in srgb, var(--brand-primary) 28%, transparent); }
.vm-icon svg { width: 28px; height: 28px; }
.vm-card h4 { font-size: 1.25rem; margin-bottom: 10px; color: var(--heading); }
.vm-card p { color: var(--muted); }

.about-points { margin-top: 22px; }
.about-points li b { display: block; color: var(--heading); font-weight: 700; }
.about-points li span { color: var(--muted); font-size: .9rem; }

/* check list */
.check-list { display: grid; gap: 14px; margin-top: 20px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .ci { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--primary-tint); color: var(--brand-primary); display: grid; place-items: center; margin-top: 3px; }
.check-list .ci svg { width: 16px; height: 16px; }

/* goals */
.goal-card { display: flex; gap: 18px; padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: .3s; }
.goal-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.goal-card .g-ico { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)); color: #fff; }
.goal-card .g-ico svg { width: 28px; height: 28px; }
.goal-card h4 { font-size: 1.12rem; margin-bottom: 6px; }
.goal-card p { color: var(--muted); font-size: .93rem; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(125deg, var(--brand-secondary), var(--brand-primary)); color: #fff; padding-block: clamp(48px, 7vw, 96px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 10%, rgba(255,255,255,.14), transparent 42%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,.88); margin-top: 14px; max-width: 640px; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(125deg, var(--brand-primary), var(--brand-accent)); border-radius: var(--radius-lg); padding: clamp(40px, 5vw, 72px); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.18), transparent 40%); }
.cta > * { position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.6rem); }
.cta p { color: rgba(255,255,255,.9); max-width: 620px; margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Product detail ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; } }
.pd-media { position: sticky; top: 100px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, #fff, var(--bg-alt)); border: 1px solid var(--border); padding: 30px; display: grid; place-items: center; aspect-ratio: 1; }
.pd-media img { max-height: 100%; object-fit: contain; }
.pd-body .pill { margin-bottom: 14px; }
.pd-body h1 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.pd-body .pd-lead { color: var(--muted); font-size: 1.1rem; margin: 16px 0 24px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.spec-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); }
.spec-table td:first-child { font-weight: 700; color: var(--heading); background: var(--bg-alt); width: 40%; }
.spec-table tr:last-child td { border-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 18px; align-content: start; }
.ci-item { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; transition: .3s; }
.ci-item:hover { box-shadow: var(--shadow-sm); border-color: color-mix(in srgb, var(--brand-primary) 30%, var(--border)); }
.ci-item .ci-ic { flex-shrink: 0; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--primary-tint); color: var(--brand-primary); }
.ci-item .ci-ic svg { width: 26px; height: 26px; }
.ci-item small { color: var(--muted); display: block; }
.ci-item b { color: var(--heading); font-size: 1.05rem; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 44px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--heading); }
.field input, .field textarea, .field select {
    width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem; background: #fbfdff; color: var(--text); transition: .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-primary); background: #fff; box-shadow: 0 0 0 4px var(--primary-tint); }
.field .err { color: #dc2626; font-size: .85rem; margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; font-weight: 600; display: flex; gap: 12px; align-items: center; }
.alert svg { width: 22px; height: 22px; flex-shrink: 0; }
.alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: start; background: none; border: 0; padding: 22px 26px; font-family: inherit; font-size: 1.08rem; font-weight: 700; color: var(--heading); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q svg { width: 22px; height: 22px; color: var(--brand-primary); transition: .3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-dark); color: #c6d4e0; padding-top: clamp(50px, 6vw, 84px); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary)); }
.site-footer::after { content: ""; position: absolute; top: -60px; inset-inline-start: -40px; width: 320px; height: 320px; background: radial-gradient(circle, color-mix(in srgb, var(--brand-accent) 12%, transparent), transparent 70%); border-radius: 50%; pointer-events: none; }
.footer-activities { display: block; color: var(--brand-accent); font-size: .78rem; font-weight: 600; letter-spacing: .6px; margin: -8px 0 16px; }
.site-footer .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 56px; margin-bottom: 18px; }
.footer-brand p { color: #9fb2c4; font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 40px; height: 3px; border-radius: 3px; background: var(--brand-accent); }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #a9bccd; transition: .2s; }
.footer-col a:hover { color: #fff; padding-inline-start: 6px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: #a9bccd; }
.footer-contact svg { width: 20px; height: 20px; color: var(--brand-accent); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .3s; }
.socials a:hover { background: var(--brand-accent); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; text-align: center; color: #8399ac; font-size: .9rem; }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 45; display: flex; flex-direction: column; gap: 12px; }
.float-actions a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); transition: .3s; }
.float-actions a:hover { transform: scale(1.1); }
.fab-wa { background: #25D366; }
.fab-top { background: var(--brand-primary); opacity: 0; pointer-events: none; }
.fab-top.show { opacity: 1; pointer-events: auto; }
.float-actions svg { width: 28px; height: 28px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Ultra-wide screens (halls / large displays) ---------- */
@media (min-width: 1600px) { :root { --container: 1440px; } }
@media (min-width: 1920px) {
    :root { --container: 1680px; }
    body { font-size: 19px; }
}
@media (min-width: 2560px) {
    :root { --container: 2100px; }
    body { font-size: 22px; }
    .brand img { height: 64px; }
}
