/* ============================================
   Pullely Consulting — Premium Swiss Design
   Elegant, modern, trustworthy
   ============================================ */

:root {
  /* Refined color palette — Swiss elegance */
  --navy: #0B1D33;
  --navy-light: #132D4F;
  --slate: #1E3A5F;
  --blue: #2C5F8A;
  --sky: #4A90C4;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light-gray: #EEF1F6;
  --medium-gray: #8B95A5;
  --dark-gray: #4A5568;
  --border: #E2E8F0;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --max-width: 1160px;
  --nav-height: 76px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

/* --- WhatsApp Floating Action Button --- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-fab:hover {
  color: #FFFFFF; transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
}
.wa-fab:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px;
}
@media (max-width: 560px) {
  .wa-fab { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .wa-fab svg { width: 22px; height: 22px; }
}
/* When exit-intent or cookie banner is open, lift the FAB above */
.exit-intent--visible ~ .wa-fab,
body:has(.cookie-banner) .wa-fab { z-index: 8000; }

/* --- Skip to content (accessibility) --- */
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 600;
  z-index: 10001; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px; outline: 2px solid var(--gold); outline-offset: 2px;
  color: var(--white);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--navy); line-height: 1.7; background: var(--white); padding-top: var(--nav-height); }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; color: var(--navy); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--dark-gray); }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.section--dark p { opacity: 0.8; }
.section--light { background: var(--off-white); }
.text-center { text-align: center; }

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

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex; align-items: center;
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
}

.nav__logo {
  display: flex; align-items: center;
}
.nav__logo-img { height: 38px; width: auto; }
.nav__logo span { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 36px; }

.nav__link {
  font-size: 0.88rem; font-weight: 500; color: var(--dark-gray);
  letter-spacing: 0.01em; position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--transition);
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link:hover { color: var(--navy); }

.nav__link--partner {
  display: inline-flex; align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--dark-gray);
  transition: border-color var(--transition), color var(--transition);
}
.nav__link--partner::after { display: none; }
.nav__link--partner:hover {
  border-color: var(--navy); color: var(--navy); background: var(--off-white);
}

.nav__cta {
  display: inline-block; padding: 10px 26px;
  background: var(--navy); color: var(--white) !important;
  border-radius: 8px; font-weight: 600; font-size: 0.88rem;
  transition: all var(--transition);
}
.nav__cta:hover { background: var(--slate); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Language Dropdown */
.nav__lang-wrap {
  position: relative; display: inline-block;
}
.nav__lang-btn {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--medium-gray); background: none; cursor: pointer;
  border: 1.5px solid var(--border); padding: 5px 28px 5px 12px; border-radius: 6px;
  letter-spacing: 0.05em; appearance: none;
}
.nav__lang-btn::after {
  content: '\25BE'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 0.7rem; color: var(--medium-gray); pointer-events: none;
}
.nav__lang-btn:hover { color: var(--navy); border-color: var(--navy); }
.nav__lang-drop {
  display: none; position: absolute; top: calc(100% + 6px); right: 0; min-width: 100px;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: var(--shadow-md); overflow: hidden; z-index: 100;
}
.nav__lang-wrap:hover .nav__lang-drop,
.nav__lang-wrap:focus-within .nav__lang-drop,
.nav__lang-wrap.open .nav__lang-drop { display: block; }
.nav__lang-drop a {
  display: block; padding: 10px 16px; font-size: 0.85rem; font-weight: 500;
  color: var(--dark-gray); transition: background var(--transition);
}
.nav__lang-drop a:hover { background: var(--off-white); color: var(--navy); }
.nav__lang-drop a.active { color: var(--gold); font-weight: 600; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 1px; }

/* --- Buttons (editorial) --- */
.btn {
  display: inline-block; padding: 14px 32px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
  border-radius: 2px; cursor: pointer; transition: all var(--transition);
  border: none; text-align: center; letter-spacing: 0.02em;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--slate); color: var(--white); }

.btn--gold {
  background: transparent; color: var(--navy);
  border-bottom: 2px solid var(--gold); border-radius: 0;
  padding: 10px 4px; font-weight: 600;
}
.btn--gold:hover { color: var(--gold); border-bottom-color: var(--navy); }

.btn--outline {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy); border-radius: 2px;
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-dark { background: transparent; color: var(--navy); border: 1px solid var(--border); border-radius: 2px; }
.btn--outline-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* --- Hero (editorial, photo-forward) --- */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center;
  background: var(--white); color: var(--navy); overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.92) 100%),
    linear-gradient(135deg, #E8EEF6 0%, #F8F9FC 50%, #F4EEE0 100%);
}

