/* =========================================================
   AREA HUB — Al Massa (RTL, premium, no frameworks)
   Primary: #F03030
   ========================================================= */
.area-hub{ overflow-x: clip; }
@supports not (overflow: clip){ .area-hub{ overflow-x: hidden; } }
.area-hub *, .area-hub *::before, .area-hub *::after{ box-sizing: border-box; }
.area-hub img, .area-hub svg, .area-hub video, .area-hub iframe{ max-width:100%; height:auto; }

:root{
  --alm-red:#F03030;
  --alm-ink:#0f172a;
  --alm-navy:#304060;
  --alm-muted: rgba(15,23,42,.72);
  --alm-line: rgba(15,23,42,.10);
  --alm-card: rgba(255,255,255,.86);
  --alm-soft: rgba(48,64,96,.05);
}

/* HERO */
.area-hero{ position:relative; padding: clamp(26px, 4vw, 78px) 0; overflow: clip; }
.area-hero__bg{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.area-hero__mesh, .area-hero__grid, .area-hero__noise, .area-hero__glow{ position:absolute; inset:0; }

.area-hero__mesh{
  background:
    radial-gradient(900px 520px at 12% 22%, rgba(240,48,48,.18), transparent 62%),
    radial-gradient(900px 520px at 86% 28%, rgba(48,64,96,.16), transparent 62%),
    linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}


.area-hero__grid{
  opacity:.34;
  background:
    linear-gradient(to right, rgba(15,23,42,.06) 1px, transparent 1px) 0 0/46px 46px,
    linear-gradient(to bottom, rgba(15,23,42,.06) 1px, transparent 1px) 0 0/46px 46px;
  mask-image: radial-gradient(closest-side at 50% 36%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 36%, #000 0%, transparent 78%);
}

.area-hero__noise{
  opacity:.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  background-size:180px 180px;
  mix-blend-mode: multiply;
}

.area-hero__glow--a{
  inset:auto; width: 520px; height:520px;
  right: -180px; top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(240,48,48,.22), transparent 60%);
  filter: blur(12px);
  animation: almFloatA 10s ease-in-out infinite;
}
.area-hero__glow--b{
  inset:auto; width: 520px; height:520px;
  left: -200px; bottom: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(48,64,96,.18), transparent 62%);
  filter: blur(14px);
  animation: almFloatB 12s ease-in-out infinite;
}

@keyframes almFloatA{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(-18px, 14px); }
}
@keyframes almFloatB{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(16px, -12px); }
}

.area-hero__inner{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(14px, 2.6vw, 28px);
  align-items:start;
}


/* Breadcrumb */
.crumbs__list{ margin:0; padding:0; list-style:none; display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.crumbs__item{ display:flex; align-items:center; gap:10px; }
.crumbs__item:not(:last-child)::after{ content:"/"; opacity:.45; }
.crumbs__link{ font-weight: 1000; color: rgba(15,23,42,.70); }
.crumbs__link:hover{ color: var(--alm-ink); text-decoration: underline; }
.crumbs__current{ font-weight: 1000; color: var(--alm-ink); }

/* 1) Define explicit grid areas */
.area-hero__inner{
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-areas:
    "crumbs crumbs"
    "content panel";
  align-items: start;
}

/* 2) Place elements in their areas */
.area-hero__inner > .crumbs{ grid-area: crumbs; }
.area-hero__content{ grid-area: content; min-width: 0; }
.area-hero__panel{ grid-area: panel; min-width: 0; }

/* 3) Ensure breadcrumbs never steal a column */
.crumbs{
  width: 100%;
  margin-bottom: 10px;
}

/* 4) Prevent long text/links from forcing layout overflow */
.crumbs__list,
.title,
.subtitle,
.hl__t,
.hl__d{
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 5) Make panel stable and premium (optional) */
@media (min-width: 1101px){
  .area-hero__panel{
    position: sticky;
    top: 14px;
    align-self: start;
  }
}

/* 6) Responsive stays same, but keep areas clean */
@media (max-width: 1100px){
  .area-hero__inner{
    grid-template-columns: 1fr;
    grid-template-areas:
      "crumbs"
      "content"
      "panel";
  }
}

.kicker{
  margin:0 0 10px;
  font-weight:1000; color: var(--alm-navy);
  display:inline-flex; gap:10px; align-items:center;
}
.kicker::before{
  content:""; width:10px; height:10px; border-radius:999px;
  background: var(--alm-red);
  box-shadow: 0 0 0 7px rgba(240,48,48,.10);
}
.title{
  margin:0 0 10px;
  font-weight:1000; color: var(--alm-ink);
  font-size: clamp(22px, 2.6vw, 42px);
  line-height:1.15;
}
.subtitle{
  margin:0 0 14px;
  color: var(--alm-muted);
  font-weight: 780;
  line-height: 2;
  max-width: 92ch;
}

.actions{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 12px; }
.btn__sub{ display:block; font-size:12px; font-weight:1000; opacity:.82; }

.btn{
  display:inline-flex; flex-direction:column; align-items:flex-start;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--alm-line);
  background: rgba(255,255,255,.70);
  font-weight:1000;
  color: rgba(15,23,42,.86);
  text-decoration:none;
}
.btn:hover{ background: rgba(240,48,48,.06); border-color: rgba(240,48,48,.18); }
.btn--primary{
  border-color: rgba(240,48,48,.26);
  background: rgba(240,48,48,.12);
}
.btn--ghost{ background: rgba(255,255,255,.70); }

