/* style.css (UPDATED — multi-page + pager + division dropdown + activations + partner) */

/* -------------------------
   Reset + Base
---------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #f7fafc;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ----------------------------
   Tokens
---------------------------- */
:root{
  --bg: #f7fafc;
  --panel: #ffffff;
  --line: #e5e7eb;

  --text: #0f172a;
  --muted: #64748b;

  /* ACCENT (Red) */
  --orange: #E31E24;
  --orange2:#F04B4F;

  --navy: #0b1220;
  --navy2:#0f1a2f;

  --blue: #2b63ff;
  --blue2:#3a73ff;

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.16);

  --container: 1200px;
}

/* ----------------------------
   Layout Helpers
---------------------------- */
.container{
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section{ padding: 96px 0; }
.center-head{ text-align: center; }

/* Typography */
h1, h2, h3{
  font-family: "Playfair Display", serif;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.h2{
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12;
}

.h3{
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.12;
}

.subhead{
  margin: 0 auto 34px;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.kicker{
  font-size: 11px;
  letter-spacing: 0.36em;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

.quote-kicker{
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
}

.lead{
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

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

/* ----------------------------
   Buttons
---------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.btn-primary{
  color: #fff;
  background: linear-gradient(90deg, var(--orange), #B31218);
  box-shadow: 0 16px 36px rgba(227, 30, 36, 0.22);
}

.btn-primary:hover{ filter: brightness(1.02); }

.btn-header{ padding: 12px 18px; }

.btn-ghost{
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  background:rgba(255,255,255,0.08);
}

/* ----------------------------
   Header (Sticky)
---------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header-inner{
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.brand-text strong{
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.brand-text span{
  margin-left: 2px;
  color: #94a3b8;
  font-weight: 700;
}

.nav{
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link{
  position: relative;
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
}

.nav-link:hover{ color: #0f172a; }
.nav-link.is-active{ color: #0f172a; }

.nav-link.is-active::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Mobile toggle */
.nav-toggle{
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.burger{
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #0f172a;
  position: relative;
  border-radius: 2px;
}
.burger::before,
.burger::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background:#0f172a;
  border-radius: 2px;
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* ----------------------------
   HERO
---------------------------- */
.hero{
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 80px 0;
}

.hero-bg{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 13, 25, 0.92) 0%,
      rgba(7, 13, 25, 0.78) 45%,
      rgba(7, 13, 25, 0.35) 100%
    ),
    radial-gradient(
      1200px 600px at 20% 40%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.00) 55%
    ),
    url("assets/distribution-warehouse.jpg") center/cover no-repeat;

  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(
    900px 600px at 70% 50%,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.45) 100%
  );
  opacity: .35;
}

.hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}

.hero-title{
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero-sub{
  margin: 0;
  max-width: 520px;
  color: rgba(203, 213, 241, 0.94);
  font-size: 15.5px;
}

.hero-cta{
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.float-icon svg{
  width: 26px;
  height: 26px;
  display: block;
  margin: auto;
}

/* ----------------------------
   ABOUT
---------------------------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media img{
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.feature-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.mini-card{
  background: var(--panel);
  border: 1px solid rgba(229,231,235,0.8);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.mini-card h3{
  font-family: "Inter", sans-serif;
  margin: 0 0 8px;
  font-size: 15px;
}

.mini-card p{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.mini-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-weight: 900;
}

.mini-icon-orange{ background: rgba(227, 30, 36, 0.12); color: var(--orange); }
.mini-icon-blue{ background: rgba(43, 99, 255, 0.12); color: var(--blue); }

/* ----------------------------
   MEET THE TEAM
---------------------------- */
.team{ margin-top: 54px; }

.team-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.team .kicker{
  font-size: 12px;
  letter-spacing: 0.30em;
  font-weight: 900;
  margin-bottom: 10px;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
  margin-top: 18px;
}

.team-card{
  background: var(--panel);
  border: 1px solid rgba(229,231,235,0.85);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.team-photo{
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: top center;
  border-radius: 18px;
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(229,231,235,0.85);
}

.team-name{
  margin: 12px 0 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #0f172a;
}

.team-role{
  margin: 4px 0 0;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 700;
}

.team-bio{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ----------------------------
   DIVISIONS
---------------------------- */
.services{ background: #f8fbff; }

.division-selectWrap{
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 18px auto 44px;
  text-align: left;
}

.select-label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #0f172a;
}

.division-select{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  font: inherit;
  color: #0f172a;
  outline: none;
  padding: 14px 14px;
  box-shadow: var(--shadow-md);
}

.division-select:focus{
  border-color: rgba(227, 30, 36, 0.45);
  box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.12);
}

.service-panel{ display: none; }
.service-panel.is-active{ display: block; }

.service-card{
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229,231,235,0.75);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.service-left .body{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
}

.div-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.div-item{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(229,231,235,0.85);
}

.div-ic{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(227, 30, 36, 0.10);
  color: var(--orange);
  border: 1px solid rgba(227, 30, 36, 0.18);
}

.div-ic--reach{
  background: rgba(227, 30, 36, 0.10);
  color: var(--orange);
  border: 1px solid rgba(227, 30, 36, 0.18);
}
.div-ic--edge{
  background: rgba(43, 99, 255, 0.10);
  color: var(--blue);
  border: 1px solid rgba(43, 99, 255, 0.18);
}

.div-list--edge .div-ic{
  background: rgba(43, 99, 255, 0.10);
  color: var(--blue);
  border: 1px solid rgba(43, 99, 255, 0.18);
}
.div-list--reach .div-ic{
  background: rgba(227, 30, 36, 0.10);
  color: var(--orange);
  border: 1px solid rgba(227, 30, 36, 0.18);
}

.div-ic svg{ width: 22px; height: 22px; display: block; }

.div-title{
  font-weight: 900;
  color: #0f172a;
  font-size: 14px;
  margin-bottom: 2px;
}

.div-desc{ color: var(--muted); font-size: 13.5px; }

.service-right img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
  object-fit: cover;
}

/* Partner block */
.partner-block{ padding: 26px 0 0; }
.partner-card{
  margin-top: 22px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(229,231,235,0.75);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}
.partner-right{ display: flex; justify-content: center; }
.partner-logoWrap{
  width: 100%;
  max-width: 420px;
  height: 170px;
  border-radius: 18px;
  border: 1px solid rgba(229,231,235,0.85);
  background: rgba(15,23,42,0.02);
  display: grid;
  place-items: center;
  padding: 16px;
}
.partner-logoWrap img{
  max-width: 320px;
  max-height: 120px;
  object-fit: contain;
}

/* Brand activations */
.activations{ padding: 40px 0 0; }
.activation-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.activation-card{
  background: #fff;
  border: 1px solid rgba(229,231,235,0.85);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-md);
}
.activation-top{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.activation-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(227, 30, 36, 0.12);
  color: var(--orange);
  font-weight: 900;
}
.activation-title{
  font-family: "Inter", sans-serif;
  margin: 0;
  font-size: 14.5px;
  font-weight: 900;
}
.activation-body{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}


/* ----------------------------
   PRODUCTS SECTION (BIOKO REACH)
---------------------------- */
.products {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border-top: 1px solid var(--line);
  padding-top: 54px;
  padding-bottom: 54px;
}

/* =========================================================
   BIOKO REACH — tighten spacing between Partner + Products
   (Fixes the big break before "Distributed Brands")
========================================================= */
#reach-products.products--reach{
  /* remove the “new section” feel */
  border-top: 0;
  background: transparent;

  /* tighten vertical spacing */
  padding-top: 18px;     /* was effectively 54px */
  padding-bottom: 54px;  /* keep bottom spacing consistent */
  margin-top: 10px;
}

/* Optional: slightly reduce the heading block spacing inside products */
#reach-products.products--reach .subhead{
  margin-bottom: 22px; /* default is 34px */
}

