
/* ============================================================
   HEADER + NAVBAR + PARTENERI (TRUSTED / MARQUEE)
   ------------------------------------------------------------
   Aici este tot ce ține de:
   ✅ Variabilele și dimensiunile pentru header (în :root)
   ✅ Header-ul fix (sticlă / blur) + layout-ul din header-row
   ✅ Navigația desktop: link-uri, active state, dropdown
   ✅ Butoane icon (search, etc.) + hamburger (mobile toggle)
   ✅ Drawer-ul de mobil (meniul lateral) + backdrop + sublink-uri
   ✅ Modalul de search (overlay + input + button)
   ✅ Secțiunea „Parteneri / Trusted” + Marquee (logo-uri în mișcare)
   ------------------------------------------------------------
   Notă: Hero și restul paginii sunt mai jos, în secțiunile lor.
   ============================================================ */

:root{
  --bg: #0b0b0c;
  --bg2:#111114;
  --text:#f4f4f5;
  --muted:#c8c8cd;
  --line: rgba(255,255,255,.12);

  --accent:#d6c3a5; /* warm luxury */
  --accent2:#bca27a;

  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);

  --shadow: 0 24px 60px rgba(0,0,0,.45);
  --radius: 18px;

  --container: 1180px;
  --header-h: 86px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.site-header{
  position:fixed;
  top:0; left:0; right:0;
  height: var(--header-h);
  z-index:50;
  background: rgba(10,10,12,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.header-row{
  height:100%;
  display:flex;
  align-items:center;
  gap:18px;
}

.brand img{
  height:42px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.nav-desktop{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-link{
  position:relative;
  font-size: 15px;
  letter-spacing:.2px;
  color: rgba(255,255,255,.86);
  padding: 10px 2px;
  transition: color .2s ease;
}
.nav-link:hover{ color:#fff; }
.nav-link.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity:.9;
}

.nav-dropdown{position:relative}
.nav-dropdown-btn{
  border:0;
  background:transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-dropdown-menu{
  position:absolute;
  top:42px;
  left:0;
  min-width: 220px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(15,15,18,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  display:none;
}
.nav-dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.86);
}
.nav-dropdown-menu a:hover{
  background: rgba(255,255,255,.06);
  color:#fff;
}
.nav-dropdown:hover .nav-dropdown-menu{display:block}

.icon-btn{
  margin-left: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  width:42px;height:42px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.icon-btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }

.nav-toggle{
  display:none;
  margin-left:auto;
  width:44px;height:44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  position:relative;
}
.nav-toggle span{
  position:absolute;
  left: 12px;
  right: 12px;
  height:2px;
  background:#fff;
  border-radius: 2px;
}
.nav-toggle span:nth-child(1){ top: 15px; }
.nav-toggle span:nth-child(2){ top: 21px; opacity:.85; }
.nav-toggle span:nth-child(3){ top: 27px; opacity:.7; }

/* Drawer */
.drawer{ position:fixed; inset:0; z-index:60; pointer-events:none; }
.drawer.is-open{ pointer-events:auto; }
.drawer-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  opacity:0;
  transition: opacity .2s ease;
}
.drawer.is-open .drawer-backdrop{ opacity:1; }
.drawer-panel{
  position:absolute; top:0; right:0;
  width: min(92vw, 380px);
  height: 100%;
  background: rgba(12,12,14,.98);
  border-left: 1px solid rgba(255,255,255,.10);
  transform: translateX(100%);
  transition: transform .22s ease;
  padding: 18px 18px 26px;
}
.drawer.is-open .drawer-panel{ transform: translateX(0); }
.drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-brand img{ height:36px; display:block; }
.drawer-close{
  border:0;
  background:transparent;
  color:#fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
  padding: 6px 2px;
}

.drawer-nav{
  padding-top: 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.drawer-link{
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.drawer-link:hover{ background: rgba(255,255,255,.06); }
.drawer-details summary{
  list-style:none;
  cursor:pointer;
}
.drawer-details summary::-webkit-details-marker{display:none}
.drawer-sub{
  margin-top: 8px;
  padding-left: 8px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.drawer-sublink{
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.drawer-sublink:hover{ background: rgba(255,255,255,.05); }

/* Search modal */
.modal{
  position:fixed; inset:0;
  z-index:70;
  pointer-events:none;
}
.modal.is-open{ pointer-events:auto; }
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
  opacity:0;
  transition: opacity .2s ease;
}
.modal.is-open .modal-backdrop{opacity:1}
.modal-panel{
  position:absolute;
  left:50%; top: 18%;
  transform: translate(-50%, -10px);
  width: min(92vw, 680px);
  background: rgba(15,15,18,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  opacity:0;
  transition: opacity .2s ease, transform .2s ease;
}
.modal.is-open .modal-panel{
  opacity:1;
  transform: translate(-50%, 0);
}
.modal-close{
  position:absolute;
  top: 10px;
  right: 12px;
  border:0;
  background:transparent;
  color:#fff;
  font-size: 22px;
  cursor:pointer;
}
.search-form{
  display:flex;
  gap:10px;
  align-items:center;
  padding-top: 18px;
}
.search-form input{
  flex:1;
  height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  outline:none;
  font-size: 16px;
}
.search-form button{
  width: 54px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}

/* Hero */
.hero{
  position:relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 56px;
  background:
    radial-gradient(1200px 900px at 70% 20%, rgba(214,195,165,.18), transparent 55%),
    radial-gradient(900px 700px at 25% 15%, rgba(255,255,255,.08), transparent 60%),
    url("https://templatekit.kitprostudio.com/Novarion/wp-content/uploads/sites/27/2026/01/4-4.jpg") center/cover no-repeat;
}

.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,7,9,.78), rgba(7,7,9,.60), rgba(7,7,9,.80));
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 240px 1fr 390px;
  gap: 26px;
  align-items: start;
}

.hero-left{
  padding-top: 14px;
  display:flex;
  flex-direction:column;
  gap: 26px;
}

.hero-tag{
  display:flex;
  align-items:center;
  gap:12px;
  transform-origin:left center;
  writing-mode: vertical-rl;
  rotate: 180deg; /* makes text read bottom->top like many templates */
  opacity:.92;
  width:max-content;
}
.hero-tag .dot{
  width: 10px; height:10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(214,195,165,.12);
}
.hero-tag .tag-text{
  letter-spacing: 2px;
  text-transform: lowercase;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}

.type-stack{
  display:flex;
  flex-direction:column;
  gap: 16px;
  margin-top: 10px;
}
.type-card{
  padding: 18px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.type-card h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.90);
}
.type-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  transition: transform .18s ease, background .18s ease;
}
.type-link:hover{
  transform: translateX(3px);
  background: rgba(255,255,255,.06);
}

/* Center hero */
.hero-center{
  padding-top: 40px;
}
.hero-center h1{
  margin: 0 0 14px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -1.2px;
  font-weight: 700;
}
.hero-center p{
  margin: 0 0 22px;
  max-width: 560px;
  color: rgba(255,255,255,.84);
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.cta-row{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  font-weight: 600;
  letter-spacing:.2px;
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #141416;
  border-color: transparent;
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,.06);
  color:#fff;
}
.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

/* Right hero */
.hero-right{
  padding-top: 24px;
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.feature-card{
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  position:relative;
  overflow:hidden;
}
.feature-card::before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(214,195,165,.25), transparent 70%);
  transform: rotate(22deg);
}
.feature-main{ position:relative; z-index:1; }
.feature-main h4{
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: lowercase;
  color: rgba(255,255,255,.85);
}
.feature-main p{
  margin: 0 0 12px;
  font-family:"Figtree", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.mini-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}
.mini-link:hover{ color:#fff; }
.feature-num{
  position:relative;
  z-index:1;
  font-size: 34px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: -1px;
}

/* Stats */
.stats{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.stat{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.stat img{
  width: 46px; height:46px;
  object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.stat-value{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.stat-label{
  font-family:"Figtree", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* Trusted section */
.trusted{
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.35));
  padding: 56px 0 70px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trusted-inner h2{
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.marquee{
  overflow:hidden;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.marquee-track{
  display:flex;
  gap: 80px;
  align-items:center;
  width:max-content;
  animation: marquee 36s linear infinite;
  padding-left: 40px;
}
.marquee-track img{
  height: 38px;
  width:auto;
  opacity:.92;
  filter: grayscale(1) contrast(1.1) brightness(1.2);
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1024px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-left{
    flex-direction:row;
    align-items:stretch;
    justify-content:space-between;
    gap: 14px;
  }
  .hero-tag{
    writing-mode: horizontal-tb;
    rotate: 0deg;
    transform:none;
    width:auto;
  }
  .type-stack{
    flex:1;
    flex-direction:row;
    gap: 12px;
  }
  .type-card{ flex:1; }
  .hero-center{ padding-top: 0; }
  .hero-right{ padding-top: 0; }
}

@media (max-width: 860px){
  .nav-desktop{ display:none; }
  .nav-toggle{ display:block; }
  .icon-btn{ margin-left: 0; }
  .brand img{ height:38px; }
  .hero{ padding-top: calc(var(--header-h) + 22px); }
  .type-stack{ flex-direction:column; }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 26px); }
  .hero-center h1{ letter-spacing: -0.6px; }
  .cta-row{ gap: 10px; }
  .btn{ width:100%; justify-content:center; }
}



/* =========================
   ORG SECTION (Modern)
========================= */
.org-section{
  position: relative;
  overflow: hidden;
  padding: 84px 0 90px;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(1100px 900px at 85% 35%, rgba(214,195,165,.12), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
}

/* imagine_transparent.png in fundal (vizibil ~80%) */
.org-section::before{
  content:"";
  position:absolute;
  width: 760px;
  height: 760px;
  right: -18%;   /* ajustează -14%..-22% ca să “prinzi” ~80% vizibil */
  top: -10%;
  background: url("imagine_transparent.png") center/contain no-repeat;
  opacity: .22;
  filter: saturate(1.05);
  transform: rotate(0deg) scale(1);
  animation: orgSpin 120s linear infinite;
  pointer-events:none;
}

.org-section::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,11,12,.78), rgba(11,11,12,.52), rgba(11,11,12,.76));
  pointer-events:none;
}

@keyframes orgSpin{
  to { transform: rotate(360deg) scale(1); }
}

/* pornește rotirea doar când secțiunea e în view (setat din JS) */
.org-section::before{ animation-play-state: paused; }
.org-section.is-inview::before{ animation-play-state: running; }

.org-inner{
  position: relative;
  z-index: 2;
}

/* top text - ca în screenshot (modern, aerisit) */
.org-top{
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}
.org-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.org-top h2{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.6px;
}
.org-top p{
  margin: 0 auto 18px;
  max-width: 860px;
  font-family: "Figtree", sans-serif;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

/* tree container */
.org-tree{
  position: relative;
  margin-top: 28px;
  padding-top: 8px;
}


/* nodes */
.org-node{
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.org-node::before{
  content:"";
  position:absolute;
  inset:-60px auto auto -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 30% 30%, rgba(214,195,165,.18), transparent 70%);
  transform: rotate(18deg);
  opacity: .9;
}

.org-node h3{
  position:relative;
  margin: 10px 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.org-node p{
  position:relative;
  margin: 0 0 14px;
  font-family:"Figtree", sans-serif;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  font-size: 14px;
}

.org-node--parent{
  max-width: 560px;
  margin: 0 auto 18px;
  text-align: center;
  padding: 22px 20px;
}

.org-branch{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.org-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  color: rgba(255,255,255,.88);
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.org-chip--soft{
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.82);
}

/* btn small */
.btn-sm{
  height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

/* mobile: una sub alta */
@media (max-width: 860px){
  .org-top{ text-align:left; }
  .org-node--parent{ text-align:left; max-width: none; }
  .org-branch{ grid-template-columns: 1fr; }
}



/* =========================
   HOLDING SHOWCASE SECTION
   ========================= */
.holding-showcase{
  padding: 90px 0;
  background:
    radial-gradient(900px 600px at 15% 30%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 600px at 85% 40%, rgba(214,195,165,.10), transparent 55%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.showcase-heading{
  margin: 0 0 26px;
  text-align:center;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 700;
}
.showcase-heading span{
  display:block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  color: rgba(255,255,255,.78);
  font-family: "Figtree", sans-serif;
}

.holding-panel{
  border-radius: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;

  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
}

.holding-copy{
  padding: 42px 44px;
  background:
    radial-gradient(600px 420px at 10% 25%, rgba(214,195,165,.12), transparent 60%),
    rgba(10,10,12,.35);
}

.holding-badge{
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.holding-title{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.2px;
  font-weight: 650;
}

.holding-lead{
  margin: 0 0 22px;
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}


.holding-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}

.holding-social{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-family: "Figtree", sans-serif;
  font-size: 14px;
}

.holding-social .soc{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.92);
  transition: transform .18s ease, background .18s ease;
}
.holding-social .soc:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
}

.holding-media{
  padding: 36px;
  background: rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
}

.holding-photo{
  width:100%;
  height:100%;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  min-height: 420px;
}

.holding-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

@media (max-width: 980px){
  .holding-panel{
    grid-template-columns: 1fr;
  }
  .holding-copy{ padding: 34px 22px; }
  .holding-media{ padding: 22px; }
  .holding-photo{ min-height: 340px; }
}


.holding-body{
  margin-top: 6px;
  max-width: 620px;
}

.holding-par{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.holding-bullets{
  margin: 0 0 14px;
  padding-left: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.holding-bullets strong{
  color: rgba(255,255,255,.92);
  font-weight: 650;
}










/* =========================
   XPERIENCE THE FUTURE SECTION
   ========================= */
.xp-showcase{
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 600px at 18% 25%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 600px at 82% 40%, rgba(214,195,165,.10), transparent 55%);
}

.xp-panel{
  border-radius: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;

  display:grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
}

.xp-media{
  padding: 36px;
  background: rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
}

.xp-photo{
  width:100%;
  height:100%;
  min-height: 460px;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

.xp-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

.xp-copy{
  padding: 42px 44px;
  background:
    radial-gradient(600px 420px at 10% 25%, rgba(214,195,165,.12), transparent 60%),
    rgba(10,10,12,.35);
}

.xp-badge{
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.xp-title{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.2px;
  font-weight: 650;
}

.xp-lead{
  margin: 0 0 18px;
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.xp-logos{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 6px;
}

.xp-logo-btn{
  width: 92px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;

  display:grid;
  place-items:center;

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.xp-logo-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.xp-logo-btn img{
  width: auto;
  height: 42px;
  display:block;
  opacity: .92;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}

.xp-logo-btn.is-active{
  background: rgba(214,195,165,.12);
  border-color: rgba(214,195,165,.28);
}

.xp-divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin: 22px 0 18px;
}

.xp-brand{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.2px;
}

.xp-desc{
  margin: 0 0 18px;
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.xp-bottom{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .xp-panel{ grid-template-columns: 1fr; }
  .xp-media{ padding: 22px; }
  .xp-copy{ padding: 34px 22px; }
  .xp-photo{ min-height: 340px; }
}