.highlights{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.hl{
  border-radius: 22px;
  border: 1px solid var(--alm-line);
  background: var(--alm-card);
  box-shadow: 0 18px 54px rgba(15,23,42,.08);
  padding: 12px;
}
.hl__t{ display:block; font-weight:1000; color: var(--alm-ink); margin-bottom:6px; }
.hl__d{ display:block; font-weight:750; color: var(--alm-muted); line-height:1.85; font-size:13.5px; }

.quick-nav{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--alm-line);
  background: var(--alm-soft);
  font-weight: 1000;
  color: var(--alm-ink);
  text-decoration:none;
}
.chip:hover{ background: rgba(240,48,48,.06); border-color: rgba(240,48,48,.20); }

.area-hero__panel .panel{
  border-radius: 26px;
  border: 1px solid rgba(240,48,48,.18);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 54px rgba(15,23,42,.10);
  padding: 16px;
}

/* Hero thumbnail */
.area-hero__panel .panel__thumb{
  margin: 0 0 14px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 45px rgba(0,0,0,.25);
}

.area-hero__panel .panel__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}

/* Subtle hover (desktop) */
@media (hover:hover){
  .area-hero__panel:hover .panel__img{
    transform: scale(1.06);
  }
}

/* Mobile: make it less tall */
@media (max-width: 768px){
  .area-hero__panel .panel__thumb{
    aspect-ratio: 16 / 9;
  }
}

.panel__h{ margin:0 0 8px; font-weight:1000; color: var(--alm-ink); font-size: 16px; }
.panel__p{ margin:0 0 12px; font-weight:750; color: var(--alm-muted); line-height:1.9; }
.panel__mini{ display:flex; flex-wrap:wrap; gap:10px; }
.mini{
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid var(--alm-line);
  background: rgba(255,255,255,.70);
  font-weight: 1000;
  color: rgba(15,23,42,.75);
  font-size: 12.5px;
}

/* Sections */
.section{ padding: clamp(26px, 4vw, 78px) 0; }
.section--soft{ background: rgba(48,64,96,.035); border-top: 1px solid rgba(15,23,42,.06); border-bottom: 1px solid rgba(15,23,42,.06); }

.section-head{ margin-bottom: 14px; }
.section-kicker{
  margin:0 0 10px;
  font-weight:1000; color: var(--alm-navy);
  display:inline-flex; gap:10px; align-items:center;
}
.section-kicker::before{
  content:""; width:10px; height:10px; border-radius:999px;
  background: var(--alm-red);
  box-shadow: 0 0 0 7px rgba(240,48,48,.10);
}
.section-title{
  margin:0 0 10px;
  font-weight:1000; color: var(--alm-ink);
  font-size: clamp(20px, 2.2vw, 34px);
  line-height:1.2;
}
.section-subtitle{
  margin:0;
  font-weight:750; color: var(--alm-muted);
  line-height:1.9;
  max-width: 92ch;
}

/* Grid cards */
.grid{ display:grid; gap:12px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  border-radius: 22px;
  border: 1px solid var(--alm-line);
  background: var(--alm-card);
  box-shadow: 0 18px 54px rgba(15,23,42,.08);
  padding: 14px;
}
.card--link, .card--service{ text-decoration:none; color: inherit; display:block; }
.card__t{ display:block; font-weight:1000; color: var(--alm-ink); margin-bottom:8px; }
.card__d{ display:block; font-weight:750; color: var(--alm-muted); line-height:1.85; margin-bottom: 12px; }
.card__m{ display:block; font-weight:1000; color: rgba(15,23,42,.62); }

