/*
Theme Name: Berlin-Benz
Theme URI: https://berlin-benz.com
Author: Berlin-Benz
Description: Premium corporate consultancy WordPress theme with dark/light mode, 3D globe, glassmorphism navigation, editorial hero layout, 3D card tilt, and bento grid industries section.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: berlin-benz
Tags: business, corporate, consultancy, dark-mode, responsive-layout, custom-menu
*/

/* ══════════════════════════════════════════
   DESIGN TOKENS — DARK MODE (default)
══════════════════════════════════════════ */
:root,
[data-theme="dark"] {
  --bg:            #0A0A0A;
  --bg-2:          #111111;
  --bg-3:          #1A1A1A;
  --bg-card:       #141414;
  --surface:       rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.08);
  --border-accent: rgba(200,16,46,0.3);

  --text:          #F0EEE9;
  --text-2:        rgba(240,238,233,0.65);
  --text-3:        rgba(240,238,233,0.35);

  --red:           #C8102E;
  --red-dark:      #A00D24;
  --red-light:     #E8192E;
  --red-glow:      rgba(200,16,46,0.25);

  --glass-bg:      rgba(10,10,10,0.72);
  --glass-border:  rgba(255,255,255,0.1);
  --glass-blur:    20px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.5);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.7);
  --shadow-red: 0 8px 32px rgba(200,16,46,0.3);
}

/* ══════════════════════════════════════════
   LIGHT MODE TOKENS
══════════════════════════════════════════ */
[data-theme="light"] {
  --bg:            #F5F2ED;
  --bg-2:          #EDEAE4;
  --bg-3:          #E5E1DA;
  --bg-card:       #FFFFFF;
  --surface:       rgba(0,0,0,0.03);
  --surface-hover: rgba(0,0,0,0.055);
  --border:        rgba(0,0,0,0.09);
  --border-accent: rgba(200,16,46,0.25);

  --text:          #0A0A0A;
  --text-2:        rgba(10,10,10,0.6);
  --text-3:        rgba(10,10,10,0.35);

  --glass-bg:      rgba(245,242,237,0.78);
  --glass-border:  rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; transition:color 0.2s; }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}
h1 { font-size: clamp(3.2rem, 8vw, 8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
h4 { font-size: clamp(1rem, 1.6vw, 1.3rem); }
h5 { font-size: 1rem; }
h6 { font-size: 0.85rem; letter-spacing: 0.12em; }

p { font-size: clamp(0.93rem,1.1vw,1.03rem); line-height:1.78; color:var(--text-2); }

.serif { font-family:'Playfair Display',Georgia,serif; font-style:italic; }

.eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:0.72rem; font-weight:700; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--red);
  margin-bottom:16px;
}
.eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--red); flex-shrink:0; }
.eyebrow.centered { justify-content:center; }
.eyebrow.centered::before { display:none; }
.eyebrow.centered::after { content:''; display:block; width:28px; height:2px; background:var(--red); }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container { max-width:1360px; margin:0 auto; padding:0 clamp(20px,4vw,60px); }
.section   { padding:clamp(80px,10vw,140px) 0; }
.section--dark  { background:var(--bg-2); }
.section--gray  { background:var(--bg-3); }
.section--red   { background:var(--red); }

.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.flex-between { display:flex; align-items:center; justify-content:space-between; }
.flex-center  { display:flex; align-items:center; justify-content:center; }
.text-center  { text-align:center; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Barlow Condensed',sans-serif;
  font-size:0.78rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  padding:15px 34px; border:2px solid transparent; cursor:pointer;
  position:relative; overflow:hidden;
  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.btn::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,0.08); transform:translateX(-101%); transition:transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.btn:hover::after { transform:translateX(0); }

.btn-primary { background:var(--red); color:#fff; border-color:var(--red); }
.btn-primary:hover { background:var(--red-dark); border-color:var(--red-dark); box-shadow:var(--shadow-red); transform:translateY(-2px); }

.btn-outline { background:transparent; color:#fff; border-color:rgba(255,255,255,0.6); }
.btn-outline:hover { background:#fff; color:#0A0A0A; border-color:#fff; }

.btn-outline-dark { background:transparent; color:var(--text); border-color:var(--text); }
.btn-outline-dark:hover { background:var(--text); color:var(--bg); }

.btn-ghost { background:transparent; color:var(--red); border:none; padding:15px 0; }
.btn-ghost:hover { gap:16px; }

.btn-arrow::after { content:none; }
.btn-arrow .arr { display:inline-block; transition:transform 0.25s ease; margin-left:4px; }
.btn-arrow:hover .arr { transform:translateX(5px); }

/* ══════════════════════════════════════════
   GLASSMORPHISM HEADER
══════════════════════════════════════════ */
#site-header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
}
#site-header.at-top {
  background:transparent;
  border-bottom:1px solid transparent;
}
#site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:76px; padding:0 clamp(20px,4vw,60px);
  max-width:1400px; margin:0 auto;
}