/* Subtle alpine-skyline silhouette (SVG inline, no external request) */
.hero__bg::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'><path fill='%230b1d33' fill-opacity='0.07' d='M0,200 L0,140 L80,100 L140,130 L210,80 L290,110 L360,60 L430,90 L490,50 L560,85 L640,35 L720,75 L790,45 L860,90 L940,60 L1010,95 L1080,70 L1150,100 L1230,65 L1300,95 L1370,75 L1440,110 L1440,200 Z'/><path fill='%23c9a84c' fill-opacity='0.15' d='M0,200 L0,170 L120,150 L240,165 L360,145 L480,160 L600,140 L720,155 L840,140 L960,160 L1080,145 L1200,165 L1320,150 L1440,160 L1440,200 Z'/></svg>");
  background-size: cover; background-position: bottom center; background-repeat: no-repeat;
  pointer-events: none;
}
/* Horizon line just above skyline */
.hero__bg::after {
  content: ''; position: absolute; bottom: 28%; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(11,29,51,0.12), transparent);
}

.hero__content { position: relative; z-index: 2; max-width: 720px; padding: 60px 0; }

.hero__tag {
  display: inline-block; padding: 6px 14px; margin-bottom: 28px;
  border-bottom: 1px solid var(--gold);
  font-size: 0.8rem; font-weight: 600;
  color: var(--dark-gray); letter-spacing: 0.12em; text-transform: uppercase;
  background: none;
}

.hero h1 {
  color: var(--navy); margin-bottom: 28px; font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.1;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic; font-weight: 400; color: var(--navy);
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
}

.hero__text {
  font-size: 1.1rem; line-height: 1.75; color: var(--dark-gray);
  margin-bottom: 40px; max-width: 560px; font-weight: 400;
}

.hero__buttons { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* Decorative right side element */
.hero__visual {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 45%; max-width: 520px; z-index: 1; opacity: 0.06;
  font-size: 280px; text-align: center; line-height: 1;
  font-family: var(--font-heading); font-weight: 800; color: var(--white);
}

/* Animated orb glow */
.hero__orb {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: 720px; height: 720px; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at center, rgba(201,168,76,0.22) 0%, rgba(201,168,76,0.08) 35%, rgba(201,168,76,0) 65%);
  animation: orbPulse 9s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.85; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

/* Bridge connector line (CH ↔ IN) */
.hero__connector {
  position: absolute; right: 6%; top: 64%;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.15em;
  text-transform: uppercase; z-index: 2;
}
.hero__connector::before, .hero__connector::after {
  content: ''; display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
}
@media (max-width: 1100px) { .hero__connector, .hero__orb { display: none; } }

/* --- Stats Bar (editorial, restrained) --- */
.stats {
  background: var(--off-white);
  padding: 72px 0; border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 1000px; margin: 0 auto;
}
.stat { text-align: left; padding: 0 8px; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 10%;
  height: 80%; width: 1px; background: var(--border);
}
.stat__number {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 600;
  color: var(--navy); line-height: 1; letter-spacing: -0.02em;
}
.stat__number span { color: var(--medium-gray); font-weight: 400; }
.stat__label {
  font-size: 0.82rem; color: var(--dark-gray);
  margin: 14px 0 0; font-weight: 400;
  line-height: 1.5; padding-left: 8px;
}
.stat__accent {
  display: block; width: 24px; height: 1px; margin: 12px 0 0 8px;
  background: var(--gold);
}

/* --- Network Highlights (Homepage) --- */
.network-row { padding: 100px 0; background: var(--off-white); }
.network-row__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 960px; margin: 0 auto;
}
.network-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.network-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.network-card__img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center top;
  display: block;
}
.network-card__body { padding: 24px 28px 28px; }
.network-card__label {
  font-size: 0.74rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px;
}
.network-card__name {
  font-family: var(--font-heading); font-size: 1.18rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.network-card__desc { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; margin: 0; }

/* --- Case Study Teaser --- */
.case-study {
  max-width: 960px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 1fr;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.case-study::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--sky));
}
.case-study__body { padding: 56px 48px; color: var(--white); }
.case-study__tag {
  display: inline-block; padding: 5px 14px; margin-bottom: 20px;
  background: rgba(201,168,76,0.15); color: var(--gold);
  border-radius: 100px; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.case-study__body h3 {
  color: var(--white); font-size: 1.6rem; margin-bottom: 14px;
}
.case-study__body p {
  color: rgba(255,255,255,0.78); font-size: 0.98rem;
  line-height: 1.7; margin-bottom: 24px;
}
.case-study__meta {
  display: flex; gap: 32px; font-size: 0.85rem;
  color: rgba(255,255,255,0.6); border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}
.case-study__meta-value {
  display: block; color: var(--gold); font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 2px;
}
.case-study__side {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(74,144,196,0.1));
  padding: 56px 40px; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  position: relative;
}
.case-study__side::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.12), transparent 70%);
}
.case-study__highlight {
  position: relative; display: flex; flex-direction: column;
  align-items: center; gap: 14px; max-width: 260px;
}
.case-study__highlight-badge {
  display: inline-block; padding: 8px 18px;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px; color: var(--gold);
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.case-study__highlight-text {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--white); line-height: 1.4;
}
.case-study__highlight-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em;
}