.card--service{ border-color: rgba(240,48,48,.16); background: rgba(240,48,48,.04); }
.card--scenario .sc__h{ margin:0 0 8px; font-weight:1000; color: var(--alm-ink); font-size: 15px; }
.card--scenario .sc__p{ margin:0 0 8px; font-weight:750; color: var(--alm-muted); line-height:1.9; }
.card--scenario .sc__cta{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--alm-line);
  background: rgba(48,64,96,.05);
  font-weight: 1000;
  color: var(--alm-ink);
  text-decoration:none;
}
.card--scenario .sc__cta:hover{ background: rgba(240,48,48,.06); border-color: rgba(240,48,48,.18); }

/* Steps */
.steps{
  margin:0; padding:0; list-style:none;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  border-radius: 22px;
  border: 1px solid var(--alm-line);
  background: var(--alm-card);
  box-shadow: 0 18px 54px rgba(15,23,42,.08);
  padding: 14px;
}
.step__n{ display:block; font-weight:1000; color: var(--alm-red); direction:ltr; }
.step__h{ margin: 6px 0 8px; font-weight:1000; color: var(--alm-ink); font-size: 14.5px; }
.step__p{ margin:0; font-weight:750; color: var(--alm-muted); line-height:1.85; }

/* Rich content */
.rich-content{
  border-radius: 26px;
  border: 1px solid var(--alm-line);
  background: var(--alm-card);
  box-shadow: 0 18px 54px rgba(15,23,42,.08);
  padding: 16px;
}
.rich-content h2, .rich-content h3{ margin-top: 18px; font-weight:1000; color: var(--alm-ink); line-height:1.3; }
.rich-content p, .rich-content li{ font-weight:750; color: var(--alm-muted); line-height:2.0; font-size:16px; }
.rich-content a{ font-weight:1000; color: var(--alm-navy); text-decoration: underline; }
.rich-content a:hover{ color: var(--alm-ink); }

/* FAQ */
.faq{
  border-radius: 26px;
  border: 1px solid var(--alm-line);
  background: var(--alm-card);
  box-shadow: 0 18px 54px rgba(15,23,42,.08);
  padding: 10px;
}
.faq-item{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.70);
  padding: 12px;
  margin: 10px 0;
}
.faq-q{ cursor:pointer; font-weight:1000; color: var(--alm-ink); }
.faq-a{ margin-top: 10px; color: var(--alm-muted); font-weight:750; line-height:1.9; }

/* Final */
.final-card{
  border-radius: 26px;
  border: 1px solid rgba(240,48,48,.22);
  background: rgba(240,48,48,.06);
  box-shadow: 0 18px 54px rgba(15,23,42,.08);
  padding: 16px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items:center;
}
.final-card__txt h2{ margin:0 0 6px; font-weight:1000; color: var(--alm-ink); }
.final-card__txt p{ margin:0; font-weight:750; color: var(--alm-muted); line-height:1.9; }
.final-card__actions{ display:flex; flex-wrap:wrap; gap: 10px; }

/* Sticky mobile */
.sticky{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9990;
  display:none;
  gap: 10px;
  border-radius: 18px;
  padding: 10px;
  border: 1px solid var(--alm-line);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
}
.sticky__btn{
  flex: 1 1 auto;
  text-align:center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--alm-line);
  background: rgba(48,64,96,.05);
  font-weight: 1000;
  color: var(--alm-ink);
  text-decoration:none;
}
.sticky__btn--wa{ border-color: rgba(240,48,48,.20); background: rgba(240,48,48,.08); }

/* Reveal */
[data-reveal]{ opacity:0; transform: translateY(10px); transition: opacity 260ms cubic-bezier(.2,.8,.2,1), transform 260ms cubic-bezier(.2,.8,.2,1); }
.is-revealed{ opacity:1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1100px){
  .area-hero__inner{ grid-template-columns: 1fr; }
  .highlights{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .final-card{ flex-direction: column; align-items:flex-start; }
  .sticky{ display:flex; }
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ transition:none; transform:none; opacity:1; }
  .area-hero__glow{ animation:none; }
}