/* LOGO */
.site-logo { display:flex; align-items:center; gap:11px; }
.logo-mark {
  width:40px; height:40px; background:var(--red);
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif; font-size:0.95rem; font-weight:900;
  color:#fff; flex-shrink:0;
}
.logo-text { font-family:'Barlow Condensed',sans-serif; font-size:1.15rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color:#fff; line-height:1; }
.logo-sub  { font-size:0.58rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.45); font-weight:400; margin-top:2px; }
[data-theme="light"] .logo-text { color:var(--text); }
[data-theme="light"] .logo-sub  { color:var(--text-3); }

/* PRIMARY NAV */
#primary-nav { display:flex; align-items:center; gap:2px; }
.nav-item { position:relative; }
.nav-link {
  font-family:'Barlow Condensed',sans-serif; font-size:0.72rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.82);
  padding:26px 13px; display:flex; align-items:center; gap:4px;
  transition:color 0.2s; white-space:nowrap;
}
[data-theme="light"] .nav-link { color:rgba(10,10,10,0.75); }
.nav-link:hover, .nav-link.active { color:var(--red); }
.nav-link svg { width:9px; height:9px; transition:transform 0.2s; }
.nav-item:hover .nav-link svg { transform:rotate(180deg); }

/* MEGA DROPDOWN */
.mega-menu {
  position:absolute; top:calc(100% + 8px); left:50%;
  transform:translateX(-50%) translateY(8px);
  background:var(--glass-bg);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border:1px solid var(--glass-border);
  border-top:2px solid var(--red);
  min-width:230px; padding:8px 0;
  opacity:0; visibility:hidden;
  transition:all 0.22s cubic-bezier(0.4,0,0.2,1);
  box-shadow:var(--shadow-lg);
}
.nav-item:hover .mega-menu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.mega-menu a {
  display:flex; align-items:center; gap:10px; padding:9px 22px;
  font-size:0.83rem; color:var(--text-2);
  transition:all 0.18s; border-left:2px solid transparent;
}
.mega-menu a:hover { color:var(--text); background:var(--surface-hover); border-left-color:var(--red); padding-left:26px; }
.mega-menu a::before { content:''; width:4px; height:4px; border-radius:50%; background:var(--red); flex-shrink:0; opacity:0; transition:opacity 0.18s; }
.mega-menu a:hover::before { opacity:1; }

/* HEADER ACTIONS */
.header-actions { display:flex; align-items:center; gap:14px; }
.header-cta {
  font-family:'Barlow Condensed',sans-serif; font-size:0.72rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; color:#fff;
  background:var(--red); padding:9px 22px;
  transition:all 0.2s;
}
.header-cta:hover { background:var(--red-dark); transform:translateY(-1px); }

/* ══════════════════════════════════════════
   3D CRESCENT MOON THEME TOGGLE
══════════════════════════════════════════ */
#themeToggle {
  width:44px; height:44px; border-radius:50%; cursor:pointer;
  perspective:200px; position:relative; flex-shrink:0;
}
#themeToggleSphere {
  width:100%; height:100%; border-radius:50%;
  position:relative; transform-style:preserve-3d;
  transition:transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
  transform:rotateY(0deg);
}
.toggle-face {
  position:absolute; inset:0; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; backface-visibility:hidden;
}
.toggle-dark {
  background:linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
  border:1px solid rgba(200,16,46,0.4);
  color:var(--red);
}
.toggle-light {
  background:linear-gradient(135deg, #f5f2ed 0%, #ded8ce 100%);
  border:1px solid rgba(0,0,0,0.15);
  color:#b8860b;
  transform:rotateY(180deg);
}

/* ══════════════════════════════════════════
   HAMBURGER & MOBILE MENU
══════════════════════════════════════════ */
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; cursor:pointer; }
.hamburger span { display:block; width:22px; height:2px; background:var(--text); transition:all 0.3s; }

#mobile-menu {
  display:none; position:fixed; inset:0; z-index:999;
  background:var(--bg); padding:90px 36px 40px; overflow-y:auto;
}
#mobile-menu.open { display:block; }
.mobile-nav-link {
  display:block; font-family:'Barlow Condensed',sans-serif;
  font-size:1.6rem; font-weight:700; text-transform:uppercase;
  color:var(--text); padding:14px 0; letter-spacing:0.05em;
}
.mobile-nav-item { border-bottom:1px solid var(--border); }
.mobile-sub-nav { display:none; padding:4px 16px 14px; }
.mobile-sub-nav.open { display:block; }
.mobile-sub-nav a { display:block; font-size:0.9rem; color:var(--text-2); padding:6px 0; }
.mobile-sub-nav a:hover { color:var(--red); }