/* --- Exit Intent Modal --- */
.exit-intent {
  position: fixed; inset: 0; z-index: 10010;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none; padding: 20px;
}
.exit-intent--visible { opacity: 1; pointer-events: auto; }
.exit-intent__backdrop {
  position: absolute; inset: 0; background: rgba(11, 29, 51, 0.6);
  backdrop-filter: blur(2px);
}
.exit-intent__panel {
  position: relative; background: var(--white);
  border-radius: 2px; padding: 48px 40px 36px;
  max-width: 520px; width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.exit-intent--visible .exit-intent__panel { transform: translateY(0); }
.exit-intent__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--medium-gray);
  padding: 4px 10px;
}
.exit-intent__close:hover { color: var(--navy); }
.exit-intent__eyebrow {
  font-family: var(--font-heading); font-size: 0.76rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 10px;
}
.exit-intent__title {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin: 0 0 12px; line-height: 1.25;
}
.exit-intent__body {
  color: var(--dark-gray); font-size: 0.98rem;
  line-height: 1.6; margin-bottom: 24px;
}
.exit-intent__form { display: flex; flex-direction: column; gap: 14px; }
.exit-intent__row { display: flex; gap: 10px; flex-wrap: wrap; }
.exit-intent__input {
  flex: 1; min-width: 200px;
  padding: 13px 16px; border: 1px solid var(--border);
  border-radius: 2px; font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color var(--transition);
}
.exit-intent__input:focus { border-color: var(--navy); }
.exit-intent__submit { padding: 13px 28px; white-space: nowrap; }
.exit-intent__consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.82rem; color: var(--medium-gray);
  line-height: 1.5; cursor: pointer;
}
.exit-intent__consent input { margin-top: 3px; }
.exit-intent__dismiss {
  margin-top: 16px; background: none; border: none;
  color: var(--medium-gray); font-size: 0.85rem; cursor: pointer;
  font-family: var(--font-body); text-decoration: underline;
  text-underline-offset: 3px; display: block;
}
.exit-intent__dismiss:hover { color: var(--navy); }

@media (max-width: 560px) {
  .exit-intent__panel { padding: 36px 24px 24px; }
  .exit-intent__title { font-size: 1.35rem; }
}

/* --- Social share buttons on articles --- */
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1px solid var(--border);
  background: var(--white); color: var(--dark-gray);
  font-family: var(--font-body); font-size: 0.85rem;
  border-radius: 2px; cursor: pointer; text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.share-btn:hover { border-color: var(--navy); color: var(--navy); }
.share-btn svg { flex-shrink: 0; }

/* --- Testimonials section (skeleton, ready for real client quotes) --- */
.testimonials {
  padding: 96px 0; background: var(--off-white);
}
.testimonials__intro {
  max-width: 640px; margin: 0 auto 48px; text-align: center;
}
.testimonials__intro h2 { margin-bottom: 12px; }
.testimonials__placeholder {
  max-width: 720px; margin: 0 auto;
  padding: 56px 40px; background: var(--white);
  border: 1px dashed var(--border); border-radius: 2px;
  text-align: center;
}
.testimonials__placeholder-eyebrow {
  font-family: var(--font-heading); font-size: 0.76rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.testimonials__placeholder-quote {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400;
  font-style: italic; color: var(--navy); line-height: 1.5;
  margin: 0 0 20px; max-width: 540px; margin-left: auto; margin-right: auto;
}
.testimonials__placeholder-meta {
  font-size: 0.9rem; color: var(--medium-gray);
}
.testimonials__placeholder-meta a {
  color: var(--navy); text-decoration: underline; text-underline-offset: 3px;
}

/* --- Insights listing --- */
.insights-item {
  padding: 32px 0; border-top: 1px solid var(--border);
}
.insights-item:first-of-type { border-top: none; padding-top: 0; }
.insights-item__date {
  display: block; font-family: var(--font-heading);
  font-size: 0.76rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px;
}
.insights-item__title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 500;
  color: var(--navy); line-height: 1.25; margin: 0 0 12px;
}
.insights-item__title a { color: inherit; transition: color var(--transition); }
.insights-item__title a:hover { color: var(--gold); }
.insights-item__desc {
  font-size: 1rem; color: var(--dark-gray);
  line-height: 1.7; margin: 0 0 12px;
}
.insights-item__meta {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--medium-gray);
}

/* --- News / Activity Timeline --- */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.news-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.news-item:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.news-item__date {
  display: block;
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.news-item__title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; line-height: 1.4;
}
.news-item__text { font-size: 0.88rem; color: var(--medium-gray); line-height: 1.6; margin: 0; }

/* Responsive for new sections */
@media (max-width: 960px) {
  .case-study { grid-template-columns: 1fr; }
  .case-study__side { padding: 40px 32px; }
  .case-study__body { padding: 40px 32px; }
  .news-grid { grid-template-columns: 1fr; }
  .network-row__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(3)::before, .stat:nth-child(4)::before { display: none; }
}
@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- Section Headers --- */
.section__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section__label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section__header h2 { margin-bottom: 16px; }
.section__header p { color: var(--medium-gray); font-size: 1.05rem; }

/* --- Service Cards (editorial) --- */
.card {
  background: var(--white); border: none;
  border-top: 1px solid var(--border);
  border-radius: 0; padding: 40px 0;
  transition: background var(--transition);
}
.card:hover { background: var(--off-white); }