/* =========================================================
   BIOKO REACH — ACTIVATION SHOWCASE CAROUSEL
========================================================= */
.activation-showcase{
  margin-top: 30px;
  padding: 6px 0 22px;
}

.activation-showcase__head{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.activation-showcase__intro{
  margin: 0;
  color: var(--muted);
  max-width: 560px;
  justify-self: end;
}

.activation-carousel-wrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.activation-carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  scrollbar-width: none;
  width: 100%;
}

.activation-carousel::-webkit-scrollbar{
  display: none;
}

.activation-slide{
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 0;
}

.activation-slide img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.activation-slide__body{
  padding: 18px 18px 20px;
}

.activation-slide__tag{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(227,30,36,0.08);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activation-slide h4{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.activation-slide p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.activation-nav{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.activation-nav:hover{
  transform: translateY(-1px);
  border-color: rgba(227,30,36,0.35);
  box-shadow: var(--shadow-md);
}

@media (max-width: 1100px){
  .activation-showcase__head{
    grid-template-columns: 1fr;
  }

  .activation-showcase__intro{
    justify-self: start;
  }

  .activation-carousel{
    grid-auto-columns: calc(50% - 10px);
  }
}

@media (max-width: 700px){
  .activation-carousel{
    grid-auto-columns: 100%;
  }

  .activation-nav{
    display: none;
  }

  .activation-slide img{
    height: 220px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.prod-card {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image Area */
.prod-media {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f1f5f9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-media img {
  transform: scale(1.05);
}

/* Floating Badge */
.prod-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-transform: uppercase;
}

/* Text Content */
.prod-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.prod-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.prod-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Footer disclaimer */
.prod-footer {
  text-align: center;
  margin-top: 34px;
  color: #94a3b8;
  font-size: 12px;
}

/* =========================================================
   HOME — STORY / SPLIT / CAPABILITIES
========================================================= */
.home-story{
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  padding-top: 78px;
  padding-bottom: 54px;
}

.home-story-grid{
  align-items: center;
}

.home-story-media{
  position: relative;
}

.home-story-media img{
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
}

.story-badge{
  position: absolute;
  right: -24px;
  bottom: 32px;
  width: min(220px, 46%);
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(229,231,235,0.95);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 22px 20px;
  backdrop-filter: blur(14px);
}

.story-badge strong{
  display: block;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.story-badge span{
  display: block;
  color: #0f172a;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-title{
  max-width: 620px;
}

.story-kinetic{
  font-style: italic;
}

.story-lead{
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
}

.story-feature-cards{
  margin-top: 28px;
}

.story-mini{
  min-height: 162px;
}

.story-mini h3{
  font-size: 15px;
  font-weight: 900;
}

.story-mini p{
  line-height: 1.65;
}

/* split section */
.home-split{
  position: relative;
  background:
    radial-gradient(1000px 420px at 12% 0%, rgba(43,99,255,0.08), rgba(255,255,255,0) 60%),
    radial-gradient(900px 420px at 88% 100%, rgba(227,30,36,0.08), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  padding-top: 54px;
  padding-bottom: 54px;
}

.home-division-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.home-division-card{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 30px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-division-card--edge{
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 24px 80px rgba(43, 99, 255, 0.10);
  backdrop-filter: blur(18px);
}

.home-division-card--edge::before{
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,99,255,0.16), rgba(43,99,255,0) 68%);
  pointer-events: none;
}

.home-division-card--reach{
  background:
    linear-gradient(180deg, #111827 0%, #0b1220 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.24);
  color: #fff;
}

.home-division-card--reach::before{
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(227,30,36,0.30), rgba(227,30,36,0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

.home-division-top{
  margin-bottom: 22px;
}

.home-division-pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.home-division-card--edge .home-division-pill{
  background: rgba(43,99,255,0.10);
  color: var(--blue);
  border: 1px solid rgba(43,99,255,0.18);
}

.home-division-card--reach .home-division-pill{
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.home-division-type{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.home-division-card--reach .home-division-type{
  color: rgba(255,255,255,0.64);
}

.home-division-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.home-division-body{
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
}

.home-division-card--reach .home-division-body{
  color: rgba(255,255,255,0.82);
}

.home-division-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.home-division-list li{
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  font-weight: 700;
}

.home-division-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.home-division-card--reach .home-division-list li{
  color: rgba(255,255,255,0.92);
}

/* capabilities */
.home-capabilities{
  padding-top: 24px;
  padding-bottom: 72px;
}

.home-capabilities-wrap{
  background: #fff;
  border: 1px solid rgba(229,231,235,0.85);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.home-capabilities-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.capability-chip{
  background: rgba(15,23,42,0.03);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 20px;
  padding: 18px 18px 20px;
}

.capability-chip strong{
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
}

.capability-chip span{
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1100px){
  .home-division-grid,
  .home-capabilities-wrap{
    grid-template-columns: 1fr;
  }

  .story-badge{
    right: 20px;
    bottom: 20px;
    width: min(240px, 54%);
  }
}

@media (max-width: 980px){
  .home-story-media img{
    min-height: 420px;
  }

  .home-capabilities-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .story-badge{
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .home-division-card{
    min-height: auto;
    padding: 24px;
  }

  .home-capabilities-wrap{
    padding: 24px;
  }

  .home-capabilities-grid{
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .prod-media {
    height: 200px;
  }
}

/* ----------------------------
   OFFERINGS
---------------------------- */
.offerings{
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(247,250,252,1) 100%);
}

.offerings-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.offer-card{
  background: var(--panel);
  border: 1px solid rgba(229,231,235,0.8);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.offer-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(227, 30, 36, 0.12);
  color: var(--orange);
  font-weight: 900;
}

.offer-title{
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
}

.offer-body{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

/* ----------------------------
   PRODUCTS
---------------------------- */
.products {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.prod-card {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.prod-media {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f1f5f9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-media img { transform: scale(1.05); }

.prod-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-transform: uppercase;
}

.prod-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.prod-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.prod-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.prod-footer {
  text-align: center;
  margin-top: 34px;
  color: #94a3b8;
  font-size: 12px;
}

/* ----------------------------
   CONTACT
---------------------------- */
.contact--new{
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(227, 30, 36, 0.10) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(900px 450px at 80% 90%, rgba(43, 99, 255, 0.06) 0%, rgba(255,255,255,0) 60%);
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.contact-left{ padding: 10px 0; }

.contact-pill{
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(229,231,235,0.9);
  color: #0f172a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}

.contact-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.contact-lead{
  margin: 0 0 26px;
  color: var(--muted);
  max-width: 560px;
}

.contact-info{
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.info-card{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,231,235,0.85);
  box-shadow: var(--shadow-md);
}

.info-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.06);
}

.info-kicker{
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 900;
  color: #94a3b8;
}

.info-main{
  font-weight: 900;
  color: #0f172a;
  margin-top: 2px;
}

.info-sub{
  font-size: 12.5px;
  color: #94a3b8;
  margin-top: 2px;
}

.contact-right{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(229,231,235,0.85);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
}

.contact-form-new{
  display: grid;
  gap: 14px;
}

.field label{
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: #0f172a;
  margin: 0 0 8px;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  font: inherit;
  color: #334155;
  outline: none;
  padding: 14px 14px;
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(227, 30, 36, 0.45);
  box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.12);
}

.btn-enquiry{
  margin-top: 6px;
  width: 100%;
  padding: 16px 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(90deg, #B31218 0%, var(--orange) 55%, #F36A6E 100%);
  box-shadow: 0 22px 50px rgba(227, 30, 36, 0.22);
  border: 1px solid rgba(227, 30, 36, 0.20);
}

.form-note{
  margin: 0;
  margin-top: 2px;
  font-size: 12px;
  color: #94a3b8;
}

/* ----------------------------
   Page pager (Prev/Next)
---------------------------- */
.page-pager{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 0 56px;
}

.pager-link{
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  color: #0f172a;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.pager-link.next{ margin-left: auto; }
.pager-link:hover{ filter: brightness(0.99); }

/* ----------------------------
   Footer
---------------------------- */
.footer-new{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.6fr;
  gap: 46px;
  align-items: start;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo{
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-brandtext strong{
  display: block;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.05;
}

.footer-brandtext span{
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #94a3b8;
  margin-top: 3px;
}

.footer-blurb{
  margin: 0;
  max-width: 520px;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-col-title{
  font-size: 11px;
  letter-spacing: 0.30em;
  font-weight: 900;
  color: #94a3b8;
  margin-bottom: 14px;
}

.footer-col{ display: grid; gap: 10px; }

.footer-link{
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
}
.footer-link:hover{ color: #0f172a; }

.social{ display: grid; gap: 10px; }

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
}
.social-link:hover{ color: #0f172a; }

.footer-bottom{
  grid-column: 1 / -1;
  border-top: 1px solid rgba(229,231,235,0.75);
  padding-top: 16px;
  margin-top: 12px;
  color: #94a3b8;
  font-size: 13px;
}

/* ----------------------------
   Responsive
---------------------------- */
@media (max-width: 1100px){
  .offerings-grid{ grid-template-columns: repeat(2, 1fr); }
  .activation-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-new{ grid-template-columns: 1fr; }
  .partner-card{ grid-template-columns: 1fr; }
}

@media (max-width: 980px){
  .section{ padding: 72px 0; }

  .nav-toggle{ display: inline-flex; align-items:center; justify-content:center; }
  .nav{
    position: fixed;
    top: 74px;
    right: 4%;
    left: 4%;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(229,231,235,0.9);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 80;
  }
  .nav.is-open{ display: flex; }

  .nav-link{
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(15,23,42,0.03);
  }
  .nav-link.is-active::after{ display: none; }
  .btn-header{ width: 100%; }

  .hero-grid{ grid-template-columns: 1fr; gap: 34px; }

  .about-grid{ grid-template-columns: 1fr; gap: 30px; }
  .feature-cards{ grid-template-columns: 1fr; }

  .team-grid{ grid-template-columns: 1fr; }
  .team-photo{ height: 360px; }

  .service-card{
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 26px;
  }

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

@media (max-width: 560px){
  .header-inner{ height: 70px; }

  .hero{
    min-height: 78vh;
    padding: 64px 0;
  }

  .hero-title{
    font-size: 46px;
    line-height: 1.04;
  }

  .hero-cta .btn{ width: 100%; }

  .offerings-grid{ grid-template-columns: 1fr; }
  .activation-grid{ grid-template-columns: 1fr; }

  .products-grid{
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .prod-media{ height: 200px; }

  .contact-right{ padding: 18px; }
  .contact-title{ font-size: 46px; }

  .page-pager{
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 46px;
  }
  .pager-link.next{ margin-left: 0; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
}


/* ================================
   FOOTER SOCIAL ICONS
================================ */

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-social h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #8fa1b6;
    margin-bottom: 10px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-bottom: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: 0.2s ease;
}

.social-links a:hover {
    color: #e53935;
}

/* ICON SIZE CONTROL */
.social-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* =========================================================
   NAV DROPDOWN (Divisions)
========================================================= */
.nav-dd{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dd-toggle{
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dd-caret{
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
  opacity: 0.8;
}

.nav-dd-menu{
  position: absolute;
  top: calc(100% + 14px);
  left: -10px;
  min-width: 180px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(229,231,235,0.95);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(15,23,42,0.16);
  padding: 8px;
  display: none;
  z-index: 90;
}

.nav-dd.open .nav-dd-menu{ display: grid; gap: 4px; }

.nav-dd-item{
  text-decoration: none;
  color: #475569;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dd-item:hover{
  background: rgba(15,23,42,0.04);
  color: #0f172a;
}

.nav-dd.is-active .nav-dd-toggle{
  color: #0f172a;
}
.nav-dd.is-active .nav-dd-toggle::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-dd-item.is-active{
  background: rgba(227,30,36,0.08);
  color: #0f172a;
  border: 1px solid rgba(227,30,36,0.18);
}

/* Mobile: dropdown should be full width within the opened menu */
@media (max-width: 980px){
  .nav-dd{ width: 100%; }
  .nav-dd-toggle{ width: 100%; justify-content: space-between; padding: 10px 12px; border-radius: 14px; border: 1px solid rgba(229,231,235,0.9); background: rgba(15,23,42,0.02); }
  .nav-dd-menu{
    position: static;
    box-shadow: none;
    border-radius: 14px;
    padding: 6px;
    margin-top: 6px;
    border: 1px solid rgba(229,231,235,0.9);
  }
  .nav-dd.open .nav-dd-menu{ display: grid; }
  .nav-dd.is-active .nav-dd-toggle::after{ display: none; }
}



/* ================================
   FOOTER SOCIAL ICONS (FIXED)
================================ */
.social-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #64748b;
  font-weight: 700;
  font-size: 13.5px;
  padding: 6px 8px;
  border-radius: 12px;
  width: fit-content;
  transition: 0.18s ease;
}

.social-link:hover{
  color: #0f172a;
  background: rgba(15,23,42,0.03);
}

.social-ic{
  width: 22px;
  height: 22px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.06);
  flex: 0 0 22px;
  overflow: hidden;
}

.social-ic img{
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  display: block;
  object-fit: contain;
}

.social-name{ line-height: 1; }



/* Divisions landing actions */
.division-jump-actions{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}


/* =========================================================
   HERO RIGHT PANEL — MINIMAL CONNECT
========================================================= */
.hero-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-connect-minimal{
  width: min(380px, 100%);
  padding: 28px 26px;
  border-radius: 26px;
  background: rgba(10, 16, 28, 0.56);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.hero-connect-tag{
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-connect-heading{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  color: #fff;
}

.hero-connect-copy{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(230,235,242,0.84);
  max-width: 30ch;
}

.hero-connect-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-connect-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
}

.hero-connect-btn--primary{
  background: #e31e24;
  color: #fff;
  box-shadow: 0 10px 24px rgba(227, 30, 36, 0.22);
}

.hero-connect-btn--primary:hover{
  transform: translateY(-2px);
  background: #c9191f;
}

.hero-connect-btn--ghost{
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}

.hero-connect-btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
}

.hero-connect-socials{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero-connect-socials a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s ease;
}

.hero-connect-socials a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.18);
}

.hero-connect-socials img{
  width: 17px;
  height: 17px;
  object-fit: contain;
  display: block;
}

/* Mobile */
@media (max-width: 980px){
  .hero-right{
    justify-content: flex-start;
  }

  .hero-connect-minimal{
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 640px){
  .hero-connect-minimal{
    padding: 22px 20px;
    border-radius: 22px;
  }

  .hero-connect-buttons{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-connect-btn{
    width: 100%;
  }
}