/* ══════════════════════════════════════════
   HERO — EDITORIAL SPLIT LAYOUT
══════════════════════════════════════════ */
.hero {
  position:relative; min-height:100svh;
  display:grid; grid-template-columns:1fr 1fr;
  overflow:hidden; background:var(--bg);
}

/* Left pane — text */
.hero-left {
  position:relative; z-index:2;
  display:flex; flex-direction:column; justify-content:center;
  padding:120px clamp(30px,5vw,80px) 80px;
}

/* Right pane — globe + visual */
.hero-right {
  position:relative; overflow:hidden;
  background:linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
}
.hero-right::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(200,16,46,0.12) 0%, transparent 60%);
}

/* Globe canvas */
#bb-globe-canvas {
  position:absolute; inset:0; width:100%; height:100%;
  opacity:0.9;
}

/* Grid overlay on hero-left */
.hero-grid {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size:70px 70px; opacity:0.4;
}

/* Red accent bar left side */
.hero-accent-line {
  position:absolute; left:0; top:20%; bottom:20%; width:3px;
  background:linear-gradient(to bottom, transparent, var(--red), transparent);
}

.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(200,16,46,0.12); border:1px solid rgba(200,16,46,0.3);
  padding:7px 18px; font-family:'Barlow Condensed',sans-serif;
  font-size:0.68rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--red-light); margin-bottom:28px; width:fit-content;
}
.hero-tag-dot {
  width:6px; height:6px; border-radius:50%; background:var(--red);
  animation:pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }

.hero-kicker {
  font-family:'Barlow Condensed',sans-serif; font-size:0.72rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--text-3);
  margin-bottom:10px;
}

.hero-h1 {
  font-size:clamp(3.8rem,7.5vw,8rem); line-height:0.9;
  color:var(--text); margin-bottom:0; font-weight:900;
}
.hero-h1 .line-red  { color:var(--red); display:block; }
.hero-h1 .line-serif { font-family:'Playfair Display',Georgia,serif; font-style:italic; font-weight:400; font-size:0.72em; color:var(--text-2); display:block; }

.hero-ticker-wrap {
  display:flex; align-items:center; gap:12px; margin-top:16px; margin-bottom:32px;
}
.hero-ticker-label {
  font-family:'Barlow Condensed',sans-serif; font-size:0.72rem; font-weight:600;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--text-3);
}
#heroTicker {
  font-family:'Barlow Condensed',sans-serif; font-size:1.1rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.08em; color:var(--red);
}

.hero-desc { max-width:480px; margin-bottom:40px; color:var(--text-2); font-size:1.02rem; line-height:1.72; }

.hero-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:52px; }

.hero-stats {
  display:flex; gap:36px; padding-top:36px;
  border-top:1px solid var(--border); flex-wrap:wrap;
}
.hero-stat-val {
  font-family:'Barlow Condensed',sans-serif; font-size:2.4rem; font-weight:900;
  color:var(--text); line-height:1; margin-bottom:3px;
}
.hero-stat-val span { color:var(--red); }
.hero-stat-lbl {
  font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; font-weight:600;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--text-3);
}

/* Right panel overlay text */
.hero-right-text {
  position:absolute; bottom:48px; left:40px; right:40px; z-index:3;
}
.hero-right-text h3 {
  font-family:'Playfair Display',Georgia,serif; font-style:italic; font-weight:400;
  font-size:clamp(1.4rem,2.5vw,2.2rem); color:rgba(255,255,255,0.85); line-height:1.3;
}
.hero-right-text p { color:rgba(255,255,255,0.45); font-size:0.85rem; margin-top:8px; }

.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%); z-index:4;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-family:'Barlow Condensed',sans-serif; font-size:0.65rem; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--text-3);
}
.hero-scroll-line {
  width:1px; height:54px;
  background:linear-gradient(to bottom, var(--red) 0%, transparent 100%);
  animation:scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%{transform:scaleY(0);transform-origin:top;} 50%{transform:scaleY(1);transform-origin:top;}
  51%{transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;}
}