.card__number {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500;
  color: var(--gold); margin-bottom: 16px; line-height: 1;
  letter-spacing: 0.15em;
}

.card h3 { margin-bottom: 14px; font-weight: 500; font-size: 1.4rem; }
.card p { color: var(--dark-gray); font-size: 0.96rem; margin-bottom: 0; line-height: 1.7; }

/* --- Client Segments (editorial) --- */
.segment {
  background: var(--white); border-radius: 2px; padding: 48px;
  border: 1px solid var(--border); position: relative;
}
.segment::before { display: none; }
.segment__flag { font-size: 1.8rem; margin-bottom: 20px; opacity: 0.9; }
.segment h3 { margin-bottom: 14px; font-weight: 500; font-size: 1.5rem; }
.segment p { color: var(--dark-gray); line-height: 1.7; }

/* --- Team Profiles --- */
.profile { text-align: center; }
.profile__image {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  margin: 0 auto 20px; border: 3px solid var(--light-gray);
  transition: border-color var(--transition);
}
.profile:hover .profile__image { border-color: var(--gold); }
.profile__name { font-size: 1.2rem; margin-bottom: 2px; }
.profile__title { color: var(--gold); font-weight: 500; margin-bottom: 16px; font-size: 0.9rem; }
.profile__bio { color: var(--medium-gray); font-size: 0.92rem; line-height: 1.7; }

/* --- FAQ --- */
.faq__item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq__question {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--navy);
}
.faq__question::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform var(--transition); }
.faq__item.active .faq__question::after { content: '\2212'; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--medium-gray); line-height: 1.7; }
.faq__item.active .faq__answer { max-height: 500px; padding-top: 12px; }