/* ══════════════════════════════════════════
   SERVICE CARDS — 3D TILT READY
══════════════════════════════════════════ */
.service-card {
  background:var(--bg-card); border:1px solid var(--border);
  padding:38px 34px; position:relative; overflow:hidden;
  transition:border-color 0.3s, box-shadow 0.3s;
  will-change:transform;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:var(--red); transform:scaleX(0);
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { border-color:var(--border-accent); box-shadow:var(--shadow-md); }
.service-card:hover::before { transform:scaleX(1); }

.service-card-icon {
  width:48px; height:48px; background:rgba(200,16,46,0.09);
  display:flex; align-items:center; justify-content:center;
  color:var(--red); font-size:1.3rem; margin-bottom:22px;
  transition:all 0.3s;
}
.service-card:hover .service-card-icon { background:var(--red); color:#fff; }

.service-card h3 { font-size:1.05rem; margin-bottom:10px; transition:color 0.2s; }
.service-card:hover h3 { color:var(--red); }
.service-card p { font-size:0.86rem; line-height:1.67; margin-bottom:18px; }

.service-card-link {
  font-family:'Barlow Condensed',sans-serif; font-size:0.7rem; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase; color:var(--red);
  display:flex; align-items:center; gap:7px; transition:gap 0.2s;
}
.service-card:hover .service-card-link { gap:13px; }

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section-header { max-width:680px; margin-bottom:68px; }
.section-header.centered { margin:0 auto 68px; text-align:center; }
.section-header h2 { margin-bottom:18px; }
.section-header p { color:var(--text-2); max-width:560px; }
.section-header.centered p { margin:0 auto; }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-section {
  background:var(--bg-2); padding:72px 0; position:relative; overflow:hidden;
}
.stats-section::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--red) 40%,transparent);
}
.stats-section::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--red) 40%,transparent);
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item {
  padding:36px; text-align:center;
  border-right:1px solid var(--border);
  transition:background 0.3s;
}
.stat-item:last-child { border-right:none; }
.stat-item:hover { background:var(--surface-hover); }
.stat-number {
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(2.4rem,4vw,3.8rem); font-weight:900;
  color:var(--text); line-height:1; margin-bottom:6px;
}
.stat-number span { color:var(--red); }
.stat-label {
  font-family:'Barlow Condensed',sans-serif; font-size:0.68rem;
  letter-spacing:0.16em; text-transform:uppercase; color:var(--text-3);
}

/* ══════════════════════════════════════════
   BENTO GRID — INDUSTRIES
══════════════════════════════════════════ */
.bento-grid {
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap:16px;
}
.bento-cell {
  background:var(--bg-card); border:1px solid var(--border);
  padding:32px 28px; position:relative; overflow:hidden;
  display:flex; flex-direction:column; justify-content:flex-end;
  cursor:default; transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change:transform;
}
.bento-cell::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  opacity:0; transition:opacity 0.35s;
}
.bento-cell:hover { border-color:var(--border-accent); box-shadow:var(--shadow-md); }
.bento-cell:hover::before { opacity:1; }

/* Bento layout spans */
.bento-1 { grid-column:span 2; }
.bento-2 { grid-column:span 2; }
.bento-3 { grid-column:span 2; }
.bento-4 { grid-column:span 3; }
.bento-5 { grid-column:span 3; }

.bento-icon {
  font-size:2rem; color:var(--red); margin-bottom:16px;
  transition:transform 0.3s, color 0.3s;
}
.bento-cell:hover .bento-icon { transform:scale(1.15); color:#fff; }

.bento-title {
  font-family:'Barlow Condensed',sans-serif; font-size:1.1rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.05em; color:var(--text);
  margin-bottom:6px; position:relative; z-index:1; transition:color 0.3s;
}
.bento-cell:hover .bento-title { color:#fff; }

.bento-desc {
  font-size:0.82rem; color:var(--text-3); position:relative; z-index:1;
  max-height:0; overflow:hidden;
  transition:max-height 0.4s ease, color 0.3s;
}
.bento-cell:hover .bento-desc { max-height:80px; color:rgba(255,255,255,0.65); }

/* Accent corners on specific cells */
.bento-cell.accent { background:linear-gradient(135deg, rgba(200,16,46,0.12) 0%, var(--bg-card) 70%); }
.bento-cell.accent .bento-icon { color:var(--red); }

/* Red highlight cell */
.bento-cell.red-cell {
  background:var(--red);
  border-color:var(--red-dark);
}
.bento-cell.red-cell .bento-title { color:#fff; }
.bento-cell.red-cell .bento-icon  { color:rgba(255,255,255,0.7); }
.bento-cell.red-cell::before { display:none; }
.bento-cell.red-cell:hover { background:var(--red-dark); }

/* ══════════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════════ */
.cases-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:20px;
}
.case-card {
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:40px; min-height:420px; cursor:pointer;
  background:var(--bg-2);
}
.case-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index:1;
}
.case-card-bg {
  position:absolute; inset:0; z-index:0;
  transition:transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.case-card:hover .case-card-bg { transform:scale(1.05); }
.case-card-content { position:relative; z-index:2; }
.case-tag {
  display:inline-block; background:var(--red); color:#fff;
  font-family:'Barlow Condensed',sans-serif; font-size:0.65rem; font-weight:700;
  letter-spacing:0.14em; text-transform:uppercase; padding:5px 12px; margin-bottom:12px;
}
.case-card h3 { color:#fff; font-size:clamp(1rem,2vw,1.5rem); margin-bottom:8px; }
.case-card p  { color:rgba(255,255,255,0.6); font-size:0.85rem; }

.case-right { display:flex; flex-direction:column; gap:20px; }
.case-card-sm { min-height:200px; }

/* Case study result pills */
.case-results {
  display:flex; gap:12px; margin-top:16px; flex-wrap:wrap;
}
.case-result-pill {
  background:rgba(200,16,46,0.2); border:1px solid rgba(200,16,46,0.4);
  padding:4px 12px; font-family:'Barlow Condensed',sans-serif;
  font-size:0.7rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--red-light);
}

/* ══════════════════════════════════════════
   ABOUT / SPLIT SECTION
══════════════════════════════════════════ */
.split-section {
  display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center;
}
.split-section.reverse > :first-child { order:2; }
.split-section.reverse > :last-child  { order:1; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonial-section { background:var(--bg-3); padding:clamp(80px,10vw,140px) 0; overflow:hidden; }
.testimonial-slider { position:relative; }
.testimonial-track { display:flex; transition:transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width:100%; padding:0 clamp(24px,12vw,220px); text-align:center; }
.testimonial-quote {
  font-family:'Playfair Display',Georgia,serif; font-size:clamp(1.15rem,2.5vw,1.7rem);
  font-style:italic; color:var(--text); line-height:1.55; margin-bottom:32px;
  position:relative;
}
.testimonial-quote::before {
  content:'"'; font-size:9rem; color:var(--red); opacity:0.1;
  position:absolute; top:-44px; left:-16px;
  font-family:'Playfair Display',Georgia,serif; line-height:1;
}
.testimonial-author { font-family:'Barlow Condensed',sans-serif; font-size:0.78rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--text); }
.testimonial-role   { font-size:0.82rem; color:var(--red); margin-top:4px; }
.testimonial-controls { display:flex; align-items:center; justify-content:center; gap:14px; margin-top:44px; }
.testimonial-btn {
  width:42px; height:42px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--text-2); transition:all 0.2s;
}
.testimonial-btn:hover { border-color:var(--red); background:var(--red); color:#fff; }
.testimonial-dots { display:flex; gap:7px; }
.testimonial-dot {
  width:7px; height:7px; border-radius:50%; background:var(--border);
  cursor:pointer; transition:all 0.3s;
}
.testimonial-dot.active { background:var(--red); width:22px; border-radius:4px; }

/* ══════════════════════════════════════════
   INSIGHTS / BLOG GRID
══════════════════════════════════════════ */
.insights-featured {
  background:var(--bg-card); border:1px solid var(--border);
  display:grid; grid-template-columns:1fr 1fr; overflow:hidden;
  margin-bottom:28px;
  transition:border-color 0.3s;
}
.insights-featured:hover { border-color:var(--border-accent); }
.insights-featured-img { background:var(--bg-3); min-height:360px; position:relative; overflow:hidden; }
.insights-featured-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; }
.insights-featured:hover .insights-featured-img img { transform:scale(1.04); }
.insights-featured-content { padding:48px; display:flex; flex-direction:column; justify-content:center; }
.insights-category {
  font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--red); margin-bottom:12px;
}
.insights-featured-content h3 { font-size:clamp(1.4rem,2.5vw,2rem); margin-bottom:14px; }
.insights-featured-content p  { margin-bottom:24px; }
.insights-date { font-size:0.78rem; color:var(--text-3); margin-bottom:8px; }

.insights-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.insight-card { background:var(--bg-card); border:1px solid var(--border); overflow:hidden; transition:all 0.3s; }
.insight-card:hover { border-color:var(--border-accent); box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.insight-card-img { height:180px; background:var(--bg-3); overflow:hidden; }
.insight-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.insight-card:hover .insight-card-img img { transform:scale(1.06); }
.insight-card-body { padding:24px; }
.insight-card-body h4 { font-size:0.95rem; margin-bottom:8px; line-height:1.3; }
.insight-card-body h4 a { transition:color 0.2s; }
.insight-card-body h4 a:hover { color:var(--red); }
.insight-card-body p { font-size:0.82rem; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background:var(--bg); min-height:480px;
  display:flex; align-items:flex-end; padding-bottom:72px;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(200,16,46,0.1) 0%,transparent 55%),
             linear-gradient(to bottom,transparent 40%,rgba(0,0,0,0.3) 100%);
}
.page-hero-grid {
  position:absolute; inset:0;
  background-image:linear-gradient(var(--border) 1px,transparent 1px),
                   linear-gradient(90deg,var(--border) 1px,transparent 1px);
  background-size:55px 55px; opacity:0.5;
}
.page-hero-content { position:relative; z-index:2; padding-top:140px; }
.page-hero h1 { color:var(--text); font-size:clamp(2.5rem,6vw,5.5rem); margin-bottom:16px; max-width:800px; }
.page-hero-desc { color:var(--text-2); font-size:clamp(0.95rem,1.3vw,1.05rem); max-width:580px; line-height:1.75; }