/* --- Newsletter --- */
.newsletter { background: var(--slate); color: var(--white); padding: 56px 0; }
.newsletter h3 { color: var(--white); margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.newsletter__form { display: flex; gap: 12px; max-width: 440px; }
.newsletter__input { flex: 1; padding: 14px 18px; border: none; border-radius: 8px; font-size: 0.95rem; background: rgba(255,255,255,0.1); color: var(--white); }
.newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__input:focus { outline: none; background: rgba(255,255,255,0.15); }

/* --- Contact Form --- */
.form { max-width: 700px; margin: 0 auto; }
.form__group { margin-bottom: 22px; }
.form__label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.88rem; color: var(--navy); }
.form__label .required { color: #D4483B; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 13px 18px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem;
  transition: all var(--transition); background: var(--white);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(44, 95, 138, 0.1);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__radio-group { display: flex; flex-direction: column; gap: 10px; }
.form__radio-group label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.92rem; }
.form__checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--medium-gray); }
.form__checkbox input { margin-top: 4px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* --- Footer --- */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer__brand { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer__brand span { color: var(--gold); }
.footer__desc { font-size: 0.88rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 16px; letter-spacing: 0.03em; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem;
}
.footer__legal a { color: rgba(255,255,255,0.4); margin-left: 24px; }
.footer__legal a:hover { color: var(--gold); }

/* --- Footer newsletter --- */
.footer__newsletter { margin-top: 20px; max-width: 400px; }
.footer__newsletter-title {
  color: var(--white); font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 600; margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.footer__newsletter-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  line-height: 1.5; margin: 0 0 12px;
}
.footer__newsletter-row { display: flex; gap: 8px; margin-bottom: 10px; }
.footer__newsletter-input {
  flex: 1; min-width: 0;
  padding: 10px 14px; border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05); color: var(--white);
  border-radius: 2px; font-size: 0.85rem; font-family: var(--font-body);
  transition: border-color var(--transition), background var(--transition);
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer__newsletter-input:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.footer__newsletter-btn {
  padding: 10px 18px; background: var(--gold); color: var(--navy);
  border: none; border-radius: 2px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: background var(--transition);
}
.footer__newsletter-btn:hover:not(:disabled) { background: var(--gold-light); }
.footer__newsletter-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.footer__newsletter-consent {
  display: flex; gap: 8px; font-size: 0.72rem;
  color: rgba(255,255,255,0.5); line-height: 1.5;
  align-items: flex-start; cursor: pointer;
}
.footer__newsletter-consent input { margin-top: 3px; flex-shrink: 0; }
.footer__newsletter-consent a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.footer__newsletter-consent a:hover { color: var(--gold); }
.footer__newsletter-status {
  font-size: 0.78rem; margin: 10px 0 0; min-height: 1em; color: rgba(255,255,255,0.6);
}
.footer__newsletter-status--ok { color: #4ade80; }
.footer__newsletter-status--err { color: #f87171; }

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

/* --- Exit-intent modal --- */
.exit-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(11, 29, 51, 0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity 0.3s ease;
}
.exit-modal-overlay--visible { opacity: 1; }
.exit-modal {
  background: var(--white); color: var(--navy);
  max-width: 440px; width: 100%; padding: 40px 32px 32px;
  border-radius: 2px; position: relative;
  box-shadow: 0 24px 60px rgba(11,29,51,0.25);
  text-align: center;
  transform: translateY(12px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.exit-modal-overlay--visible .exit-modal { transform: translateY(0); }
.exit-modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 32px; height: 32px; border: none; background: none;
  font-size: 1.6rem; line-height: 1; color: var(--medium-gray);
  cursor: pointer; border-radius: 2px;
}
.exit-modal__close:hover { color: var(--navy); background: var(--off-white); }
.exit-modal__badge {
  display: inline-block; padding: 4px 12px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); margin-bottom: 16px;
}
.exit-modal__title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600;
  color: var(--navy); margin: 0 0 12px; line-height: 1.2;
}
.exit-modal__desc {
  font-size: 0.95rem; color: var(--dark-gray);
  line-height: 1.6; margin: 0 0 24px;
}
.exit-modal__form {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.exit-modal__input {
  flex: 1; min-width: 0;
  padding: 12px 14px; border: 1px solid var(--border);
  background: var(--white); color: var(--navy);
  border-radius: 2px; font-size: 0.95rem; font-family: var(--font-body);
}
.exit-modal__input:focus {
  outline: none; border-color: var(--navy);
}
.exit-modal__btn {
  padding: 12px 22px; background: var(--navy); color: var(--white);
  border: none; border-radius: 2px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.exit-modal__btn:hover:not(:disabled) { background: var(--slate); }
.exit-modal__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.exit-modal__status {
  font-size: 0.82rem; margin: 0 0 12px; min-height: 1em;
  color: var(--medium-gray);
}
.exit-modal__status--ok { color: #059669; }
.exit-modal__status--err { color: #dc2626; }
.exit-modal__dismiss {
  background: none; border: none; color: var(--medium-gray);
  font-size: 0.82rem; cursor: pointer; text-decoration: underline;
  font-family: var(--font-body); padding: 4px;
}
.exit-modal__dismiss:hover { color: var(--navy); }

@media (max-width: 560px) {
  .exit-modal { padding: 32px 24px 24px; }
  .exit-modal__form { flex-direction: column; }
  .exit-modal__btn { width: 100%; }
}

/* --- B2B Login --- */
.b2b-login {
  max-width: 440px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.b2b-login__icon { color: var(--gold); margin-bottom: 20px; }
.b2b-login h3 { margin-bottom: 12px; }
.b2b-login__subtitle { font-size: 0.88rem; color: var(--medium-gray); margin-bottom: 28px; }
.b2b-login__form { display: flex; flex-direction: column; gap: 14px; }
.b2b-login__input { text-align: left; font-size: 1rem; letter-spacing: normal; text-transform: none; }
.b2b-login__btn { width: 100%; padding: 15px; }
.b2b-login__message,
.b2b-login__error {
  margin-top: 16px; padding: 12px 16px; border-radius: 8px;
  background: #FEF2F2; color: #D4483B; font-size: 0.88rem; font-weight: 500;
}
.b2b-login__message[hidden] { display: none !important; }
.b2b-login__message--success {
  background: #ECFDF3; color: #047857;
}
.b2b-login__links {
  margin-top: 18px; display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.b2b-login__link {
  color: var(--blue); font-size: 0.84rem; font-weight: 500;
}
.b2b-login__help { font-size: 0.82rem; color: var(--medium-gray); margin-top: 20px; margin-bottom: 0; }
.b2b-login__help a { color: var(--blue); font-weight: 500; }

/* --- B2B Portal --- */
.b2b-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; flex-wrap: wrap; gap: 12px;
}
.b2b-welcome {
  font-size: 0.92rem; color: var(--medium-gray);
}
.b2b-welcome strong { color: var(--gold); font-weight: 600; }
.b2b-logout {
  font-size: 0.82rem; color: var(--medium-gray); cursor: pointer;
  background: none; border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 16px; font-family: var(--font-body); transition: all var(--transition);
}
.b2b-logout:hover { border-color: var(--navy); color: var(--navy); }

.b2b-filters {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.b2b-filters__btns {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.b2b-search {
  position: relative; width: 100%; max-width: 420px;
}
.b2b-search__input {
  width: 100%; padding: 12px 18px 12px 44px; border-radius: 100px;
  font-size: 0.9rem; font-family: var(--font-body);
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--dark-gray); transition: border-color var(--transition);
  outline: none; box-sizing: border-box;
}
.b2b-search__input:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,29,51,0.08);
}
.b2b-search__icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--medium-gray); pointer-events: none;
}
.b2b-toolbar {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; width: 100%;
}
.b2b-sort {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.b2b-sort__label {
  font-size: 0.82rem; font-weight: 600; color: var(--medium-gray); font-family: var(--font-body);
}
.b2b-sort__select {
  padding: 8px 14px; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer;
  background: var(--white); color: var(--dark-gray); border: 1.5px solid var(--border);
  outline: none; transition: border-color var(--transition);
}
.b2b-sort__select:focus { border-color: var(--navy); }
.b2b-toolbar__right {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
/* Card top actions (favorite + compare) */
.b2b-card__top-actions {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px 0;
}
.b2b-card__fav {
  background: none; border: none; cursor: pointer; color: var(--medium-gray);
  padding: 6px; border-radius: 50%; transition: color 0.2s, background 0.2s;
  display: flex; align-items: center;
}
.b2b-card__fav:hover { color: #e74c3c; background: rgba(231,76,60,0.08); }
.b2b-card__fav.active { color: #e74c3c; }
.b2b-card__cmp {
  font-size: 0.75rem; font-weight: 600; color: var(--medium-gray);
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  font-family: var(--font-body);
}
.b2b-card__cmp input { accent-color: var(--navy); cursor: pointer; }
.b2b-card__cmp.active { color: var(--navy); }
.b2b-fav-toggle svg { vertical-align: -2px; margin-right: 4px; }
/* Compare modal */
.b2b-compare-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fade-in-modal 0.25s ease;
}
@keyframes fade-in-modal { from { opacity: 0; } to { opacity: 1; } }
.b2b-compare-modal {
  background: var(--white); border-radius: 16px; max-width: 900px; width: 100%;
  max-height: 85vh; overflow: auto; box-shadow: var(--shadow-lg);
}
.b2b-compare-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.b2b-compare-header h2 { margin: 0; font-size: 1.2rem; }
.b2b-compare-close {
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--medium-gray); padding: 4px 8px; border-radius: 8px;
}
.b2b-compare-close:hover { background: var(--light-gray); }
.b2b-compare-table-wrap { padding: 16px 24px 24px; overflow-x: auto; }
.b2b-compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.b2b-compare-table th { font-weight: 700; padding: 10px; text-align: center; border-bottom: 2px solid var(--border); }
.b2b-compare-table td { padding: 10px; border-bottom: 1px solid var(--border); text-align: center; vertical-align: top; }
.b2b-compare-table td:first-child { text-align: left; white-space: nowrap; color: var(--medium-gray); }
.b2b-compare-table img { display: block; margin: 0 auto; }
.b2b-filters__btn {
  padding: 9px 22px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; transition: all var(--transition);
  background: var(--white); color: var(--dark-gray); border: 1.5px solid var(--border);
}
.b2b-filters__btn:hover { border-color: var(--navy); color: var(--navy); }
.b2b-filters__btn.active {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

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

.b2b-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all var(--transition);
}
.b2b-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.b2b-card__image {
  width: 100%; aspect-ratio: 4/3; object-fit: contain;
  background: #fff; padding: 16px;
  border-bottom: 1px solid var(--border);
}
.b2b-card__body { padding: 24px; }
.b2b-card__category {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.b2b-card__name { font-size: 1.1rem; margin-bottom: 8px; }
.b2b-card__desc { font-size: 0.88rem; color: var(--medium-gray); margin-bottom: 16px; }

.b2b-card__specs {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 12px;
  font-size: 0.82rem; margin-bottom: 16px;
  padding: 14px; background: var(--off-white); border-radius: 10px;
}
.b2b-card__specs dt { font-weight: 600; color: var(--navy); }
.b2b-card__specs dd { color: var(--medium-gray); margin: 0; }

.b2b-card__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.b2b-card__badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em;
  background: rgba(201, 168, 76, 0.12); color: var(--gold);
}

.b2b-card__actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.b2b-card__actions .btn { flex: 1; min-width: 0; padding: 11px 12px; font-size: 0.82rem; text-align: center; }

.btn--whatsapp {
  background: #25D366; color: #fff; border: none; border-radius: 8px;
}
.btn--whatsapp:hover { background: #1EBE5A; color: #fff; transform: translateY(-1px); }

.btn--pdf {
  background: transparent; color: var(--dark-gray); border: 1.5px solid var(--border); border-radius: 8px;
}
.btn--pdf:hover { border-color: var(--navy); color: var(--navy); }

.b2b-empty {
  text-align: center; padding: 60px 20px; color: var(--medium-gray);
  grid-column: 1 / -1;
}

/* B2B Loading State */
.b2b-loading {
  display: flex; justify-content: center; align-items: center;
  padding: 80px 20px; grid-column: 1 / -1;
}
.b2b-spinner {
  width: 36px; height: 36px; border: 3px solid var(--border);
  border-top-color: var(--gold); border-radius: 50%;
  animation: b2b-spin 0.8s linear infinite;
}
@keyframes b2b-spin { to { transform: rotate(360deg); } }

/* Focus styles for accessibility */
.nav__lang-btn:focus-visible,
.b2b-filters__btn:focus-visible,
.faq__question:focus-visible,
.btn:focus-visible,
.btn--pdf:focus-visible,
.b2b-card__fav:focus-visible,
.b2b-sort__select:focus-visible,
.b2b-search__input:focus-visible,
.b2b-compare-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__orb { animation: none; opacity: 0.6; }
  .fade-in { opacity: 1; transform: none; }
}

/* --- Contact Grid --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 64px;
  max-width: 1000px; margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .b2b-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 75vh; }
  .hero__visual { display: none; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats__grid { gap: 32px; }
  .nav__links {
    display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
  }
  .nav__links.active { display: flex; }
  .nav__hamburger { display: flex; }
  .b2b-login { padding: 36px 24px; }
  .b2b-grid { grid-template-columns: 1fr; }
  .b2b-card__actions { flex-direction: column; }
  .b2b-card__actions .btn { flex: none; width: 100%; padding: 14px 12px; font-size: 0.9rem; min-height: 48px; }
  .b2b-header { flex-direction: column; align-items: flex-start; }
  .b2b-filters { justify-content: flex-start; }
  .b2b-toolbar { flex-direction: column; }
  .b2b-filters__btns { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .b2b-filters__btn { flex-shrink: 0; min-height: 44px; }
  .b2b-search { max-width: 100%; }
  .b2b-sort { justify-content: center; }
  .b2b-sort__select { min-height: 44px; }
  .newsletter__form { flex-direction: column; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { text-align: center; }
  .section { padding: 64px 0; }
  .segment { padding: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__tag { font-size: 0.72rem; }
  .cookie-banner__content { flex-direction: column; text-align: center; }
}

/* --- Cookie Consent Banner (editorial) --- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 9999;
  background: var(--white); color: var(--navy);
  padding: 20px 24px; border: 1px solid var(--border);
  border-radius: 2px; box-shadow: 0 12px 40px rgba(11,29,51,0.15);
  max-width: 1100px; margin: 0 auto;
  animation: cookie-slide-up 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner--hidden { transform: translateY(120%); opacity: 0; }
.cookie-banner__content {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__content p {
  margin: 0; font-size: 0.85rem; line-height: 1.5; flex: 1; min-width: 240px;
  color: var(--dark-gray);
}
.cookie-banner__content a { color: var(--navy); text-decoration: underline; }
.cookie-banner__content a:hover { color: var(--gold); }
.cookie-banner__actions {
  display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}
.cookie-banner__btn { flex-shrink: 0; white-space: nowrap; padding: 10px 20px; font-size: 0.85rem; border-radius: 2px; }
.cookie-banner__btn--decline {
  background: transparent; color: var(--dark-gray);
  border: 1px solid var(--border);
}
.cookie-banner__btn--decline:hover {
  border-color: var(--navy); color: var(--navy);
}
.cookie-banner__btn--accept {
  background: var(--navy); color: var(--white);
  border: 1px solid var(--navy);
}
.cookie-banner__btn--accept:hover {
  background: var(--slate); color: var(--white);
}
.cookie-banner__btn--customise {
  background: transparent; color: var(--navy);
  border: 1px solid var(--border);
}
.cookie-banner__btn--customise:hover {
  border-color: var(--navy); background: var(--off-white);
}

/* Preferences panel (granular consent) */
.cookie-banner__prefs {
  width: 100%; padding: 4px 0 0;
}
.cookie-banner__prefs-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--navy); margin: 0 0 12px;
}
.cookie-banner__category {
  padding: 12px 0; border-top: 1px solid var(--border);
}
.cookie-banner__category:first-of-type { border-top: none; padding-top: 4px; }
.cookie-banner__category-head {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.cookie-banner__category-head input { cursor: pointer; accent-color: var(--gold); width: 16px; height: 16px; }
.cookie-banner__category-head input[disabled] { cursor: not-allowed; opacity: 0.6; }
.cookie-banner__category-title {
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
}
.cookie-banner__category-desc {
  margin: 4px 0 0 26px; font-size: 0.8rem;
  color: var(--medium-gray); line-height: 1.5;
}
.cookie-banner__btn--save {
  background: var(--navy); color: var(--white);
  border: 1px solid var(--navy);
}
.cookie-banner__btn--save:hover { background: var(--slate); }

@media (max-width: 560px) {
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
}
@keyframes cookie-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* --- B2B Chat Widget --- */
.b2b-chat-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: #fff; border: none;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.b2b-chat-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(201,168,76,0.5); }
.b2b-chat-fab svg { width: 26px; height: 26px; }
.b2b-chat-badge {
  position: absolute; top: -4px; right: -4px;
  background: #D4483B; color: #fff; font-size: 0.7rem; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.b2b-chat-panel {
  position: fixed; bottom: 92px; right: 24px; z-index: 1001;
  width: 380px; max-height: 520px;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  display: none; flex-direction: column;
  overflow: hidden;
}
.b2b-chat-panel.open { display: flex; }

.b2b-chat-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--navy); color: #fff;
  border-radius: 16px 16px 0 0;
}
.b2b-chat-header h4 { margin: 0; font-size: 0.95rem; font-weight: 600; }
.b2b-chat-header button {
  background: none; border: none; color: #fff; cursor: pointer;
  font-size: 1.2rem; padding: 0; line-height: 1;
}

.b2b-chat-body {
  flex: 1; overflow-y: auto; padding: 16px 20px;
  max-height: 380px;
}

.b2b-chat-search {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.85rem; margin-bottom: 16px;
  outline: none;
}
.b2b-chat-search:focus { border-color: var(--gold); }

.b2b-chat-faq-group { margin-bottom: 16px; }
.b2b-chat-faq-group h5 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold); margin-bottom: 8px;
}

.b2b-chat-faq-q {
  padding: 10px 0; cursor: pointer; font-size: 0.88rem;
  font-weight: 500; color: var(--navy);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.b2b-chat-faq-q:hover { color: var(--gold); }
.b2b-chat-faq-q::after { content: '+'; font-size: 1.1rem; color: var(--medium-gray); }
.b2b-chat-faq-q.active::after { content: '\2212'; }

.b2b-chat-faq-a {
  display: none; padding: 8px 0 12px; font-size: 0.84rem;
  color: var(--dark-gray); line-height: 1.55;
}
.b2b-chat-faq-q.active + .b2b-chat-faq-a { display: block; }

.b2b-chat-divider {
  text-align: center; font-size: 0.8rem; color: var(--medium-gray);
  margin: 20px 0 12px; font-weight: 600;
}

.b2b-chat-messages { margin-bottom: 12px; }
.b2b-chat-msg {
  padding: 8px 12px; border-radius: 10px; margin-bottom: 6px;
  font-size: 0.84rem; max-width: 85%; line-height: 1.4;
}
.b2b-chat-msg--user {
  background: rgba(201,168,76,0.12); color: var(--navy);
  margin-left: auto;
}
.b2b-chat-msg--admin {
  background: var(--light-gray); color: var(--navy);
}
.b2b-chat-msg-time {
  font-size: 0.7rem; color: var(--medium-gray); margin-top: 2px;
}

.b2b-chat-input {
  padding: 12px 20px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: flex-end;
}
.b2b-chat-input textarea {
  flex: 1; resize: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; font-size: 0.85rem;
  min-height: 36px; max-height: 80px; font-family: inherit;
  outline: none;
}
.b2b-chat-input textarea:focus { border-color: var(--gold); }
.b2b-chat-input button {
  background: var(--gold); color: #fff; border: none;
  border-radius: 8px; padding: 8px 16px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; white-space: nowrap;
}
.b2b-chat-input button:hover { background: #b8953f; }

.b2b-chat-success {
  text-align: center; padding: 8px; font-size: 0.82rem;
  color: #047857; background: #ECFDF3; border-radius: 8px;
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  .b2b-chat-panel { width: calc(100vw - 32px); right: 16px; bottom: 84px; }
  .b2b-chat-fab { bottom: 16px; right: 16px; }
}

/* --- B2B Admin Dashboard --- */
.b2b-admin-tabs {
  display: flex; gap: 4px; margin: 24px 0 20px;
  border-bottom: 2px solid var(--border);
}
.b2b-admin-tab {
  padding: 12px 24px; border: none; background: none;
  font-size: 0.9rem; font-weight: 600; color: var(--medium-gray);
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color 0.2s, border-color 0.2s;
}
.b2b-admin-tab:hover { color: var(--navy); }
.b2b-admin-tab.active {
  color: var(--gold); border-bottom-color: var(--gold);
}

.b2b-admin-panel { min-height: 300px; }

.b2b-admin-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.b2b-admin-stat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; text-align: center;
}
.b2b-admin-stat__value {
  font-size: 2rem; font-weight: 700; color: var(--navy);
}
.b2b-admin-stat__label {
  font-size: 0.8rem; color: var(--medium-gray); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.b2b-admin-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
}
.b2b-admin-table th {
  text-align: left; padding: 12px 16px; font-weight: 600;
  color: var(--medium-gray); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border);
}
.b2b-admin-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.b2b-admin-table tr:hover td { background: rgba(201,168,76,0.04); }

.b2b-admin-badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}
.b2b-admin-badge--active { background: #ECFDF3; color: #047857; }
.b2b-admin-badge--pending { background: #FEF3C7; color: #92400E; }
.b2b-admin-badge--admin { background: rgba(201,168,76,0.15); color: var(--gold); }

.b2b-admin-btn {
  padding: 6px 14px; border-radius: 6px; font-size: 0.8rem;
  font-weight: 600; border: none; cursor: pointer;
}
.b2b-admin-btn--activate { background: #047857; color: #fff; }
.b2b-admin-btn--activate:hover { background: #065f46; }
.b2b-admin-btn--deactivate { background: #D4483B; color: #fff; }
.b2b-admin-btn--deactivate:hover { background: #b91c1c; }

.b2b-admin-msg-thread {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.b2b-admin-msg-header {
  padding: 14px 20px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.9rem;
}
.b2b-admin-msg-header:hover { background: rgba(201,168,76,0.04); }
.b2b-admin-msg-body {
  display: none; padding: 0 20px 16px; border-top: 1px solid var(--border);
}
.b2b-admin-msg-body.open { display: block; padding-top: 16px; }
.b2b-admin-reply {
  display: flex; gap: 8px; margin-top: 12px;
}
.b2b-admin-reply textarea {
  flex: 1; resize: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px; font-size: 0.85rem;
  min-height: 36px; font-family: inherit;
}
.b2b-admin-reply button {
  background: var(--gold); color: #fff; border: none;
  border-radius: 8px; padding: 8px 16px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer;
}

@media (max-width: 768px) {
  .b2b-admin-tabs { overflow-x: auto; }
  .b2b-admin-table { font-size: 0.8rem; }
  .b2b-admin-table th, .b2b-admin-table td { padding: 8px 10px; }
}