.breadcrumb {
  display:flex; align-items:center; gap:8px; margin-bottom:22px;
  font-family:'Barlow Condensed',sans-serif; font-size:0.7rem; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--text-3);
}
.breadcrumb a { color:var(--text-3); }
.breadcrumb a:hover { color:var(--red); }

/* ══════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════ */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-grid::before {
  content:''; position:absolute; top:34px; left:12.5%; right:12.5%; height:1px;
  background:linear-gradient(90deg,transparent,var(--red),transparent); z-index:0;
}
.process-step { padding:0 20px; text-align:center; position:relative; z-index:1; }
.process-num {
  width:68px; height:68px; border:2px solid var(--red);
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif; font-size:1.3rem; font-weight:900;
  color:var(--red); margin:0 auto 20px; background:var(--bg);
  transition:all 0.3s;
}
.process-step:hover .process-num { background:var(--red); color:#fff; }
.process-step h4 { font-size:0.88rem; margin-bottom:8px; }
.process-step p  { font-size:0.82rem; }

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-grid { display:grid; grid-template-columns:1fr 1fr; }
.why-content { padding:80px 64px 80px 0; }
.why-image { position:relative; min-height:560px; background:var(--bg-2); overflow:hidden; }
.why-image-pattern {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(200,16,46,0.07) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(200,16,46,0.07) 1px,transparent 1px);
  background-size:38px 38px;
}
.why-image::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(200,16,46,0.15),transparent); }
.why-badge {
  position:absolute; bottom:36px; left:36px; background:var(--red); color:#fff; padding:22px 26px; z-index:2;
}
.why-badge-num { font-family:'Barlow Condensed',sans-serif; font-size:2.4rem; font-weight:900; line-height:1; }
.why-badge-text { font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; opacity:0.85; margin-top:4px; }
.why-points { display:flex; flex-direction:column; gap:20px; margin-top:36px; }
.why-point { display:flex; gap:18px; align-items:flex-start; }
.why-point-icon {
  width:38px; height:38px; background:rgba(200,16,46,0.1);
  display:flex; align-items:center; justify-content:center;
  color:var(--red); flex-shrink:0; transition:all 0.25s;
}
.why-point:hover .why-point-icon { background:var(--red); color:#fff; }
.why-point h4 { font-size:0.88rem; margin-bottom:3px; }
.why-point p  { font-size:0.82rem; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background:var(--red); padding:96px 0; position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 30% 50%,rgba(255,255,255,0.08) 0%,transparent 60%),
             linear-gradient(135deg,rgba(0,0,0,0.15) 0%,transparent 50%);
}
.cta-section .container { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-text h2 { color:#fff; font-size:clamp(2rem,4vw,3.5rem); margin-bottom:14px; }
.cta-text p  { color:rgba(255,255,255,0.75); max-width:480px; }
.cta-actions { display:flex; gap:14px; flex-wrap:wrap; flex-shrink:0; }

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-section { background:var(--bg-2); padding:clamp(80px,10vw,140px) 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:72px; align-items:start; }
.contact-info h2 { color:var(--text); margin-bottom:18px; }
.contact-info p  { margin-bottom:36px; }
.contact-items { display:flex; flex-direction:column; gap:20px; }
.contact-item { display:flex; gap:14px; align-items:flex-start; }
.contact-item-icon {
  width:42px; height:42px; background:rgba(200,16,46,0.1);
  display:flex; align-items:center; justify-content:center;
  color:var(--red); flex-shrink:0;
}
.contact-item-label { font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--red); margin-bottom:3px; }
.contact-item-val   { font-size:0.88rem; color:var(--text-2); }

.contact-form { display:flex; flex-direction:column; gap:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-field { display:flex; flex-direction:column; gap:5px; }
.form-field label {
  font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--text-3);
}
.form-field input,.form-field select,.form-field textarea {
  background:var(--surface); border:1px solid var(--border);
  padding:13px 15px; font-family:'DM Sans',sans-serif; font-size:0.88rem;
  color:var(--text); outline:none; width:100%;
  transition:border-color 0.2s; -webkit-appearance:none;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { border-color:var(--red); }
.form-field input::placeholder,.form-field textarea::placeholder { color:var(--text-3); }
.form-field textarea { resize:vertical; min-height:110px; }
.form-field select option { background:var(--bg); color:var(--text); }

/* ══════════════════════════════════════════
   INDUSTRY MARQUEE
══════════════════════════════════════════ */
.industry-strip { background:var(--red); padding:18px 0; overflow:hidden; }
.industry-track { display:flex; gap:44px; animation:marquee 32s linear infinite; white-space:nowrap; }
.industry-track:hover { animation-play-state:paused; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.industry-item {
  font-family:'Barlow Condensed',sans-serif; font-size:0.7rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.7);
  display:flex; align-items:center; gap:22px; white-space:nowrap; flex-shrink:0;
}
.industry-item::after { content:'✦'; font-size:0.45rem; color:rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════
   ICON BOX GRID
══════════════════════════════════════════ */
.icon-box-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.icon-box {
  background:var(--bg-3); padding:26px 22px;
  border-left:3px solid transparent; transition:all 0.25s;
}
.icon-box:hover { border-left-color:var(--red); background:var(--bg-card); box-shadow:var(--shadow-sm); }
.icon-box-icon { font-size:1.5rem; color:var(--red); margin-bottom:10px; }
.icon-box h4 { font-size:0.86rem; margin-bottom:5px; }
.icon-box p  { font-size:0.8rem; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-mission {
  font-family:'Playfair Display',Georgia,serif; font-style:italic;
  font-size:clamp(1.5rem,3vw,2.5rem); color:var(--text); line-height:1.45;
  border-left:4px solid var(--red); padding-left:28px; margin-bottom:40px;
}
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.value-card {
  background:var(--bg-card); padding:40px 32px; position:relative; overflow:hidden;
  border:1px solid var(--border); transition:all 0.3s;
}
.value-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--red); transform:scaleX(0); transition:transform 0.35s;
}
.value-card:hover::before { transform:scaleX(1); }
.value-card:hover { box-shadow:var(--shadow-sm); }
.value-num {
  font-family:'Barlow Condensed',sans-serif; font-size:4rem; font-weight:900;
  color:rgba(200,16,46,0.08); line-height:1; position:absolute; top:16px; right:20px;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */
#whatsappBtn {
  position:fixed; bottom:100px; right:30px; z-index:900;
  width:52px; height:52px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.4rem; box-shadow:0 4px 20px rgba(37,211,102,0.4);
  transition:all 0.3s; cursor:pointer;
  animation:waFloat 3s ease-in-out infinite;
}
#whatsappBtn:hover { transform:scale(1.12); box-shadow:0 6px 28px rgba(37,211,102,0.6); }
#whatsappBtn.pulse { animation:waPulse 0.6s ease; }
@keyframes waFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-5px);} }
@keyframes waPulse { 0%{transform:scale(1);} 50%{transform:scale(1.18);} 100%{transform:scale(1);} }

/* ══════════════════════════════════════════
   BACK TO TOP & PAGE LOADER
══════════════════════════════════════════ */
#back-to-top {
  position:fixed; bottom:32px; right:30px; width:46px; height:46px;
  background:var(--red); color:#fff; display:flex; align-items:center; justify-content:center;
  cursor:pointer; opacity:0; visibility:hidden; z-index:900;
  transition:all 0.3s; font-size:1rem;
}
#back-to-top.visible { opacity:1; visibility:visible; }
#back-to-top:hover  { background:var(--red-dark); transform:translateY(-3px); }

#page-loader {
  position:fixed; inset:0; background:var(--bg); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  transition:opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.loaded { opacity:0; visibility:hidden; }
.loader-inner { display:flex; flex-direction:column; align-items:center; gap:18px; }
.loader-logo {
  font-family:'Barlow Condensed',sans-serif; font-size:1.9rem; font-weight:900;
  color:var(--text); letter-spacing:0.1em; text-transform:uppercase;
}
.loader-logo span { color:var(--red); }
.loader-bar { width:180px; height:2px; background:var(--border); position:relative; overflow:hidden; }
.loader-bar::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:var(--red); animation:loadBar 1.1s ease forwards; }
@keyframes loadBar { 0%{left:-100%;} 100%{left:0%;} }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.reveal       { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-left  { opacity:0; transform:translateX(-36px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-right { opacity:0; transform:translateX(36px);  transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-up    { opacity:0; transform:translateY(20px);   transition:opacity 0.6s ease,transform 0.6s ease; }
.revealed     { opacity:1 !important; transform:translate(0) !important; }

.delay-1 { transition-delay:0.1s; }
.delay-2 { transition-delay:0.2s; }
.delay-3 { transition-delay:0.3s; }
.delay-4 { transition-delay:0.4s; }
.delay-5 { transition-delay:0.5s; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#site-footer { background:var(--bg-2); }
.footer-top { padding:72px 0 56px; border-bottom:1px solid var(--border); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:52px; }
.footer-brand p { color:var(--text-2); font-size:0.86rem; line-height:1.7; margin:18px 0 24px; max-width:290px; }
.footer-socials { display:flex; gap:10px; }
.footer-social {
  width:34px; height:34px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:0.82rem; color:var(--text-3); transition:all 0.2s;
}
.footer-social:hover { border-color:var(--red); background:var(--red); color:#fff; }
.footer-col h5 {
  font-family:'Barlow Condensed',sans-serif; font-size:0.7rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--text);
  margin-bottom:20px; padding-bottom:10px; border-bottom:2px solid var(--red); display:inline-block;
}
.footer-links { display:flex; flex-direction:column; gap:9px; }
.footer-links a { font-size:0.83rem; color:var(--text-2); transition:all 0.2s; display:flex; align-items:center; gap:6px; }
.footer-links a::before { content:'—'; font-size:0.55rem; color:var(--red); opacity:0; transition:opacity 0.2s; }
.footer-links a:hover { color:var(--text); padding-left:6px; }
.footer-links a:hover::before { opacity:1; }

.newsletter-form { display:flex; margin-top:14px; }
.newsletter-input {
  flex:1; background:var(--surface); border:1px solid var(--border); border-right:none;
  padding:11px 14px; font-family:'DM Sans',sans-serif; font-size:0.83rem;
  color:var(--text); outline:none; transition:border-color 0.2s;
}
.newsletter-input::placeholder { color:var(--text-3); }
.newsletter-input:focus { border-color:var(--red); }
.newsletter-btn {
  background:var(--red); color:#fff; border:1px solid var(--red); padding:11px 18px;
  font-family:'Barlow Condensed',sans-serif; font-size:0.7rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase; cursor:pointer; transition:background 0.2s;
}
.newsletter-btn:hover { background:var(--red-dark); }

.footer-contact-info { display:flex; flex-direction:column; gap:11px; margin-top:22px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:0.83rem; color:var(--text-2); }
.footer-contact-icon { color:var(--red); flex-shrink:0; margin-top:1px; font-size:0.85rem; }

.footer-bottom { padding:22px 0; }
.footer-bottom-inner { display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.footer-copyright { font-size:0.76rem; color:var(--text-3); }
.footer-legal-links { display:flex; gap:22px; }
.footer-legal-links a { font-size:0.76rem; color:var(--text-3); transition:color 0.2s; }
.footer-legal-links a:hover { color:var(--red); }

/* ══════════════════════════════════════════
   ACCORDION
══════════════════════════════════════════ */
.accordion-item { border-bottom:1px solid var(--border); }
.accordion-header { display:flex; align-items:center; justify-content:space-between; padding:22px 0; cursor:pointer; transition:color 0.2s; }
.accordion-header:hover { color:var(--red); }
.accordion-header h4 { font-size:0.97rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; }
.accordion-icon { width:30px; height:30px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--text-2); transition:all 0.25s; flex-shrink:0; }
.accordion-item.open .accordion-icon { background:var(--red); border-color:var(--red); color:#fff; transform:rotate(45deg); }
.accordion-body { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.accordion-body-inner { padding:0 0 22px; }
.accordion-body-inner p { font-size:0.88rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width:1100px) {
  .hero { grid-template-columns:1fr; }
  .hero-right { display:none; }
  .hero-left { padding:130px clamp(20px,5vw,60px) 80px; }
  .bento-grid { grid-template-columns:repeat(3,1fr); grid-template-rows:auto; }
  .bento-1,.bento-2,.bento-3,.bento-4,.bento-5 { grid-column:span 1; }
  .bento-4 { grid-column:span 2; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
  .process-grid::before { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .cases-grid { grid-template-columns:1fr; }
  .case-right { flex-direction:row; }
  .case-card-sm { min-height:220px; }
  .contact-grid { grid-template-columns:1fr; gap:48px; }
  .form-row { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .why-content { padding:60px 0; }
  .why-image { min-height:360px; }
  .insights-featured { grid-template-columns:1fr; }
  .insights-featured-img { min-height:240px; }
}
@media (max-width:900px) {
  #primary-nav { display:none; }
  #themeToggle { display:none; }
  .hamburger { display:flex; }
  .header-cta { display:none; }
  .grid-2,.grid-3 { grid-template-columns:1fr; }
  .split-section { grid-template-columns:1fr; gap:36px; }
  .split-section.reverse > :first-child { order:1; }
  .split-section.reverse > :last-child  { order:2; }
  .insights-grid { grid-template-columns:repeat(2,1fr); }
  .values-grid { grid-template-columns:1fr; }
  .cta-section .container { flex-direction:column; text-align:center; }
}
@media (max-width:600px) {
  .grid-4 { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-item { padding:24px 14px; }
  .bento-grid { grid-template-columns:1fr; }
  .bento-1,.bento-2,.bento-3,.bento-4,.bento-5 { grid-column:span 1; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .process-grid { grid-template-columns:1fr; }
  .icon-box-grid { grid-template-columns:1fr; }
  .case-right { flex-direction:column; }
  .testimonial-slide { padding:0 18px; }
  .hero-stats { gap:24px; }
  .insights-grid { grid-template-columns:1fr; }
}
