:root {
  --red: #CF2A1E;
  --red2: #A61E14;
  --red-soft: rgba(207, 42, 30, 0.08);
  --red-light: rgba(207, 42, 30, 0.08);
  --red-glow: rgba(207, 42, 30, 0.3);
  --bg-main: #ffffff;
  --bg-alt: #fcfcfc;
  --bg-soft: #f4f6f8;
  --bg-dark: #0f172a;
  --bg-darker: #f5f7f9;
  --text-main: #0a0c10;
  --text-muted: #4b5563;
  --text-faint: #9ca3af;
  --text-on-dark: rgba(255,255,255,0.92);
  --border: #eef1f4;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
  --shadow-red: 0 12px 30px -5px rgba(207, 42, 30, 0.25);
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: var(--font-body); background: var(--bg-main); color: var(--text-main); line-height: 1.65; overflow-x: hidden; width: 100%; max-width: 100%; }
h1, h2, h3, h4, h5, h6, .brand-text, .nav-logo-txt, .flogo-txt, .mob-logo-txt, .stitle, .section-title { font-family: var(--font-display); }
img, svg, canvas, video { max-width: 100%; }
a { color: inherit; }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #fafafa; display: flex;
  align-items: center; justify-content: center;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
#loader.hidden { opacity: 0; transform: scale(1.07); pointer-events: none; }
.loader-ring {
  position: relative; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  animation: loader-pop 0.45s ease-out;
}
.loader-ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--red);
  animation: loader-rotate 0.75s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}
.loader-mark {
  width: 50px; height: 50px; border-radius: 15px;
  background: linear-gradient(135deg, var(--red), #ff6d56); color: #fff;
  display: grid; place-items: center; font-size: 1.25rem; font-weight: 800;
  font-family: "DM Sans", sans-serif;
  box-shadow: 0 18px 38px var(--red-glow);
  animation: loader-breathe 1.3s ease-in-out infinite;
}
@keyframes loader-rotate { to { transform: rotate(360deg); } }
@keyframes loader-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes loader-pop { from { opacity: 0; transform: scale(0.82); } to { opacity: 1; transform: scale(1); } }
.loader-logo-img {
  width: 52px; height: 52px; object-fit: contain; border-radius: 12px;
  animation: loader-breathe 1.3s ease-in-out infinite;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ── Cursor (removed) ── */
.cursor-dot, .cursor-outline { display: none !important; }

/* ── Topbar (hidden) ── */
.topbar { display: none; }

/* Fix fixed elements blocking content and Elementor UI */
body:not(.home):not(.front-page) #main-content { padding-top: 130px; }
body.elementor-editor-active nav#nav { z-index: 10 !important; }
body.elementor-editor-active .mc-chat-launcher,
body.elementor-editor-active .back-to-top { display: none !important; }

/* ── Nav: Solid White Capsule ── */
nav#nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1400px;
  height: 76px;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 9999px;
  transition: top 0.5s cubic-bezier(0.16,1,0.3,1), width 0.5s ease, height 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
nav#nav.solid {
  top: 12px;
  width: calc(100% - 32px);
  border-color: var(--border);
  box-shadow: 0 20px 48px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.6);
  height: 68px;
}
.nav-in, .nav-inner {
  width: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; transition: height 0.3s; }
nav.solid .nav-logo img { height: 36px; }
.nav-logo-txt { font-size: 1.1rem; font-weight: 800; color: #0f172a; line-height: 1.1; letter-spacing: -0.02em; }
.nav-logo-txt em { font-style: normal; color: var(--red); display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }

.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  color: #1e293b;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 9999px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: #1e293b; background: transparent; }

/* Active */
.nav-links a.active,
.nav-links li.current-menu-item > a,
.nav-links li.current-page-ancestor > a {
  color: #1e293b !important;
  background: transparent !important;
  font-weight: 700;
}

/* Dropdowns */
.has-dd { position: relative; }
.dd {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  min-width: 300px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.11), 0 4px 16px rgba(0,0,0,0.05);
  z-index: 100;
}
.has-dd:hover .dd { display: block; animation: fadeUp 0.22s ease; }
.dd a { display: block; padding: 10px 16px; color: var(--text-muted) !important; font-size: 0.9rem; border-radius: 10px; background: transparent !important; }
.dd a:hover { color: var(--red) !important; background: var(--bg-soft) !important; }

/* Nested dropdown */
.has-sub { position: relative; }
.has-sub > a { display: flex !important; align-items: center; justify-content: space-between; gap: 6px; }
.has-sub::after { content: ''; position: absolute; top: 0; right: -16px; width: 16px; height: 100%; z-index: 1; }
.dd-nested { position: absolute; left: 100%; top: -12px; background: #fff; border: 1px solid var(--border); border-radius: 16px; min-width: 270px; padding: 12px; box-shadow: 0 24px 64px rgba(0,0,0,0.11); display: none; z-index: 101; }
.has-sub:hover .dd-nested { display: block; animation: fadeUp 0.2s ease; }

/* CTA pill */
.nav-cta, .nav-cta-fixed {
  background: linear-gradient(135deg, #CF2A1E 0%, #ff5247 100%) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  font-size: 0.87rem !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(207,42,30,0.3) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-cta:hover, .nav-cta-fixed:hover {
  box-shadow: 0 8px 28px rgba(207,42,30,0.45) !important;
  transform: translateY(-1px) scale(1.02) !important;
  color: #fff !important;
}

/* Search icon */
.nav-search {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: transparent; color: #475569;
  font-size: 0.95rem; cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
}
.nav-search:hover { color: #475569; background: transparent; }

/* Hamburger */
.hbg, .hamburger {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  background: none; border: none; padding: 4px; flex-shrink: 0;
}
.hbg span, .hamburger span { width: 24px; height: 2px; background: #0f172a; border-radius: 2px; transition: all 0.3s; display: block; }

/* Mobile overlay nav — glassmorphism full-screen panel */
.mob-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(2,5,24,0.45); z-index: 1998;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* ── Mobile Panel — glassmorphic full-screen overlay ── */
.mob, .mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1999;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
}
.mob.open, .mobile-panel.open { display: flex; }

.mob-header, .mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky; top: 0;
  background: transparent;
  z-index: 2;
}
.mob-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.mob-logo img { height: 38px; width: auto; }
.mob-logo-txt { font-size: 1.05rem; font-weight: 800; color: #0f172a; line-height: 1.1; }
.mob-logo-txt em { font-style: normal; color: var(--red); display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
.mob-close, .mobile-close {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.06);
  border: none; color: #374151; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
  font-family: inherit;
}
.mob-close:hover, .mobile-close:hover { background: rgba(207,42,30,0.1); color: var(--red); }

.mob-body, .mobile-body { padding: 16px 24px 32px; flex: 1; }
.mob-body a, .mobile-body a {
  display: block; padding: 13px 16px; color: #1e293b;
  font-size: 1rem; font-weight: 600;
  border-radius: 12px; text-decoration: none;
  transition: all 0.22s ease; margin-bottom: 3px;
}
.mob-body a:hover, .mobile-body a:hover { color: var(--red); background: rgba(207,42,30,0.06); }
.mob-body a.active, .mobile-body a.active { color: var(--red); background: rgba(207,42,30,0.08); font-weight: 700; }
.mob-body .mob-head, .mobile-body .head {
  padding: 16px 16px 5px; font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--red);
  margin-top: 8px; display: block;
}
.mob-body .mob-head ~ a { padding-left: 28px; font-size: 0.93rem; font-weight: 500; }
.mob-body .mob-search { color: var(--text-muted); font-size: 0.93rem; }
.mob-body .mob-cta, .mobile-body .cta {
  background: linear-gradient(135deg, #CF2A1E 0%, #ff5247 100%) !important;
  color: #fff !important; text-align: center; border-radius: 9999px;
  padding: 15px !important; margin-top: 20px; border: none;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 10px 30px rgba(207,42,30,0.28);
}
.mob-body .mob-cta:hover, .mobile-body .cta:hover {
  background: var(--red2) !important;
  box-shadow: 0 14px 40px rgba(207,42,30,0.4);
}

/* Contact strip at bottom of mobile panel */
.mob-contact-strip {
  padding: 20px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 14px;
}
.mob-contact-strip a {
  display: flex; align-items: center; gap: 12px;
  color: #475569; font-size: 0.88rem; text-decoration: none;
  transition: color 0.2s;
}
.mob-contact-strip a:hover { color: var(--red); }
.mob-contact-ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(207,42,30,0.08); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}

/* ── Hero — crossfade slideshow background ── */
.hero { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; background: #020510; color: #fff; padding: 0; }
/* Main dark veil */
.hero::before { content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: rgba(3,6,18,0.76); }
/* Left-side depth gradient */
.hero::after  { content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none; background: linear-gradient(to right, rgba(3,6,18,0.42) 0%, rgba(3,6,18,0.2) 48%, transparent 72%); }

.hero-canvas { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hbg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; will-change: opacity, transform; }
.hbg-slide.s1 { animation: bgFirst 20s ease-in-out infinite; }
.hbg-slide.s2 { animation: bgCrossfade 20s ease-in-out infinite; animation-delay: 5s; }
.hbg-slide.s3 { animation: bgCrossfade 20s ease-in-out infinite; animation-delay: 10s; }
.hbg-slide.s4 { animation: bgCrossfade 20s ease-in-out infinite; animation-delay: 15s; }
@keyframes bgFirst    { 0%{opacity:1;transform:scale(1.00) translate(0,0);} 20%{opacity:1;transform:scale(1.06) translate(-1%,.5%);} 25%{opacity:0;transform:scale(1.07) translate(-1.2%,.6%);} 95%{opacity:0;transform:scale(1.00) translate(0,0);} 100%{opacity:1;transform:scale(1.00) translate(0,0);} }
@keyframes bgCrossfade{ 0%{opacity:0;transform:scale(1.00) translate(0,0);} 5%{opacity:1;transform:scale(1.01) translate(.2%,.1%);} 20%{opacity:1;transform:scale(1.06) translate(1%,.4%);} 25%{opacity:0;transform:scale(1.07) translate(1.2%,.5%);} 100%{opacity:0;transform:scale(1.00) translate(0,0);} }

.hero-glow   { position: absolute; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(207,42,30,0.15), transparent 60%); top: 50%; left: 0%; transform: translate(-50%,-50%); z-index: 2; filter: blur(60px); pointer-events: none; }
.hero-shape  { position: absolute; z-index: 2; pointer-events: none; border-radius: 50%; }
.hero-shape-1{ width: 480px; height: 480px; border: 1px solid rgba(255,255,255,0.07); top: -100px; right: 340px; animation: shapeSpin 40s linear infinite; }
.hero-shape-2{ width: 280px; height: 280px; border: 1px solid rgba(255,255,255,0.05); bottom: -50px; right: 270px; animation: shapeSpin 30s linear infinite reverse; }
.hero-shape-3{ width: 150px; height: 150px; border: 1px solid rgba(255,255,255,0.09); top: 38%; right: 640px; animation: shapeSpin 20s linear infinite; }
@keyframes shapeSpin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 2; }
.hero-orb-1 { width: 550px; height: 550px; background: rgba(207,42,30,0.2); top: -160px; right: -60px; animation: orbFloat 18s ease-in-out infinite; }
.hero-orb-2 { width: 380px; height: 380px; background: rgba(100,10,0,0.38); bottom: -90px; left: -70px; animation: orbFloat 22s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(28px,-28px) scale(1.08);} 66%{transform:translate(-18px,18px) scale(0.94);} }

.hero-dots { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; opacity: 0.3; }
.hero-dot { position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,0.85); border-radius: 50%; }
.hero-dot:nth-child(1){top:20%;left:10%;animation:dotPulse 4s ease-in-out infinite;}
.hero-dot:nth-child(2){top:45%;left:85%;animation:dotPulse 5s ease-in-out infinite 1s;}
.hero-dot:nth-child(3){top:70%;left:15%;animation:dotPulse 3.5s ease-in-out infinite .5s;}
.hero-dot:nth-child(4){top:30%;left:70%;animation:dotPulse 4.5s ease-in-out infinite 2s;}
.hero-dot:nth-child(5){top:80%;left:80%;animation:dotPulse 6s ease-in-out infinite 1.5s;}
.hero-dot:nth-child(6){top:15%;left:50%;animation:dotPulse 3s ease-in-out infinite .8s;}
.hero-dot:nth-child(7){top:60%;left:40%;animation:dotPulse 5.5s ease-in-out infinite 2.5s;}
.hero-dot:nth-child(8){top:90%;left:30%;animation:dotPulse 4s ease-in-out infinite .3s;}
@keyframes dotPulse{0%,100%{opacity:.1;transform:scale(1);}50%{opacity:1;transform:scale(1.9);}}
.hero-dot { position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,0.8); border-radius: 50%; box-shadow: 0 0 15px rgba(255,255,255,0.5); }
.hero-dot:nth-child(1) { top: 20%; left: 10%; animation: dotPulse 4s ease-in-out infinite; }
.hero-dot:nth-child(2) { top: 45%; left: 85%; animation: dotPulse 5s ease-in-out infinite 1s; }
.hero-dot:nth-child(3) { top: 70%; left: 15%; animation: dotPulse 3.5s ease-in-out infinite 0.5s; }
.hero-dot:nth-child(4) { top: 30%; left: 70%; animation: dotPulse 4.5s ease-in-out infinite 2s; }
.hero-dot:nth-child(5) { top: 80%; left: 80%; animation: dotPulse 6s ease-in-out infinite 1.5s; }
.hero-dot:nth-child(6) { top: 15%; left: 50%; animation: dotPulse 3s ease-in-out infinite 0.8s; }
.hero-dot:nth-child(7) { top: 60%; left: 40%; animation: dotPulse 5.5s ease-in-out infinite 2.5s; }
.hero-dot:nth-child(8) { top: 90%; left: 30%; animation: dotPulse 4s ease-in-out infinite 0.3s; }
.hero-in { position: relative; z-index: 10; max-width: 1500px; margin: 0 auto; padding: 180px 50px 80px; width: 100%; display: flex; flex-direction: column; justify-content: flex-end; min-height: 100vh; }
.hero-top { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
.hero-txt { max-width: 720px; position: relative; z-index: 11; }
.hero-txt::after { display: none; }
@media(max-width:1150px){ .hero-top { grid-template-columns: 1fr; } .hero-visual { display: none !important; } }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 22px; background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 60px; color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 32px; animation: fadeSlideUp 0.8s 0.1s both; }
.hero-badge .hbadge-ico i { font-size: 0.75rem; color: #22c55e; }
.hero-txt h1 { font-size: clamp(3.5rem, 5.5vw, 5.5rem); font-weight: 900; line-height: 1.1; color: #ffffff; letter-spacing: -0.02em; margin-bottom: 28px; }
.hero-txt h1 .text-accent {
  background: linear-gradient(135deg, #ff8a78 0%, #cf2a1e 55%, #a61e14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero-txt h1 .text-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8a78, rgba(207,42,30,0.4));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: accentLine 0.9s 1.3s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes accentLine { to { transform: scaleX(1); } }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 600px; line-height: 1.75; margin-bottom: 36px; animation: fadeSlideUp 0.8s 0.5s both; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); }
.hero .btn-secondary:hover { background: rgba(207,42,30,0.15); border-color: rgba(207,42,30,0.4); }

/* ── Hero Visual / Crossfade Image Frame ── */
.hero-visual { position: relative; z-index: 5; overflow: visible; }
.hero-mockup { width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; background: #08092a; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 40px 90px rgba(0,0,0,0.65), 0 0 50px rgba(207,42,30,0.12); position: relative; }
.hero-mockup img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-mockup-glow { position: absolute; inset: -50px; background: radial-gradient(circle, rgba(207,42,30,0.28), transparent 68%); z-index: -1; filter: blur(55px); pointer-events: none; }
.hv-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; will-change: opacity, transform; }
.hv-slide.hv-s1 { background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=900&q=85&fit=crop'); animation: hvFirst 15s ease-in-out infinite; }
.hv-slide.hv-s2 { background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=900&q=85&fit=crop'); animation: hvFade 15s ease-in-out infinite; animation-delay: 5s; }
.hv-slide.hv-s3 { background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=900&q=85&fit=crop'); animation: hvFade 15s ease-in-out infinite; animation-delay: 10s; }
@keyframes hvFirst { 0%,100%{ opacity:1; transform:scale(1.00); } 28%{ opacity:1; transform:scale(1.05); } 33%{ opacity:0; transform:scale(1.06); } 95%{ opacity:0; } }
@keyframes hvFade { 0%,100%{ opacity:0; transform:scale(1.00); } 5%{ opacity:1; } 28%{ opacity:1; transform:scale(1.05); } 33%{ opacity:0; transform:scale(1.06); } }
.hero-float-card { position: absolute; background: rgba(8,10,28,0.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 16px 22px; color: #fff; box-shadow: 0 16px 48px rgba(0,0,0,0.5); z-index: 10; animation: floatAnim 6s ease-in-out infinite; pointer-events: auto; display: flex; align-items: center; gap: 14px; }
.hero-float-card.c1 { bottom: -24px; left: -16px; animation-delay: 0s; }
.hero-float-card.c2 { top: -24px; right: -16px; animation-delay: 1.5s; }
.hero-float-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(207,42,30,0.15); border: 1px solid rgba(207,42,30,0.3); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.1rem; flex-shrink: 0; }
.hero-float-txt strong { display: block; font-size: 1.2rem; font-weight: 900; letter-spacing: -0.02em; color: #fff; font-family: var(--font-display); line-height: 1; }
.hero-float-txt span { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 3px; display: block; }

.hero-slider-track { display: flex; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hero-slide { min-width: 100%; height: 100%; flex-shrink: 0; position: relative; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(207,42,30,0.15) 0%, transparent 50%, rgba(0,0,0,0.3) 100%); pointer-events: none; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.1) brightness(0.9); }
.hero-mockup::before { content: ''; position: absolute; inset: 0; border-radius: 24px; padding: 1px; background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(207,42,30,0.3), rgba(255,255,255,0.1)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 5; }
.hero-slider-nav { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; z-index: 20; pointer-events: auto; background: rgba(0,0,0,0.55); backdrop-filter: blur(12px); padding: 6px 14px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.1); }
.h-slide-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-size: 0.65rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.h-slide-btn:hover { background: var(--red); border-color: var(--red); }
.h-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: 0.3s; }
.h-dot.active { background: var(--red); box-shadow: 0 0 12px rgba(207,42,30,0.5); }

/* ── Hero Stats ── */
.hero-stats { display: flex; gap: 60px; margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.2); width: 100%; animation: fadeSlideUp 0.8s 0.7s both; flex-wrap: wrap; justify-content: space-between; }
.sbox { position: relative; display: flex; align-items: center; gap: 20px; }
.sbox::after { content: ''; position: absolute; right: -30px; top: 10px; bottom: 10px; width: 1px; background: rgba(255,255,255,0.2); }
.sbox:last-child::after { display: none; }
.sbox .snum { font-size: 3rem; font-weight: 900; color: #ffffff; line-height: 1; letter-spacing: -0.03em; font-family: var(--font-display); }
.sbox .snum .count { color: inherit; }
.sbox .snum .sfx { color: var(--red); text-shadow: 0 0 20px rgba(207,42,30,0.3); }
.sbox .slbl { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4; max-width: 120px; }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.25); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; animation: fadeSlideUp 1s 1.2s both; }
.scroll-line { width: 1px; height: 35px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ── Hero Trusted ── */
.hero-trusted { width: 100%; margin-top: 60px; padding: 24px 0 10px; text-align: center; position: relative; z-index: 10; }
.ht-divider { width: 120px; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent); margin: 0 auto 24px; animation: htGrow 0.8s 0.4s both; transform-origin: center; }
.ht-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 28px; }
.ht-stage { overflow: hidden; position: relative; margin: 0 -50px; -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 100px, #000 calc(100% - 100px), transparent 100%); mask-image: linear-gradient(to right, transparent 0px, #000 100px, #000 calc(100% - 100px), transparent 100%); }
.ht-row { display: flex; gap: 16px; width: max-content; align-items: center; }
.ht-row--top { animation: htRight 60s linear infinite; padding: 8px 0; }
.ht-row--top:hover { animation-play-state: paused; }
.ht-row--bot { animation: htLeft 50s linear infinite; margin-top: 10px; padding: 8px 0; }
.ht-row--bot:hover { animation-play-state: paused; }
.ht-badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); border-radius: 60px; color: #ffffff; font-size: 0.92rem; font-weight: 600; white-space: nowrap; transition: 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.ht-badge i { font-size: 1rem; color: #fff; opacity: 0.85; }
.ht-badge:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.ht-row--bot .ht-badge { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); }
.ht-row--bot .ht-badge i { opacity: 0.7; }
.ht-logo { display: inline-flex; align-items: center; gap: 14px; padding: 10px 24px 10px 14px; background: rgba(255,255,255,0.04); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; white-space: nowrap; transition: 0.3s; cursor: default; }
.ht-logo:hover { background: rgba(255,255,255,0.08); border-color: rgba(207,42,30,0.25); transform: translateY(-3px); }
.ht-logo-mrk { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; color: #fff; letter-spacing: 0.04em; transition: 0.3s; flex-shrink: 0; }
.ht-logo:hover .ht-logo-mrk { transform: scale(1.08); }
.ht-logo-nm { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.55); transition: 0.3s; }
.ht-logo:hover .ht-logo-nm { color: rgba(255,255,255,0.8); }

/* ── Marquee Band ── */
.mband { background: var(--bg-alt); padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
@media (max-width: 768px) { .mband { padding: 16px 0 10px; } }
.mband::before, .mband::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.mband::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.mband::after { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
.mtrack { display: flex; gap: 0; animation: mqleft 60s linear infinite; width: max-content; }
.mitem { display: flex; align-items: center; gap: 18px; padding: 0 60px; font-size: 1.05rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; white-space: nowrap; letter-spacing: 0.06em; }
.mitem i { color: var(--red); font-size: 1.3rem; filter: drop-shadow(0 0 8px rgba(207,42,30,0.25)); }

/* ── Metrics ── */
.metrics-band { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 50px; }
.metrics-in { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.metrics-item { text-align: center; padding: 0 20px; position: relative; }
.metrics-item::after { content: ''; position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px; background: var(--border); }
.metrics-item:last-child::after { display: none; }
.metrics-num { font-size: 3.5rem; font-weight: 900; color: var(--text-main); line-height: 1; letter-spacing: -0.04em; }
.metrics-num .count { color: inherit; }
.metrics-num .sfx { color: var(--red); }
.metrics-lbl { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 10px; }
.metrics-bar { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 50px; }
.metrics-wrap { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.metric-item { text-align: center; padding: 20px 30px; position: relative; }
.metric-item::after { content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px; background: var(--border); }
.metric-item:last-child::after { display: none; }
.metric-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 900; color: var(--text-main); line-height: 1; letter-spacing: -0.04em; }
.metric-num span { color: var(--red); }
.metric-lbl { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 10px; }

/* ── Metrics Grid (dark section variant) ── */
.section-dark .metrics-grid { gap: 20px; }
.metrics-grid .dark-panel { text-align: center; padding: 36px 24px; }
.metrics-grid .dark-panel strong { display: block; font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; font-family: var(--font-display); letter-spacing: -0.03em; }
.metrics-grid .dark-panel span { color: rgba(255,255,255,0.7); font-size: 0.92rem; display: block; line-height: 1.5; }

/* ── Clients Marquee ── */
.crow { display: flex; gap: 16px; animation: mqleft 40s linear infinite; width: max-content; }
.ctile { width: auto; min-width: 170px; height: 80px; background: #fff; border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; gap: 14px; padding: 16px 26px; transition: 0.3s; cursor: pointer; }
.ctile i { font-size: 1.4rem; color: var(--red); }
.ctile span { font-weight: 600; font-size: 0.92rem; color: var(--text-main); white-space: nowrap; }
.ctile:hover { border-color: var(--red); transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ── Section Shared ── */
section { padding: 90px 0; }
#service-grid, .svc-bento { overflow: hidden; }
.container { max-width: 1500px; margin: 0 auto; padding: 0 50px; }
.slabel { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 18px; }
.slabel::before { content: ''; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
.stitle { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; }
.ssub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; }

.dark-section { background: #08080A; color: #fff; border-top: 1px solid rgba(255,255,255,0.05); }
.dark-section .stitle { color: #fff; }
.dark-section .ssub { color: rgba(255,255,255,0.6); }

.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #fff; overflow: hidden; }
.section-dark .section-title, .section-dark .section-copy, .section-dark p, .section-dark li { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 54px; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--red); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.76rem; font-weight: 800; margin-bottom: 18px; }
.section-kicker::before { content: ''; width: 20px; height: 2px; background: var(--red); border-radius: 2px; }
.section-title { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 18px; font-weight: 900; }
.section-copy { color: var(--text-muted); font-size: 1.04rem; max-width: 640px; line-height: 1.8; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; background: var(--red); color: #fff; border: none; border-radius: 60px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; box-shadow: 0 8px 30px rgba(207,42,30,0.35); letter-spacing: 0.01em; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 45px rgba(207,42,30,0.5); background: var(--red2); }
.btn-primary i { transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(5px); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; background: transparent; color: var(--text-main); border: 1.5px solid var(--border); border-radius: 60px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--red); color: var(--red); background: var(--red-light); }
.btn-secondary i { transition: transform 0.3s ease; }
.btn-secondary:hover i { transform: translateX(5px); }
.btn-secondary.dark, .section-dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.btn-secondary.dark:hover, .section-dark .btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Page Hero — light background (matches static design) ── */
.page-hero {
  position: relative; min-height: 60vh; display: flex; align-items: center;
  overflow: hidden; background: var(--bg-main); padding-top: 60px;
}
.home .page-hero, .front-page .page-hero { padding-top: 0; }
/* Radial red glows (subtle, matching static design) */
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 8% 35%, rgba(207,42,30,0.10) 0%, transparent 48%),
    radial-gradient(ellipse at 92% 72%, rgba(207,42,30,0.05) 0%, transparent 42%);
  z-index: 1; pointer-events: none;
}
/* Dot grid — fades in from right edge */
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 0; width: 52%; height: 100%;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(207,42,30,0.14) 1.5px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.45) 0%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.45) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 3; width: min(1500px,calc(100% - 48px)); margin: 0 auto; padding: 60px 0; }
.page-hero-inner h1 { font-size: clamp(2.6rem,5vw,4.2rem); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 18px; color: var(--text-main); }
.page-hero-inner p { color: var(--text-muted); font-size: 1.08rem; max-width: 640px; line-height: 1.7; }
.page-hero-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.page-hero-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero-breadcrumb span { color: var(--red); }
/* Bg image layer — only present on dark-variant heroes */
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; filter: brightness(0.52) saturate(0.75); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,26,53,0.88) 0%, rgba(15,23,42,0.78) 60%, rgba(14,22,40,0.86) 100%); }

/* ── Dark hero variant — add class page-hero--dark when hero has a background image ── */
.page-hero--dark {
  background: linear-gradient(135deg, #0a1a35 0%, #0f172a 60%, #0e1628 100%);
}
.page-hero--dark::before {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(207,42,30,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(59,130,246,0.07) 0%, transparent 50%);
}
.page-hero--dark::after {
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.07) 1.5px, transparent 0);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, transparent 100%);
}
/* All text in dark hero → white; overridden per element below with !important to beat Elementor inline styles */
.page-hero--dark, .page-hero--dark * { color: #fff; }
.page-hero--dark .page-hero-inner h1 { color: #fff !important; }
.page-hero--dark .page-hero-inner p { color: rgba(255,255,255,0.82) !important; -webkit-text-fill-color: rgba(255,255,255,0.82) !important; }
.page-hero--dark .page-hero-breadcrumb,
.page-hero--dark .page-hero-breadcrumb a { color: rgba(255,255,255,0.55) !important; -webkit-text-fill-color: rgba(255,255,255,0.55) !important; }
.page-hero--dark .page-hero-breadcrumb span { color: var(--red) !important; -webkit-text-fill-color: var(--red) !important; }
/* Accent gradient text */
.page-hero--dark .hero-copy .accent,
.page-hero--dark .page-hero-inner .accent {
  background: linear-gradient(135deg, #ff6b5b, #ffb199) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: var(--red) !important;
}
/* Eyebrow */
.page-hero--dark .eyebrow,
.page-hero--dark .hero-copy .eyebrow,
.page-hero--dark .page-hero-inner .eyebrow { color: var(--red) !important; -webkit-text-fill-color: var(--red) !important; }
/* Body text */
.page-hero--dark p,
.page-hero--dark .page-hero-inner p,
.page-hero--dark .hero-copy p { color: rgba(255,255,255,0.82) !important; -webkit-text-fill-color: rgba(255,255,255,0.82) !important; }
/* Cards */
.page-hero--dark .hero-card { background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.1) !important; box-shadow: none !important; }
.page-hero--dark .hero-mini { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.1) !important; }
.page-hero--dark .hero-mini:hover { background: rgba(207,42,30,0.18) !important; border-color: rgba(207,42,30,0.3) !important; }
.page-hero--dark .hero-mini strong { color: #fff !important; -webkit-text-fill-color: #fff !important; font-size: 1.4rem; }
.page-hero--dark .hero-mini span { color: rgba(255,255,255,0.65) !important; -webkit-text-fill-color: rgba(255,255,255,0.65) !important; }
/* Buttons */
.page-hero--dark .btn-primary { color: #fff !important; }
.page-hero--dark .btn-secondary { color: #fff !important; border-color: rgba(255,255,255,0.3) !important; background: rgba(255,255,255,0.06) !important; }
.page-hero--dark .btn-secondary:hover { background: rgba(207,42,30,0.2) !important; border-color: rgba(207,42,30,0.5) !important; }
/* Hero-copy overrides — must be !important because .hero-copy h1 / .hero-copy p
   are declared later in this sheet with higher cascade priority */
.page-hero--dark .hero-copy h1,
.page-hero--dark .hero-inner h1 { color: #fff !important; -webkit-text-fill-color: #fff !important; }
.page-hero--dark .hero-copy p,
.page-hero--dark .hero-inner > .hero-copy > p { color: rgba(255,255,255,0.82) !important; -webkit-text-fill-color: rgba(255,255,255,0.82) !important; }
.page-hero--dark .hero-copy .eyebrow { color: var(--red) !important; -webkit-text-fill-color: var(--red) !important; }
.page-hero--dark .hero-copy .accent {
  background: linear-gradient(135deg, #ff6b5b, #ffb199) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: transparent !important;
}
.section-orb, .page-hero .hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb.one { width: 420px; height: 420px; top: -120px; right: -80px; background: rgba(207, 42, 30, 0.08); }
.hero-orb.two { width: 260px; height: 260px; left: -60px; bottom: -80px; background: rgba(59, 130, 246, 0.06); }
.hero-inner { position: relative; z-index: 3; width: min(1500px, calc(100% - 48px)); margin: 0 auto; padding: 80px 0; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-inner--single { grid-template-columns: 1fr; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--red); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.76rem; font-weight: 700; margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(to right, var(--red), transparent); }
.hero-copy h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); line-height: 1.02; color: var(--text-main); letter-spacing: -0.04em; margin-bottom: 22px; font-weight: 900; }
.hero-copy p { color: var(--text-muted); font-size: 1.08rem; max-width: 640px; margin-bottom: 32px; line-height: 1.8; }
.hero-copy .accent { background: linear-gradient(135deg, #ff4d3d, #ff8a75); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: var(--red); }

/* ── Hero Card ── */
.hero-card { padding: 24px; background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 28px; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.08); }
.hero-card img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; display: block; }
.hero-card-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-mini { padding: 16px; border-radius: 16px; background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-main); transition: 0.3s; }
.hero-mini:hover { background: var(--red-light); border-color: rgba(207,42,30,0.15); }
.hero-mini strong { display: block; font-size: 1.4rem; margin-bottom: 4px; font-weight: 900; color: var(--red); }

/* ── Glass / Info / Metric / Quote / Role / Contact / FAQ Cards ── */
.glass-card, .info-card, .metric-card, .quote-card, .role-card, .contact-card, .faq-card {
  background: #ffffff; border-radius: 24px; padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--red), rgba(207,42,30,0.2)); opacity: 0; transition: 0.4s; z-index: 1; }
.glass-card:hover::before { opacity: 1; }
.glass-card > *, .info-card > * { position: relative; z-index: 1; }
.glass-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.1), 0 8px 20px -8px rgba(207,42,30,0.08); border-color: rgba(207,42,30,0.15); }
.glass-card .icon-badge { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.glass-card:hover .icon-badge { background: var(--red); color: #fff; transform: scale(1.05) rotate(-3deg); box-shadow: 0 10px 20px -5px rgba(207, 42, 30, 0.3); }
.glass-card h3, .info-card h3, .role-card h3, .contact-card h3, .faq-card h3 { font-size: 1.3rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.glass-card p, .info-card p, .role-card p, .contact-card p, .faq-card p, .quote-card p { color: var(--text-muted); line-height: 1.7; }

.glass-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.glass-card .card-link {
  margin-top: auto !important;
}

.section-dark .glass-card, .section-dark .info-card, .section-dark .metric-card {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
}
.section-dark .glass-card::before { background: linear-gradient(to right, var(--red), transparent); }
.section-dark .glass-card:hover { border-color: rgba(207,42,30,0.35); }
.section-dark .glass-card h3, .section-dark .glass-card p { color: #fff; }

.icon-badge { width: 64px; height: 64px; min-width: 64px; border-radius: 18px; background: var(--red-soft); color: var(--red); display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(207,42,30,0.1); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

/* ── Card Tags ── */
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.card-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-muted); font-size: 0.82rem; font-weight: 600; transition: 0.3s; letter-spacing: 0.01em; }
.card-tag:hover { background: var(--red-light); border-color: rgba(207,42,30,0.2); color: var(--red); }

/* ── Card Link ── */
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--red); font-size: 0.92rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; letter-spacing: 0.01em; }
.card-link i { transition: transform 0.3s ease; font-size: 0.8rem; }
.card-link:hover { gap: 14px; color: var(--red2); }
.card-link:hover i { transform: translateX(4px); }

.section-dark .card-tag { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.section-dark .card-tag:hover { background: rgba(207,42,30,0.15); border-color: var(--red); color: #fff; }

/* ── Glass Card hover accent glow ── */
.glass-card::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(207,42,30,0.05), transparent 70%); top: -120px; right: -120px; pointer-events: none; z-index: 0; transition: 0.6s; }
.glass-card:hover::after { transform: scale(1.3); opacity: 0.8; }
.metric-card strong { display: block; font-size: 2.6rem; line-height: 1; margin-bottom: 8px; }
.quote-card { background: linear-gradient(180deg, #ffffff, #fbfcfe); }
.quote-card .author { margin-top: 18px; color: var(--text-main); font-weight: 700; }
.dark-panel { padding: 36px; border-radius: 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: 0.4s; }
.dark-panel:hover { background: rgba(255,255,255,0.06); border-color: rgba(207,42,30,0.2); transform: translateY(-4px); }
.dark-panel h4 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.dark-panel p { color: rgba(255,255,255,0.65) !important; font-size: 0.92rem; line-height: 1.7; }

.check-list { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.check-list li { display: flex; gap: 12px; color: var(--text-muted); font-size: 0.95rem; }
.check-list li i { color: var(--red); margin-top: 5px; font-size: 0.85rem; }

.section-dark .check-list li { color: rgba(255,255,255,0.7); }
.section-dark .check-list li i { color: var(--red); }

/* ── Creative Dividers ── */
.section-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 0; }
.section-soft + section:not(.section-soft):not(.section-dark) { border-top: 1px solid var(--border); }

/* ── Pill/Badge refinements ── */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-main); font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.pill:hover { border-color: var(--red); color: var(--red); }

.section-dark .pill { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.section-dark .pill:hover { border-color: var(--red); color: #fff; background: rgba(207,42,30,0.15); }

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-main); font-size: 0.9rem; font-weight: 600; }

.role-meta, .contact-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 18px; }
.role-meta span, .contact-meta span { padding: 8px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--text-muted); font-size: 0.86rem; }

/* ── Image-based Glass Cards ── */
.glass-card.has-image {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.glass-card.has-image .image-panel {
  width: 100%;
  height: 220px;
  margin: 0;
  border-radius: 23px 23px 0 0;
  overflow: hidden;
}
.glass-card.has-image .image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.glass-card.has-image:hover .image-panel img {
  transform: scale(1.05);
}
.glass-card-body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  width: 100%;
}
.glass-card-body h3 {
  margin-bottom: 0;
}
.glass-card-body p {
  margin-bottom: 0;
}
.glass-card-body .badge-row {
  margin-top: auto;
  padding-top: 8px;
}

/* ── Grids ── */
.grid-2, .grid-3, .grid-4, .mosaic, .gallery-grid, .metrics-grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

/* ── Bento Grid ── */
.bento-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; grid-auto-flow: dense; }
.bento-wide { grid-column: span 2; }
.bento-hero {
  grid-column: span 2;
  grid-row: span 2;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  gap: 20px;
}
.bento-hero-desc {
  max-width: 90%;
  margin-bottom: 8px;
}
.bento-hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
}
.bento-hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.bento-hero-info .check-list {
  width: 100%;
}
.bento-hero-info .card-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bento-hero-info .card-link {
  margin-top: 24px !important;
}
.bento-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 10px;
}
.mock-dashboard {
  width: 100%;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mock-dash-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mock-dash-dots {
  display: flex;
  gap: 6px;
}
.mock-dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.mock-dash-dots span:nth-child(1) { background: #ff5f56; }
.mock-dash-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dash-dots span:nth-child(3) { background: #27c93f; }
.mock-dash-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}
.mock-dash-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mock-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-stat-card .lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-stat-card .val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
}
.mock-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.mock-chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--red), rgba(207, 42, 30, 0.3));
  border-radius: 4px 4px 0 0;
  min-height: 10%;
  transition: height 0.3s ease;
}
.bento-hero .icon-badge { width: 72px; height: 72px; font-size: 1.75rem; border-radius: 20px; }
.bento-hero h3 { font-size: 1.5rem; }
.bento-hero::after { width: 400px; height: 400px; top: -160px; right: -160px; background: radial-gradient(circle, rgba(207,42,30,0.08), transparent 70%); }
.bento-full { grid-column: 1 / -1; }
.bento-full::before { height: 4px; background: linear-gradient(to right, var(--red), rgba(207,42,30,0.4), var(--red)); }
.grid-4, .metrics-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mosaic { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
.stack { display: grid; gap: 24px; }

.image-panel { position: relative; min-height: 320px; overflow: hidden; border-radius: 30px; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-panel.tall { min-height: 540px; }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.78), transparent 56%); display: flex; align-items: flex-end; padding: 28px; color: #fff; }

/* ── SVC Grid / Cards ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.scard { background: #ffffff; border-radius: 24px; border: 1px solid var(--border); padding: 44px 40px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: all 0.35s ease; display: flex; flex-direction: column; align-items: flex-start; text-align: left; position: relative; overflow: hidden; }
.scard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--red), transparent); opacity: 0; transition: 0.35s; }
.scard:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.08); border-color: rgba(207,42,30,0.15); }
.scard:hover::before { opacity: 1; }
.scard-num { position: absolute; top: 24px; right: 28px; font-size: 3.5rem; font-weight: 900; color: rgba(207,42,30,0.05); line-height: 1; font-family: var(--font-display); letter-spacing: -0.04em; }
.scard-ico { width: 60px; height: 60px; background: #fef2f2; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--red); margin-bottom: 28px; transition: all 0.35s ease; }
.scard:hover .scard-ico { background: var(--red); color: #fff; transform: scale(1.08) rotate(-5deg); box-shadow: 0 10px 24px rgba(207,42,30,0.25); }
.scard h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; color: var(--text-main); letter-spacing: -0.02em; line-height: 1.2; }
.scard p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; flex: 1; }
.scard-link { color: var(--red); font-size: 0.88rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: 0.3s; letter-spacing: 0.02em; }
.scard-link:hover { color: var(--red2); gap: 10px; }

/* ── Story Grid / Cards ── */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.story-card { background: #fff; border-radius: 24px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: 0.35s ease; display: flex; flex-direction: column; }
.story-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.08); }
.story-img { height: 230px; width: 100%; object-fit: cover; transition: 0.5s; }
.story-card:hover .story-img { transform: scale(1.03); }
.story-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.story-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.story-tag { padding: 5px 12px; border-radius: 20px; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.story-tag.t1 { background: #eff6ff; color: #2563eb; }
.story-tag.t2 { background: #f0fdf4; color: #14532d; }
.story-tag.t3 { background: #fef2f2; color: var(--red); }
.story-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; color: var(--text-main); line-height: 1.35; letter-spacing: -0.02em; }
.story-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.story-link { color: var(--red); font-size: 0.88rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: 0.3s; letter-spacing: 0.02em; }
.story-link:hover { gap: 10px; color: var(--red2); }

/* ── Why Us ── */
.why-us-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-us-img { position: relative; border-radius: 32px; overflow: hidden; height: 600px; }
.why-us-img img { width: 100%; height: 100%; object-fit: cover; }
.why-us-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(207,42,30,0.15), transparent); }
.why-float-badge { position: absolute; bottom: 40px; right: -20px; z-index: 10; background: #fff; padding: 20px 28px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 16px; }
.why-float-badge .wfb-icon { width: 48px; height: 48px; background: #fef2f2; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--red); }
.why-float-badge .wfb-txt strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--text-main); line-height: 1; font-family: var(--font-display); }
.why-float-badge .wfb-txt span { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.why-us-list { display: flex; flex-direction: column; gap: 32px; margin-top: 44px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-item-num { min-width: 42px; height: 42px; background: #fef2f2; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--red); }
.why-item h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--text-main); letter-spacing: -0.01em; }
.why-item p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }
.why-card { background: #fff; padding: 50px; border-radius: 30px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; gap: 24px; align-items: flex-start; transition: 0.5s; }
.why-card:hover { transform: translateX(-10px); box-shadow: var(--shadow-lg); border-color: rgba(207,42,30,0.2); }
.why-card .wico { width: 64px; height: 64px; min-width: 64px; background: var(--red-light); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--red); transition: 0.4s; }
.why-card:hover .wico { background: var(--red); color: #fff; transform: scale(1.1); box-shadow: 0 10px 20px rgba(207,42,30,0.2); }
.why-card h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.why-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.why-badge { position: absolute; bottom: 30px; right: 30px; background: var(--red); color: #fff; padding: 25px 35px; border-radius: 24px; text-align: center; box-shadow: 0 20px 40px rgba(207,42,30,0.4); }
.why-badge strong { display: block; font-size: 3rem; font-weight: 800; line-height: 1; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.testi-card { background: #fff; border-radius: 24px; border: 1px solid var(--border); padding: 40px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: 0.35s ease; position: relative; display: flex; flex-direction: column; }
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.07); }
.testi-card::before { content: '\201C'; position: absolute; top: 24px; right: 32px; font-size: 5rem; color: rgba(207,42,30,0.07); font-family: Georgia, serif; line-height: 1; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 22px; }
.testi-stars i { color: #f59e0b; font-size: 0.9rem; }
.testi-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 24px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #ea4a3b); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.1rem; font-family: var(--font-display); }
.testi-info strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--text-main); }
.testi-info span { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ── Process ── */
#process { background: #0f172a; color: #fff; border-top: none; }
#process .stitle { color: #fff; }
#process .ssub { color: rgba(255,255,255,0.6); }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.proc-grid::before { content: ''; position: absolute; top: 68px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent); z-index: 0; }
.proc-grid::after { content: ''; position: absolute; top: 68px; left: 10%; width: 20%; height: 2px; background: var(--red); z-index: 1; box-shadow: 0 0 12px var(--red); animation: procLine 4s infinite linear; }
.proc-step { text-align: center; padding: 40px 28px; background: rgba(255,255,255,0.03); border-radius: 20px; border: 1px solid rgba(255,255,255,0.07); position: relative; transition: 0.4s; overflow: hidden; }
.proc-step:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); border-color: rgba(207,42,30,0.25); background: rgba(255,255,255,0.05); }
.proc-num { width: 56px; height: 56px; background: rgba(207,42,30,0.1); border: 1px solid rgba(207,42,30,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: var(--red); margin: 0 auto 24px; position: relative; z-index: 1; transition: 0.4s; }
.proc-step:hover .proc-num { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(207,42,30,0.35); }
.proc-step h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; color: #fff; letter-spacing: -0.01em; }
.proc-step p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.7; position: relative; z-index: 1; transition: 0.4s; }
.proc-step:hover p { color: rgba(255,255,255,0.85); }

/* ── Resources ── */
#resources { background: var(--bg-alt); }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.res-card { position: relative; border-radius: 30px; overflow: hidden; height: 380px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: 0.4s ease; cursor: pointer; }
.res-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.res-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: 0.5s; filter: brightness(0.6); }
.res-card:hover img { transform: scale(1.05); filter: brightness(0.5); }
.res-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 80%); z-index: 2; pointer-events: none; }
.res-content { position: relative; z-index: 3; }
.res-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); border-radius: 20px; color: #fff; font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1); }
.res-tag.green .t-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.res-tag.orange .t-dot { width: 8px; height: 8px; border-radius: 50%; background: #f97316; }
.res-tag.blue .t-dot { width: 8px; height: 8px; border-radius: 50%; background: #3b82f6; }
.res-card h3 { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.res-btn { display: inline-block; padding: 10px 20px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 30px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: 0.3s; }
.res-card:hover .res-btn { background: #fff; color: #000; }

/* ── CTA ── */
#cta { background: #f8fafc; padding: 120px 50px; }
.cta-box { max-width: 1300px; margin: 0 auto; background: linear-gradient(130deg, #cf2a1e 0%, #9b1208 100%); border-radius: 36px; padding: 80px 70px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 30px 70px rgba(207,42,30,0.25), 0 0 0 1px rgba(255,255,255,0.05); flex-wrap: wrap; gap: 48px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); top: -200px; right: -100px; pointer-events: none; }
.cta-box::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); bottom: -120px; right: 200px; pointer-events: none; }
.cta-txt { flex: 1; min-width: 300px; max-width: 580px; position: relative; z-index: 2; }
.cta-txt h2 { font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; font-weight: 900; line-height: 1.05; margin-bottom: 18px; letter-spacing: -0.03em; }
.cta-txt p { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; }
.cta-btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 17px 38px; background: #fff; color: var(--red); border-radius: 40px; font-weight: 800; font-size: 1rem; text-decoration: none; transition: 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.15); letter-spacing: 0.01em; }
.cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.2); background: #fff8f8; }
.cta-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-width: 300px; position: relative; z-index: 2; }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 22px; border: 1.5px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); color: #fff; border-radius: 60px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: 0.3s; backdrop-filter: blur(8px); }
.cta-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* ── Footer ── */
footer { position: relative; background: #111827; overflow: hidden; border-top: none; }
.footer-top { position: relative; z-index: 2; padding: 100px 50px 0; }
.fg, .footer-grid { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 70px; padding-bottom: 60px; }
.fb .flogo { display: flex; align-items: center; gap: 14px; text-decoration: none; margin-bottom: 20px; }
.flogo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.fb .flogo img { height: 44px; width: auto; background: #fff; padding: 8px; border-radius: 14px; }
.fb .flogo-txt { font-size: 1.15rem; font-weight: 800; color: #ffffff; line-height: 1.1; letter-spacing: -0.02em; }
.fb .flogo-txt em { font-style: normal; color: #ff7b6a; display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.fb p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
.footer-social { display: flex; gap: 12px; margin-top: 30px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 1rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(207,42,30,0.25); }
.fc h4 { color: #ffffff; font-size: 1.05rem; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 12px; }
.fc h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); border-radius: 2px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fc ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.22s; display: inline-flex; align-items: center; gap: 7px; }
.fc ul li a::before { content: '\f054'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.5rem; color: var(--red); flex-shrink: 0; transition: transform 0.2s; }
.fc ul li a:hover { color: rgba(255,255,255,0.95); }
.fc ul li a:hover::before { transform: translateX(3px); }
.fci-row { display: flex; gap: 15px; margin-bottom: 20px; }
.fci { width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,0.03); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1rem; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.fct { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.5; }
.fct a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
.fct a:hover { color: var(--red); }
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  height: 80px;
  color: var(--bg-main);
  line-height: 0;
  transform: translateY(-99%);
  pointer-events: none;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-wave path {
  fill: currentColor;
}

.footer-newsletter { margin-top: 20px; }
.footer-newsletter form { display: flex; gap: 0; max-width: 380px; align-items: center; }
.footer-newsletter input:not([type="hidden"]) { flex: 1; height: 50px; padding: 0 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-right: none; border-radius: 12px 0 0 12px; color: #fff; font-size: 0.9rem; outline: none; font-family: inherit; transition: 0.3s; box-sizing: border-box; }
.footer-newsletter input:not([type="hidden"])::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:not([type="hidden"]):focus { border-color: rgba(255,255,255,0.2); }
.footer-newsletter button { height: 50px; padding: 0 22px; background: var(--red); border: 1px solid transparent; border-left: none; border-radius: 0 12px 12px 0; color: #fff; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: 0.3s; font-family: inherit; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; }
.footer-newsletter button:hover { background: var(--red2); }

.footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.05); padding: 30px 50px; }
.fbot-in { max-width: 1500px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.fbot-in p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.fbot-links { display: flex; gap: 30px; }
.fbot-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
.fbot-links a:hover { color: var(--red); }

.footer-col h4 { font-size: 1.02rem; margin-bottom: 20px; color: #ffffff; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.footer-links { display: flex; gap: 24px; }
footer p, footer li, footer a { color: rgba(255,255,255,0.6); text-decoration: none; }

.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; font-size: 1.1rem;
  cursor: pointer; box-shadow: 0 8px 25px rgba(207,42,30,0.35);
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(207,42,30,0.48); }

/* ── Forms ── */
.form-shell { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: stretch; }
.contact-form { background: rgba(20, 20, 25, 0.6); backdrop-filter: blur(20px); padding: 32px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: block; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); font-weight: 600; margin-bottom: 8px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(10, 10, 15, 0.8); color: #fff; font: inherit; padding: 14px 16px; border-radius: 16px; outline: none; transition: all 0.3s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(207, 42, 30, 0.6); box-shadow: 0 0 15px rgba(207, 42, 30, 0.2); background: #050505; }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form button { width: 100%; margin-top: 18px; border: none; cursor: pointer; }

/* ── Scroll Reveal ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.reveal { transform: translateY(32px); }
.reveal-l { transform: translateX(-32px); }
.reveal-r { transform: translateX(32px); }
.reveal.in-view, .reveal-l.in-view, .reveal-r.in-view { opacity: 1; transform: none; }
.svc-grid .reveal:nth-child(2), .story-grid .reveal:nth-child(2), .proc-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.svc-grid .reveal:nth-child(3), .story-grid .reveal:nth-child(3), .proc-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.svc-grid .reveal:nth-child(4), .proc-grid .reveal:nth-child(4) { transition-delay: 240ms; }
.svc-grid .reveal:nth-child(5) { transition-delay: 120ms; }
.svc-grid .reveal:nth-child(6) { transition-delay: 200ms; }
.hero-btns.reveal, .hero-visual.reveal-l { transition-delay: 0ms !important; }

/* ── Creative Enhancements ── */
.gradient-text { background: linear-gradient(135deg, var(--red), #ff6d56); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-border { position: relative; }
.gradient-border::after { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(207,42,30,0.2), transparent, rgba(207,42,30,0.1)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

.card-glow { position: relative; }
.card-glow::before { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(207,42,30,0.08), transparent 70%); top: -60px; right: -60px; pointer-events: none; }

/* Subtle hover lift for any card-like element */
.hover-lift { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.08); }

/* Inline code / highlight */
.highlight { background: linear-gradient(to top, rgba(207,42,30,0.1) 40%, transparent 40%); display: inline; }

/* ── Media: max-width 1400px ── */
@media(max-width: 1400px) {
  /* 1200–1400px: keep side-by-side, shrink visual */
  .hero-in { flex-direction: row; align-items: center; padding-top: 80px; gap: 32px; padding-bottom: 56px; }
  .hero-txt h1 { font-size: clamp(2.8rem, 3.6vw, 4rem); }
  .hero-visual { display: block; flex: 0 0 38%; max-width: 38%; }
  .hero-stats { gap: 32px; margin-top: 52px; }
  .metrics-band { padding: 50px 24px; }
}
@media(max-width: 1200px) {
  /* below 1200px: stacked, centered */
  .hero-in { flex-direction: column; text-align: center; align-items: center; padding-top: 60px; padding-bottom: 40px; }
  .hero-txt { display: flex; flex-direction: column; align-items: center; max-width: 100%; flex: 0 0 100%; }
  .hero-txt h1 { font-size: clamp(2.8rem, 5vw, 3.8rem); max-width: 700px; }
  .hero-desc { text-align: center; max-width: 600px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; gap: 40px; }
  .hero-visual { display: none; }
}

/* ── Hero slider: always visible between 1024–1440 px ──────────────────────
   Override the max-1400 hide so mid-range desktops/laptops still see the
   slider. Layout: centred text stack → slider as a wide cinematic strip below.
   Float cards are repositioned to hug the mockup edges at this size. */
@media (min-width: 1024px) and (max-width: 1440px) {
  .hero-visual {
    display: block !important;
    width: min(820px, calc(100vw - 80px)) !important;
    height: 400px !important;
    margin: 48px auto 0 !important;
    pointer-events: auto !important;
    /* Subtle lift so it reads as a focal element */
    filter: drop-shadow(0 32px 48px rgba(0,0,0,0.45));
  }
  /* Float cards: tucked in so they don't overflow at reduced widths */
  .hero-float-card.c1 { bottom: 12px; left: 12px; padding: 14px 18px; }
  .hero-float-card.c2 { top: 12px;   right: 12px; padding: 14px 18px; }
  .hero-float-icon { width: 38px; height: 38px; font-size: 1rem; }
  .hero-float-txt strong { font-size: 0.9rem; }
  .hero-float-txt span   { font-size: 0.74rem; }
  /* Slider nav sits flush below the mockup at this breakpoint */
  .hero-slider-nav { bottom: -44px; }
  /* Give the stats row some breathing room below the slider */
  .hero-stats { margin-top: 90px; }
}

/* ── Media: max-width 1100px ── */
@media (max-width: 1100px) {
  .hero-inner, .mosaic, .form-shell, .grid-2, .grid-3, .grid-4, .metrics-grid, .footer-grid, .fg, .svc-bento, .bento-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .footer-grid { gap: 36px; }
}

/* ── Media: max-width 992px ── */
@media(max-width: 992px) {
  .fg { grid-template-columns: 1fr 1fr; gap: 50px; }
  .hero-stats { gap: 30px; }
  .hero-stats .sbox .snum { font-size: 2.8rem; }
  .scroll-indicator { display: none; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .glass-large { grid-column: span 1; }
  .bento-wide { grid-column: span 1; }
  .bento-hero { grid-column: span 1; grid-row: span 1; display: flex !important; flex-direction: column; }
  .bento-hero-visual { display: none; }
  .bento-full { grid-column: span 2; }
}

/* ── Media: max-width 860px ── */
@media (max-width: 860px) {
  .topbar { padding: 7px 0; font-size: 0.76rem; }
  .tb-in > span { display: none; }
  .nav-links { display: none; }
  .hamburger, .hbg { display: flex; }
  .hero-inner, .mosaic, .form-shell, .grid-2, .grid-3, .grid-4, .metrics-grid, .footer-grid, .field-grid, .svc-bento, .bento-grid { grid-template-columns: 1fr; }
  /* Footer stays 2 columns between 860px and 768px — drops to 1 column at 768px */
  .fg { grid-template-columns: 1fr 1fr; gap: 36px; }
  .bento-wide, .bento-hero, .bento-full { grid-column: span 1; }
  .nav-in, .nav-inner { height: 64px; padding: 0 24px; }
  .page-hero { min-height: auto; padding: 60px 0 40px; }
  .hero-inner { padding: 40px 0 60px; gap: 36px; }
  section { padding: 82px 0; }
  .hero-card { padding: 18px; }
  .hero-card img { height: 240px; border-radius: 16px; }
  .hero-card-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-mini { padding: 12px; text-align: center; }
  .hero-mini strong { font-size: 1.1rem; }
  .hero-mini span { font-size: 0.78rem; }
  .hero-copy h1 { font-size: clamp(2.4rem, 7vw, 3.5rem); }
  .hero-copy p { font-size: 1rem; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .glass-card { padding: 28px; }
  .glass-card-body { padding: 24px 28px 28px; }
  .icon-badge { width: 54px; height: 54px; font-size: 1.25rem; margin-bottom: 18px; }
  .bento-hero .icon-badge { width: 54px; height: 54px; font-size: 1.25rem; border-radius: 18px; }
  .bento-hero h3 { font-size: 1.3rem; }
  .svc-bento, .bento-grid { gap: 18px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .fbot-in { flex-direction: column; gap: 15px; align-items: flex-start; }
  .dark-panel { padding: 28px; }
  .metrics-grid .dark-panel strong { font-size: 2.2rem; }
  .mosaic .image-panel.tall { min-height: 320px; }
  .section-dark .btn-row { flex-direction: column; }
  .section-dark .btn-row a { width: 100%; justify-content: center; }
}

/* ── Media: max-width 768px ── */
@media(max-width: 768px) {
  .card-stats-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .topbar { padding: 6px 0; font-size: 0.74rem; }
  .tb-in { justify-content: center; }
  .tb-in > span { display: none; }
  section { padding: 70px 0; }
  .nav-links, .nav-cta, .nav-cta-fixed, .nav-search { display: none !important; }
  .hbg, .hamburger { display: flex; }
  nav#nav { top: 12px; width: calc(100% - 24px); height: 60px; }
  nav#nav.solid { top: 8px; height: 56px; width: calc(100% - 20px); }
  .nav-in, .nav-inner { height: 100%; padding: 0 18px; }
  .nav-logo img { height: 34px; }
  nav.solid .nav-logo img { height: 30px; }
  .nav-logo-txt { font-size: 0.95rem; }
  .ht-stage { margin: 0; }

  .hero { min-height: 100dvh; align-items: flex-end; padding: 0 !important; }
  .hero-in { padding: 0 24px; align-items: flex-start; text-align: left; padding-top: 100px; min-height: 100dvh; justify-content: flex-end; }
  .back-to-top { bottom: 18px; right: 18px; width: 48px; height: 48px; font-size: 1rem; }
  .container { padding: 0 24px; }
  .hero-txt h1 { font-size: clamp(2.6rem, 10vw, 3.8rem); margin-bottom: 12px; letter-spacing: -0.03em; }
  .hero-desc { font-size: 0.88rem; max-width: 100%; margin-bottom: 22px; line-height: 1.6; }
  .hero-badge { font-size: 0.7rem; padding: 8px 16px; gap: 8px; margin-bottom: 22px; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .hero-btns a { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.92rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; width: 100%; }
  .sbox { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 12px 10px; text-align: center; backdrop-filter: blur(4px); }
  .sbox .snum { font-size: 1.15rem; }
  .sbox .snum .sfx { font-size: 0.85em; }
  .sbox .slbl { font-size: 0.6rem; margin-top: 2px; letter-spacing: 0.02em; opacity: 0.7; }
  .hero-visual { display: none; }
  .hero-trusted { margin-top: 36px; padding: 12px 0 0; }
  .hero-trusted .ht-label { font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 0.14em; }
  .ht-divider { width: 80px; margin-bottom: 16px; }
  .ht-logo { padding: 8px 16px 8px 10px; gap: 10px; }
  .ht-logo-mrk { width: 34px; height: 34px; font-size: 0.6rem; border-radius: 8px; }
  .ht-logo-nm { font-size: 0.75rem; }
  .ht-row { gap: 10px; }
  .ht-row--top { animation: htRight 40s linear infinite; }
  .ht-row--bot { animation: htLeft 35s linear infinite; margin-top: -22px; }

  .metrics-band { padding: 36px 24px; }
  .metrics-in { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .metrics-item:nth-child(2)::after { display: none; }
  .metrics-item { padding: 0 8px; }
  .metrics-num { font-size: 2.4rem; }
  .metrics-lbl { font-size: 0.72rem; }

  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .scard { padding: 20px; border-radius: 16px; display: flex; align-items: flex-start; gap: 16px; }
  .scard:hover { transform: translateY(-6px); }
  .scard-ico { width: 48px; height: 48px; min-width: 48px; font-size: 1.2rem; border-radius: 12px; margin-bottom: 0; }
  .scard h3 { font-size: 1.05rem; margin-bottom: 4px; }
  .scard p { font-size: 0.85rem; }
  .scard-num { display: none; }
  .scard::before { border-radius: 16px; }

  .page-hero { min-height: auto; padding: 40px 0 20px; }
  .hero-inner { padding: 30px 0 40px; gap: 28px; width: min(1500px, calc(100% - 32px)); }
  .hero-card img { height: 200px; }
  .hero-card-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-mini { padding: 10px; }
  .hero-copy h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-copy p { font-size: 0.92rem; margin-bottom: 24px; }
  .glass-card { padding: 24px; }
  .glass-card-body { padding: 20px 24px 24px; }
  .icon-badge { width: 48px; height: 48px; font-size: 1.15rem; }
  .section-head { margin-bottom: 28px; }
  .section-kicker { font-size: 0.7rem; }
  .eyebrow { font-size: 0.7rem; }

  .ind-grid { grid-template-columns: 1fr; gap: 16px; }
  .icard { height: 220px; border-radius: 20px; }
  .iveil { padding: 24px; }
  .iico { font-size: 1.4rem; margin-bottom: 10px; }
  .icard h3 { font-size: 1.2rem; }

  .why-us-wrap { grid-template-columns: 1fr; gap: 40px; }
  .why-us-img { height: 340px; }
  .why-float-badge { right: 10px; bottom: 20px; padding: 14px 20px; }
  .why-float-badge .wfb-txt strong { font-size: 1.2rem; }
  .why-float-badge .wfb-txt span { font-size: 0.75rem; }
  .why-us-list { margin-top: 28px; gap: 24px; }
  .why-item { gap: 16px; }
  .why-item-num { width: 36px; height: 36px; min-width: 36px; font-size: 0.88rem; }

  .proc-grid { grid-template-columns: 1fr; gap: 16px; padding-left: 28px; }
  .proc-grid::before { left: 4px; top: 8px; bottom: 8px; right: auto; width: 1px; height: auto; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08) 10%, rgba(255,255,255,0.08) 90%, transparent); }
  .proc-grid::after { left: 3px; top: 0; right: auto; bottom: auto; width: 3px; height: 70px; background: var(--red); box-shadow: 0 0 12px var(--red); animation: procLineVert 4s infinite linear; }
  .proc-step { padding: 28px 20px; border-radius: 18px; text-align: left; display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
  .proc-num { width: 48px; height: 48px; min-width: 48px; font-size: 1.15rem; border-radius: 14px; margin: 0; }
  .proc-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .proc-step p { font-size: 0.85rem; }
  .proc-step > div { flex: 1; min-width: 0; }

  .crow { gap: 12px; animation-duration: 30s; }
  .ctile { min-width: 140px; height: 64px; padding: 12px 18px; gap: 10px; border-radius: 12px; }
  .ctile i { font-size: 1.1rem; }
  .ctile span { font-size: 0.8rem; }

  .mband { padding: 18px 0; }
  .mband::before, .mband::after { width: 30px; }
  .mitem { padding: 0 24px; font-size: 0.8rem; gap: 10px; }
  .mitem i { font-size: 0.95rem; }

  .testi-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .testi-card { padding: 28px; }
  .testi-card::before { font-size: 3.5rem; top: 16px; right: 20px; }
  .testi-card p { font-size: 0.92rem; margin-bottom: 22px; }

  #studies { padding: 80px 24px !important; }
  #studies .container > div:first-child { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
  .studies-grid { grid-template-columns: 1fr !important; }
  .studies-grid > div:last-child { display: flex !important; }
  #studies .story-body { padding: 28px; }
  #studies .story-body h3 { font-size: 1.2rem; }
  #studies .story-body p { font-size: 0.88rem; }
  #studies .story-body > div[style*="grid-template-columns"] { padding: 16px !important; gap: 10px !important; }
  #studies .story-body > div[style*="grid-template-columns"] div[style*="font-size:1.8rem"] { font-size: 1.3rem !important; }
  #studies .story-body > div[style*="grid-template-columns"] div[style*="font-size:0.75rem"] { font-size: 0.68rem !important; }
  .story-card .story-tag { font-size: 0.7rem; padding: 4px 10px; }

  .res-grid { grid-template-columns: 1fr; gap: 18px; }
  .res-card { height: 280px; padding: 24px; }

  #cta { padding: 60px 24px; }
  .cta-box { flex-direction: column; padding: 48px 32px; gap: 32px; border-radius: 28px; }
  .cta-txt { min-width: 0; max-width: 100%; }
  .cta-txt h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-txt p { font-size: 0.95rem; margin-bottom: 28px; }
  .cta-btn-primary { padding: 14px 28px; font-size: 0.92rem; }
  .cta-links { min-width: 0; gap: 10px; }

  /* Footer always 2-col on mobile — brand spans full width */
  .fg { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .fg .fb { grid-column: 1 / -1; }
  .footer-top { padding: 48px 24px 0; }
  .fb p { max-width: 100%; font-size: 0.9rem; }
  .fc h4 { font-size: 0.95rem; margin-bottom: 18px; }
  .fc ul { gap: 10px; }
  .fc ul li a { font-size: 0.88rem; }
  .fci-row { word-break: break-word; }
  .footer-newsletter form { max-width: 100%; flex-direction: row; gap: 0; align-items: stretch; }
  .footer-newsletter input:not([type="hidden"]) { flex: 1; min-width: 0; border-radius: 12px 0 0 12px; border-right: none; box-sizing: border-box; }
  .footer-newsletter button { flex-shrink: 0; height: 50px; padding: 0 18px; justify-content: center; border-radius: 0 12px 12px 0; font-size: 0.85rem; }
  .cta-btn-primary, .hero-btns a { min-height: 48px; }
  .footer-bottom { padding: 24px; }
  .fbot-in { flex-direction: column; gap: 14px; text-align: center; }
  .fbot-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .fbot-links a { font-size: 0.82rem; }
  .fbot-in p { font-size: 0.8rem; }
  .back-to-top { bottom: 18px; right: 18px; width: 48px; height: 48px; font-size: 1rem; border-radius: 50%; }
  .mc-chat-launcher { bottom: 82px; right: 18px; }
}

/* ── Media: max-width 540px ── */
@media (max-width: 540px) {
  .topbar-inner, .tb-in { padding: 0 16px; }
  .container, .footer-grid, .footer-bottom-inner, .hero-inner { width: min(1500px, calc(100% - 32px)); }
  .hero-copy h1 { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .section-title { font-size: 2rem; }
  .contact-form, .glass-card, .info-card, .quote-card, .role-card, .contact-card, .faq-card, .dark-panel { padding: 22px; }
  .glass-card-body { padding: 18px 22px 22px; }
  .section-head { margin-bottom: 24px; }
  .hero-card { padding: 14px; }
  .hero-card img { height: 160px; }
  .hero-card-grid { gap: 6px; }
  .btn-row { flex-direction: column; }
  .btn-row a { width: 100%; justify-content: center; text-align: center; }
}

/* ── Media: max-width 480px ── */
@media(max-width: 480px) {
  /* Footer always 2-col on mobile — brand spans full width */
  .fg { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .fg .fb { grid-column: 1 / -1; }
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .nav-in, .nav-inner { padding: 0 16px; }
  .hero-in { padding: 0 16px; padding-top: 20px; }
  .hero-txt h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); margin-bottom: 10px; }
  .hero-desc { font-size: 0.82rem; margin-bottom: 18px; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; gap: 6px; }
  .hero-stats { gap: 8px; margin-top: 16px; }
  .sbox { padding: 10px 8px; }
  .sbox .snum { font-size: 1rem; }
  .sbox .slbl { font-size: 0.52rem; }
  .hero-trusted { margin-top: 28px; }
  .hero-trusted .ht-label { font-size: 0.75rem; margin-bottom: 12px; }
  .ht-logo-mrk { width: 28px; height: 28px; font-size: 0.5rem; border-radius: 6px; }
  .ht-logo-nm { font-size: 0.65rem; }
  .ht-logo { padding: 6px 12px 6px 8px; gap: 8px; }
  .ht-row { gap: 8px; }
  .ht-row--bot { margin-top: -18px; }
  .metrics-band { padding: 28px 16px; }
  .metrics-in { gap: 18px 0; }
  .metrics-num { font-size: 1.9rem; }
  .metrics-lbl { font-size: 0.65rem; }
  .metrics-item { padding: 0 4px; }
  .page-hero { padding: 30px 0 10px; }
  .hero-inner { padding: 20px 0 30px; gap: 24px; }
  .hero-card img { height: 180px; }
  .hero-card-grid { gap: 6px; }
  .hero-mini { padding: 8px; }
  .hero-mini strong { font-size: 1rem; }
  .hero-mini span { font-size: 0.7rem; }
  .hero-copy h1 { font-size: clamp(1.8rem, 9vw, 2.2rem); }
  .hero-copy p { font-size: 0.85rem; margin-bottom: 20px; }
  .glass-card { padding: 20px; border-radius: 20px; }
  .glass-card-body { padding: 16px 20px 20px; gap: 10px; }
  .glass-card.has-image .image-panel { height: 180px; border-radius: 19px 19px 0 0; }
  .glass-card h3 { font-size: 1.1rem; }
  .icon-badge { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 16px; border-radius: 14px; }
  .scard { padding: 16px; gap: 12px; border-radius: 14px; }
  .scard-ico { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; border-radius: 10px; }
  .scard h3 { font-size: 0.95rem; }
  .scard p { font-size: 0.8rem; }
  .scard-num { display: none; }
  .testi-grid { gap: 16px; margin-top: 32px; }
  .testi-card { padding: 22px; }
  .testi-card::before { font-size: 2.8rem; top: 12px; right: 16px; }
  .testi-stars { margin-bottom: 16px; }
  .testi-stars i { font-size: 0.78rem; }
  .testi-card p { font-size: 0.85rem; margin-bottom: 18px; }
  .testi-author { padding-top: 18px; gap: 12px; }
  .testi-avatar { width: 36px; height: 36px; font-size: 0.9rem; }
  .testi-info strong { font-size: 0.85rem; }
  .testi-info span { font-size: 0.75rem; }
  #studies { padding: 60px 16px !important; }
  .studies-grid { gap: 16px !important; }
  .studies-grid > div:first-child > div:first-child { height: 220px !important; }
  .studies-grid > div:last-child > div > div:first-child { height: 150px !important; }
  #studies .story-body { padding: 20px; }
  #studies .story-body h3 { font-size: 1.05rem; }
  #studies .story-body > div[style*="grid-template-columns"] { padding: 12px !important; gap: 8px !important; border-radius: 12px !important; }
  #studies .story-body > div[style*="grid-template-columns"] div[style*="font-size:1.8rem"] { font-size: 1.1rem !important; }
  #studies .story-body > div[style*="grid-template-columns"] div[style*="font-size:0.75rem"] { font-size: 0.6rem !important; }
  .res-grid { gap: 14px; margin-top: 28px; }
  .res-card { height: 240px; padding: 20px; border-radius: 24px; }
  .res-card h3 { font-size: 1.15rem; }
  .res-btn { font-size: 0.78rem; padding: 8px 16px; }
  .icard { height: 180px; border-radius: 16px; }
  .iveil { padding: 18px; }
  .icard h3 { font-size: 1.05rem; }
  .why-us-img { height: 240px; }
  .why-float-badge { padding: 12px 16px; bottom: 14px; right: 8px; border-radius: 12px; gap: 10px; }
  .why-float-badge .wfb-icon { width: 36px; height: 36px; font-size: 1rem; }
  .why-float-badge .wfb-txt strong { font-size: 1.1rem; }
  .why-float-badge .wfb-txt span { font-size: 0.7rem; }
  .proc-step { padding: 20px 16px; gap: 14px; }
  .proc-num { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }
  .proc-step h3 { font-size: 0.95rem; }
  .proc-step p { font-size: 0.8rem; }
  .ctile { min-width: 120px; height: 54px; padding: 10px 14px; gap: 8px; }
  .ctile i { font-size: 1rem; }
  .ctile span { font-size: 0.72rem; }
  .crow { gap: 10px; animation-duration: 24s; }
  .mband { padding: 14px 0; }
  .mitem { padding: 0 16px; font-size: 0.72rem; gap: 8px; }
  .mitem i { font-size: 0.85rem; }
  #cta { padding: 48px 16px; }
  .cta-box { padding: 36px 20px; gap: 24px; border-radius: 20px; }
  .cta-txt h2 { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .cta-txt p { font-size: 0.85rem; margin-bottom: 22px; }
  .cta-btn-primary { font-size: 0.88rem; padding: 14px 24px; }
  .cta-links { gap: 8px; }
  .cta-links a { font-size: 0.82rem; padding: 12px 16px; }
  .footer-top { padding: 36px 16px 0; }
  .fg { gap: 28px; }
  .fb p { font-size: 0.85rem; }
  .footer-social { gap: 10px; }
  .footer-social a { width: 38px; height: 38px; font-size: 0.9rem; }
  .fc h4 { font-size: 0.9rem; }
  .footer-bottom { padding: 18px 16px; }
  .fbot-links { gap: 12px; }
}

/* ── Media: max-width 380px ── */
@media(max-width: 380px) {
  .hero-txt h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .hero-stats { gap: 6px; }
  .sbox { padding: 8px 6px; }
  .sbox .snum { font-size: 0.88rem; }
  .sbox .slbl { font-size: 0.48rem; }
  .metrics-num { font-size: 1.6rem; }
  .scard { padding: 14px; gap: 10px; }
  .scard-ico { width: 34px; height: 34px; min-width: 34px; font-size: 0.85rem; }
  .testi-card { padding: 18px; }
  .testi-card p { font-size: 0.8rem; }
  .testi-avatar { width: 32px; height: 32px; font-size: 0.8rem; }
  .testi-info strong { font-size: 0.8rem; }
  #studies { padding: 48px 12px !important; }
  .studies-grid > div:first-child > div:first-child { height: 180px !important; }
  .studies-grid > div:last-child > div > div:first-child { height: 120px !important; }
  #studies .story-body { padding: 16px; }
  #studies .story-body > div[style*="grid-template-columns"] { padding: 10px !important; }
  #studies .story-body > div[style*="grid-template-columns"] div[style*="font-size:1.8rem"] { font-size: 1rem !important; }
  .res-card { height: 200px; padding: 16px; border-radius: 20px; }
  .res-card h3 { font-size: 1rem; }
  .icard { height: 160px; }
  .why-us-img { height: 200px; }
  .crow { gap: 8px; }
  .ctile { min-width: 100px; height: 46px; padding: 8px 10px; }
  .ctile i { font-size: 0.85rem; }
  .ctile span { font-size: 0.65rem; }
  .cta-box { padding: 28px 16px; gap: 20px; border-radius: 16px; }
  .cta-txt h2 { font-size: clamp(1.2rem, 7vw, 1.5rem); }
  #cta { padding: 40px 12px; }
}

/* ── @supports overflow:clip ── */
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
  .hero, .mob, .mobile-panel, .mband, #cta, footer { overflow-x: clip; }
}

/* ── Animation Keyframes ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shapeSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbFloat { 0%,100%{ transform: translate(0,0) scale(1); } 33%{ transform: translate(30px,-30px) scale(1.08); } 66%{ transform: translate(-20px,20px) scale(0.95); } }
@keyframes dotPulse { 0%,100%{ opacity: 0.1; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.8); } }
@keyframes floatAnim { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@keyframes htIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes htGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes htRight { 0% { transform: translateX(-33.333%); } 100% { transform: translateX(0); } }
@keyframes htLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100%{ opacity: 1; transform: scaleY(1); } 50%{ opacity: 0.3; transform: scaleY(0.5); } }
@keyframes mqleft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes procLine { 0% { transform: translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(400%); opacity: 0; } }
@keyframes procLineVert { 0% { transform: translateY(-70px); opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { transform: translateY(700px); opacity: 0; } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 20px rgba(207,42,30,0.1); } 50% { box-shadow: 0 0 40px rgba(207,42,30,0.2); } }

/* ════════════════════════════════════════════════════════
   SITE SEARCH OVERLAY  —  e-commerce style instant search
   ════════════════════════════════════════════════════════ */
.srch-overlay {
  position: fixed; inset: 0; z-index: 9800;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.srch-overlay.open { opacity: 1; pointer-events: all; }
.srch-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,10,14,0.75);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.srch-panel {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) translateY(-28px);
  width: min(820px, calc(100% - 40px));
  max-height: 88vh;
  background: #fff; border-radius: 0 0 28px 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.srch-overlay.open .srch-panel { transform: translateX(-50%) translateY(0); }

.srch-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px 16px; border-bottom: 1px solid var(--border);
  background: #fff; position: sticky; top: 0; z-index: 2; flex-shrink: 0;
}
.srch-input-wrap {
  flex: 1; display: flex; align-items: center; gap: 12px;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 0 16px; transition: 0.2s;
}
.srch-input-wrap:focus-within {
  border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 4px rgba(207,42,30,0.08);
}
.srch-icon { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; }
.srch-input-wrap input {
  flex: 1; border: none; background: transparent; font-family: inherit;
  font-size: 1.05rem; color: var(--text-main); outline: none; height: 52px;
}
.srch-input-wrap input::placeholder { color: var(--text-faint); }
.srch-clear {
  width: 26px; height: 26px; border-radius: 50%; border: none;
  background: #e5e7eb; color: var(--text-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; transition: 0.2s; flex-shrink: 0;
}
.srch-clear:hover { background: var(--red); color: #fff; }
.srch-close-btn {
  flex-shrink: 0; border: none; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 14px; font-family: inherit; font-size: 0.78rem;
  font-weight: 700; color: var(--text-muted); cursor: pointer; transition: 0.2s;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.srch-close-btn:hover { background: var(--red-light); color: var(--red); border-color: var(--red); }
.srch-close-btn kbd {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1px 5px; background: #fff; border: 1px solid #d1d5db;
  border-radius: 4px; font-size: 0.68rem; font-family: inherit;
  color: var(--text-muted); box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.srch-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; }
.srch-results { padding: 20px; }

.srch-section-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--text-muted); margin-bottom: 12px; padding: 0 2px;
}
.srch-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.srch-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 40px; background: var(--bg-soft);
  border: 1.5px solid var(--border); color: var(--text-main);
  font-size: 0.86rem; font-weight: 600; text-decoration: none; transition: 0.2s;
}
.srch-pill i { color: var(--red); font-size: 0.82rem; transition: 0.2s; }
.srch-pill:hover { background: var(--red); color: #fff; border-color: var(--red); }
.srch-pill:hover i { color: #fff; }

.srch-count {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; padding: 0 4px;
}
.srch-count strong { color: var(--text-main); font-weight: 700; }
.srch-category-group { margin-bottom: 24px; }
.srch-cat-header {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 6px; padding: 0 4px;
}

.srch-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 14px; text-decoration: none;
  transition: 0.15s; cursor: pointer;
}
.srch-result-item:hover, .srch-result-item.focused { background: var(--bg-soft); }
.srch-result-ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.srch-ico-services { background: rgba(207,42,30,0.08); color: var(--red); }
.srch-ico-blog     { background: rgba(34,197,94,0.1);  color: #16a34a; }
.srch-ico-pages, .srch-ico-company { background: rgba(99,102,241,0.1); color: #6366f1; }

.srch-result-txt { flex: 1; min-width: 0; }
.srch-result-title {
  display: block; font-size: 0.94rem; font-weight: 600;
  color: var(--text-main); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.srch-result-title mark {
  background: rgba(207,42,30,0.12); color: var(--red);
  border-radius: 3px; padding: 0 2px; font-weight: 700; font-style: normal;
}
.srch-result-desc {
  display: block; font-size: 0.8rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.srch-result-desc mark {
  background: rgba(207,42,30,0.08); color: var(--red); border-radius: 2px; padding: 0 2px; font-style: normal;
}

.srch-cat-badge {
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.srch-cat-services { background: rgba(207,42,30,0.08); color: var(--red); }
.srch-cat-blog     { background: rgba(34,197,94,0.1);  color: #16a34a; }
.srch-cat-pages, .srch-cat-company { background: rgba(99,102,241,0.1); color: #6366f1; }

.srch-arrow {
  color: var(--text-faint); font-size: 0.72rem; flex-shrink: 0;
  opacity: 0; transform: translateX(-4px); transition: 0.15s;
}
.srch-result-item:hover .srch-arrow,
.srch-result-item.focused .srch-arrow { opacity: 1; transform: translateX(0); color: var(--red); }

.srch-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.srch-empty i { font-size: 2.5rem; opacity: 0.15; display: block; margin-bottom: 20px; color: var(--text-main); }
.srch-empty p { font-size: 1rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }

.srch-loading { display: flex; align-items: center; gap: 12px; padding: 28px 20px; color: var(--text-muted); font-size: 0.9rem; }
.srch-loading-spinner { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); border-top-color: var(--red); animation: loader-rotate 0.7s linear infinite; }

.srch-footer {
  display: flex; gap: 20px; align-items: center;
  padding: 11px 22px; border-top: 1px solid var(--border);
  background: var(--bg-soft); flex-shrink: 0;
}
.srch-footer-hint { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.srch-footer-hint kbd {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 2px 6px; background: #fff; border: 1px solid #d1d5db;
  border-radius: 5px; font-size: 0.7rem; font-family: inherit;
  color: var(--text-main); box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.srch-kb-shortcut {
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  font-size: 0.74rem; color: var(--text-faint);
}
.srch-kb-shortcut kbd { padding: 2px 6px; background: #fff; border: 1px solid #d1d5db; border-radius: 5px; font-size: 0.7rem; font-family: inherit; color: var(--text-muted); }

/* nav-search button (added directly in header.php) */
button.nav-search {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: transparent; color: var(--text-muted); font-size: 1rem;
  cursor: pointer; transition: 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
button.nav-search:hover { color: var(--red); background: var(--red-light); }
button.mob-search {
  display: block; width: 100%; padding: 16px 0; text-align: left;
  background: none; border: none; border-bottom: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.95rem; font-weight: 500;
  font-family: inherit; cursor: pointer; display: flex; align-items: center; gap: 8px;
}
button.mob-search:hover { color: var(--red); }

/* Mobile search adjustments */
@media (max-width: 768px) {
  .srch-panel { width: 100%; border-radius: 0 0 20px 20px; max-height: 90vh; }
  .srch-input-wrap input { height: 46px; font-size: 0.95rem; }
  .srch-close-btn .srch-esc-label { display: none; }
  .srch-footer { display: none; }
}

/* ════════════════════════════════════════════════════════
   BLOG SIDEBAR WIDGET  —  Elementor widget + standalone
   ════════════════════════════════════════════════════════ */
.mc-blog-sidebar { display: flex; flex-direction: column; gap: 24px; }

.mc-blog-widget {
  background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 26px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03); transition: 0.3s;
}
.mc-blog-widget:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.mc-blog-widget-title {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800;
  color: var(--text-main); margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.mc-blog-widget-title i { color: var(--red); font-size: 0.9rem; }

/* Widget search */
.mc-wgt-search { display: flex; align-items: center; gap: 0; }
.mc-wgt-search input {
  flex: 1; height: 44px; padding: 0 14px;
  border: 1.5px solid var(--border); border-right: none;
  border-radius: 12px 0 0 12px; font-family: inherit;
  font-size: 0.88rem; color: var(--text-main); outline: none;
  background: var(--bg-soft); transition: 0.2s;
}
.mc-wgt-search input:focus { border-color: var(--red); background: #fff; }
.mc-wgt-search button {
  height: 44px; padding: 0 16px; background: var(--red); border: none;
  border-radius: 0 12px 12px 0; color: #fff; font-size: 0.82rem;
  cursor: pointer; transition: 0.2s; display: flex; align-items: center;
}
.mc-wgt-search button:hover { background: var(--red2); }

/* Widget categories */
.mc-wgt-cats { display: flex; flex-direction: column; gap: 2px; }
.mc-wgt-cat {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 10px; text-decoration: none;
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500; transition: 0.2s;
}
.mc-wgt-cat:hover { background: var(--red-light); color: var(--red); }
.mc-wgt-cat-left { display: flex; align-items: center; gap: 10px; }
.mc-wgt-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mc-wgt-cat-count {
  font-size: 0.72rem; font-weight: 700; background: var(--bg-soft);
  color: var(--text-muted); padding: 2px 8px; border-radius: 20px;
}

/* Widget popular posts */
.mc-wgt-posts { display: flex; flex-direction: column; gap: 2px; }
.mc-wgt-post {
  display: flex; gap: 12px; align-items: flex-start; text-decoration: none;
  padding: 10px; border-radius: 12px; transition: 0.2s;
}
.mc-wgt-post:hover { background: var(--bg-soft); }
.mc-wgt-post-img {
  width: 54px; height: 54px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
}
.mc-wgt-post-ico {
  width: 54px; height: 54px; border-radius: 10px; flex-shrink: 0;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; color: var(--red); font-size: 1.1rem;
}
.mc-wgt-post-info h5 {
  font-size: 0.86rem; font-weight: 700; color: var(--text-main);
  line-height: 1.4; margin-bottom: 4px; transition: 0.2s;
}
.mc-wgt-post:hover .mc-wgt-post-info h5 { color: var(--red); }
.mc-wgt-post-meta { font-size: 0.74rem; color: var(--text-muted); }

/* Widget tags */
.mc-wgt-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.mc-wgt-tag {
  display: inline-flex; align-items: center; padding: 6px 13px;
  border-radius: 20px; background: var(--bg-soft); border: 1.5px solid var(--border);
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  text-decoration: none; transition: 0.2s;
}
.mc-wgt-tag:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

/* Widget newsletter */
.mc-wgt-nl-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.mc-wgt-nl-form { display: flex; flex-direction: column; gap: 10px; }
.mc-wgt-nl-form input {
  width: 100%; height: 44px; padding: 0 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 0.88rem; color: var(--text-main);
  outline: none; transition: 0.2s; background: var(--bg-soft);
}
.mc-wgt-nl-form input:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(207,42,30,0.08); }
.mc-wgt-nl-form button {
  width: 100%; height: 44px; background: linear-gradient(135deg, var(--red), #e84535);
  color: #fff; border: none; border-radius: 12px; font-family: inherit;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mc-wgt-nl-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(207,42,30,0.3); }

/* Widget trending badge */
.mc-wgt-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(207,42,30,0.06); border: 1px solid rgba(207,42,30,0.12);
  color: var(--red); padding: 4px 11px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 14px;
}

/* Dark newsletter widget */
.mc-blog-widget.mc-wgt-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: rgba(255,255,255,0.06);
}
.mc-wgt-dark .mc-blog-widget-title { color: #fff; border-color: rgba(255,255,255,0.08); }
.mc-wgt-dark .mc-wgt-nl-desc { color: rgba(255,255,255,0.6); }
.mc-wgt-dark .mc-wgt-nl-form input {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.mc-wgt-dark .mc-wgt-nl-form input::placeholder { color: rgba(255,255,255,0.35); }

/* Mobile responsive */
@media (max-width: 768px) {
  .mc-blog-sidebar { gap: 18px; }
  .mc-blog-widget { padding: 20px 18px; }
}
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

/* ════════════════════════════════════════════════════════
   BLOG LAYOUT + SIDEBAR — matches static blog.html exactly
   ════════════════════════════════════════════════════════ */
.blog-section { background: var(--bg-alt); padding: 80px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }

.blog-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.blog-filter-btn {
  padding: 8px 20px; border-radius: 40px;
  border: 1.5px solid var(--border); background: #fff;
  color: var(--text-muted); font-family: inherit; font-size: 0.87rem;
  font-weight: 600; cursor: pointer; transition: 0.2s;
}
.blog-filter-btn:hover { border-color: var(--red); color: var(--red); }
.blog-filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 14px rgba(207,42,30,0.2); }

.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.blog-layout--full { grid-template-columns: 1fr; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 110px; }

.blog-widget {
  background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 26px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03); transition: 0.3s;
}
.blog-widget:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); }

.blog-widget-title {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800;
  letter-spacing: -0.01em; color: var(--text-main); margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.blog-widget-title i { color: var(--red); font-size: 0.9rem; }

.wgt-search-wrap {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); border-radius: 12px; padding: 0 14px;
  transition: 0.2s; background: var(--bg-soft);
}
.wgt-search-wrap:focus-within {
  border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(207,42,30,0.08);
}
.wgt-search-wrap i { color: var(--text-muted); font-size: 0.88rem; flex-shrink: 0; }
.wgt-search-wrap input {
  flex: 1; border: none; background: transparent; font-family: inherit;
  font-size: 0.88rem; color: var(--text-main); height: 42px; outline: none;
}
.wgt-search-wrap input::placeholder { color: var(--text-faint); }
.wgt-search-wrap button {
  width: 28px; height: 28px; border-radius: 8px; background: var(--red);
  border: none; color: #fff; font-size: 0.7rem; cursor: pointer;
  transition: 0.2s; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wgt-search-wrap button:hover { background: var(--red2); }

.wgt-cats { display: flex; flex-direction: column; gap: 3px; }
.wgt-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 10px; cursor: pointer; transition: 0.2s;
  border: none; background: transparent; width: 100%; font-family: inherit; text-align: left;
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
}
.wgt-cat-item:hover { background: var(--red-light); color: var(--red); }
.wgt-cat-left { display: flex; align-items: center; gap: 10px; }
.wgt-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wgt-cat-count {
  font-size: 0.72rem; font-weight: 700; background: var(--bg-soft);
  color: var(--text-muted); padding: 2px 8px; border-radius: 20px; transition: 0.2s;
}

.wgt-posts { display: flex; flex-direction: column; gap: 2px; }
.wgt-post {
  display: flex; gap: 14px; align-items: flex-start; text-decoration: none;
  padding: 10px; border-radius: 12px; transition: 0.2s;
}
.wgt-post:hover { background: var(--bg-soft); }
.wgt-post-num {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 900;
  color: var(--border); line-height: 1; flex-shrink: 0; width: 26px;
  transition: 0.2s; padding-top: 2px;
}
.wgt-post:hover .wgt-post-num { color: var(--red); }
.wgt-post-info h5 {
  font-size: 0.86rem; font-weight: 700; color: var(--text-main);
  line-height: 1.4; margin-bottom: 4px; transition: 0.2s;
}
.wgt-post:hover .wgt-post-info h5 { color: var(--red); }
.wgt-post-meta { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; color: var(--text-muted); }
.wgt-post-tag {
  display: inline-block; padding: 2px 8px; border-radius: 10px;
  font-size: 0.68rem; font-weight: 700;
}

.wgt-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.wgt-tag {
  display: inline-flex; align-items: center; padding: 6px 13px;
  border-radius: 20px; background: var(--bg-soft); border: 1.5px solid var(--border);
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  text-decoration: none; transition: 0.2s;
}
.wgt-tag:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

.wgt-nl-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.wgt-nl-form { display: flex; flex-direction: column; gap: 10px; }
.wgt-nl-form input {
  width: 100%; height: 44px; padding: 0 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 0.88rem; color: var(--text-main);
  outline: none; transition: 0.2s; background: var(--bg-soft);
}
.wgt-nl-form input:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(207,42,30,0.08); }
.wgt-nl-form button {
  width: 100%; height: 44px; background: linear-gradient(135deg, var(--red), #e84535);
  color: #fff; border: none; border-radius: 12px; font-family: inherit;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(207,42,30,0.2);
}
.wgt-nl-form button:hover { background: linear-gradient(135deg, var(--red2), var(--red)); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(207,42,30,0.3); }

.wgt-trending-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(207,42,30,0.06); border: 1px solid rgba(207,42,30,0.12);
  color: var(--red); padding: 4px 11px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 14px;
}

/* ── Mobile blog control bar (search + filter hamburger) ── */
.blog-mob-bar {
  display: none;
  position: sticky;
  top: 68px;
  z-index: 300;
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.blog-mob-bar-inner { display: flex; align-items: center; height: 52px; }
.blog-mob-search-btn,
.blog-mob-filter-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 0 18px; height: 100%;
  border: none; background: transparent; font-family: inherit;
  font-size: 0.82rem; font-weight: 700; color: var(--text-muted);
  cursor: pointer; transition: 0.2s; white-space: nowrap; flex-shrink: 0;
}
.blog-mob-search-btn:hover  { color: var(--red); }
.blog-mob-filter-btn:hover  { color: var(--red); }
.blog-mob-filter-btn.open   { color: var(--red); background: var(--red-light); }
.blog-mob-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.blog-mob-center {
  flex: 1; text-align: center; font-size: 0.88rem; font-weight: 700;
  color: var(--text-main); padding: 0 8px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap;
}
.blog-mob-center i { color: var(--red); margin-left: 5px; font-size: 0.68rem; }

.blog-mob-panel {
  display: none;
  position: sticky;
  top: 120px;
  z-index: 299;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  padding: 14px 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-mob-panel.open { display: flex; }
@keyframes mobPanelIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.blog-mob-panel.open { animation: mobPanelIn 0.2s ease both; }

/* Mobile nav contact strip (light-mode fallback — overridden by dark panel below) */
.mob-body { display: flex; flex-direction: column; }
.mob-body .mob-contact-strip {
  margin-top: auto;
  position: sticky; bottom: 0;
  display: flex; flex-direction: column; gap: 0;
}
.mob-body .mob-contact-strip a {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  padding: 9px 0 !important;
  border-bottom: none !important;
  font-size: 0.82rem !important;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500 !important;
}
.mob-contact-ico {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
}

@media (max-width: 960px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; top: auto; }
}
@media (max-width: 768px) {
  .blog-mob-bar { display: block; }
  .blog-filters  { display: none !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 0 0 60px; overflow: hidden; }
  .blog-layout { gap: 28px; }
  .blog-sidebar { gap: 16px; }
  .res-card { height: 300px; }
  .blog-widget { padding: 20px 18px; }
}
@media (max-width: 540px) {
  .blog-section { padding: 0 0 48px; }
  .res-card { height: 260px; border-radius: 20px; }
  .res-card h3 { font-size: 1.15rem; }
}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */

/* Channel cards */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(207,42,30,0.15);
}
.contact-card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem;
}
.contact-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--text-main); margin: 0;
}
.contact-card p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}
.contact-meta {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 600;
}
.contact-meta a, .contact-meta span { color: var(--red); text-decoration: none; }
.contact-meta a:hover { text-decoration: underline; }

/* Form shell: side-by-side info + form */
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.form-shell .stack { display: flex; flex-direction: column; gap: 28px; }
.form-shell .image-panel {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.form-shell .image-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.form-shell .image-panel:hover img { transform: scale(1.04); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label, .field-grid label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #f9fafb;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
  background: #fff;
}
.contact-form textarea {
  min-height: 130px; resize: vertical;
}
.contact-form .btn-primary { margin-top: 20px; width: auto; align-self: flex-start; }

/* Dark process band */
.dark-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 32px 28px;
  transition: background 0.3s;
}
.dark-panel:hover { background: rgba(255,255,255,0.07); }
.dark-panel strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.dark-panel p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

/* FAQ cards */
.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.faq-card:hover {
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.faq-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text-main); margin: 0 0 10px;
}
.faq-card p {
  font-size: 0.89rem; color: var(--text-muted);
  line-height: 1.7; margin: 0;
}

/* Hero card mini stats row (contact hero) */
.hero-card-grid {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 0 18px 18px;
}
.hero-mini {
  display: flex; flex-direction: column;
  gap: 2px; flex: 1;
}
.hero-mini strong {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 800;
  color: #fff;
}
.hero-mini span { font-size: 0.72rem; color: rgba(255,255,255,0.58); }

/* Contact page responsive */
@media (max-width: 960px) {
  .form-shell { grid-template-columns: 1fr; gap: 36px; }
  .form-shell .image-panel { display: none; }
}
@media (max-width: 768px) {
  .field-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT WIDGETS — CREATIVE SECTION STYLES
   ══════════════════════════════════════════════════════════ */

/* ── Contact Hero ── */
.ch-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px; padding: 6px 14px 6px 10px;
  font-size: 0.78rem; font-weight: 700; color: #fff; letter-spacing: 0.03em;
  backdrop-filter: blur(8px); margin-bottom: 18px;
}
.ch-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
  animation: chDotPulse 2s ease infinite;
}
@keyframes chDotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0.08); }
}
.ch-heading { font-size: clamp(2rem,5vw,3.6rem); }

.ch-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem; text-decoration: none;
  animation: chBounce 2s ease infinite;
}
@keyframes chBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Contact Channels Bento ── */
.ch-channels-section { padding: 80px 0; }
.ch-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.ch-bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px 24px;
  display: flex; flex-direction: column; gap: 0;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  overflow: hidden;
  position: relative;
}
.ch-bento-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.ch-bento-card:hover { box-shadow: 0 24px 64px -12px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: rgba(207,42,30,0.12); }
.ch-bento-card:hover::before { transform: scaleX(1); }
.ch-wide { grid-column: span 2; }

.ch-bento-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem; margin-bottom: 18px;
  transition: background 0.3s, color 0.3s;
}
.ch-bento-card:hover .ch-bento-icon { background: var(--red); color: #fff; }
.ch-bento-top h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-main); margin: 0 0 8px;
}
.ch-bento-top p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.ch-bento-foot {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.ch-note { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.ch-note i { color: #22c55e; }
.ch-link-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--red);
  text-decoration: none;
  background: var(--red-light); border-radius: 50px;
  padding: 6px 14px;
  transition: background 0.2s, color 0.2s;
}
.ch-link-pill:hover { background: var(--red); color: #fff; }

/* ── Multi-step Form ── */
.ch-form-section { padding: 100px 0; }
.ch-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.ch-form-wrap .contact-form {
  background: var(--bg-main);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 48px 52px;
}
.ch-form-shell {
  max-width: 700px;
  margin: 0 auto;
}


/* Step progress bar */
.ch-step-bar {
  display: flex; align-items: center;
  margin-bottom: 36px;
}
.ch-step-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 0 0 auto;
}
.ch-step-node {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-soft); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.ch-step-num { font-size: 0.85rem; font-weight: 800; color: var(--text-muted); transition: opacity 0.2s; }
.ch-step-check { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; color: #fff; font-size: 0.78rem; }
.ch-step-lbl { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.03em; white-space: nowrap; transition: color 0.3s; }

.ch-step-item.active .ch-step-node { background: var(--red); border-color: var(--red); }
.ch-step-item.active .ch-step-num  { color: #fff; }
.ch-step-item.active .ch-step-lbl  { color: var(--red); }
.ch-step-item.done   .ch-step-node { background: #22c55e; border-color: #22c55e; }
.ch-step-item.done   .ch-step-num  { opacity: 0; }
.ch-step-item.done   .ch-step-check { opacity: 1; }
.ch-step-item.done   .ch-step-lbl  { color: #16a34a; }

.ch-step-line {
  flex: 1; height: 2px;
  background: var(--border);
  margin: 0 8px;
  position: relative; top: -12px;
  transition: background 0.4s;
}

/* Form step panels */
.ch-form-step {
  display: none;
  flex-direction: column; gap: 20px;
}
.ch-form-step.active { display: flex; }

/* Slide animation classes */
.ch-form-step.slide-in-right  { animation: chSlideInR  0.28s ease both; }
.ch-form-step.slide-in-left   { animation: chSlideInL  0.28s ease both; }
.ch-form-step.slide-out-left  { animation: chSlideOutL 0.28s ease both; }
.ch-form-step.slide-out-right { animation: chSlideOutR 0.28s ease both; }
@keyframes chSlideInR  { from { opacity:0; transform:translateX(32px); } to { opacity:1; transform:translateX(0); } }
@keyframes chSlideInL  { from { opacity:0; transform:translateX(-32px);} to { opacity:1; transform:translateX(0); } }
@keyframes chSlideOutL { from { opacity:1; transform:translateX(0); } to { opacity:0; transform:translateX(-32px); } }
@keyframes chSlideOutR { from { opacity:1; transform:translateX(0); } to { opacity:0; transform:translateX(32px);  } }

.ch-step-intro {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.ch-step-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
}
.ch-step-intro h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 0 0 4px; }
.ch-step-intro p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Form fields */
.ch-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ch-field { display: flex; flex-direction: column; gap: 6px; }
.ch-field-full { grid-column: 1 / -1; }
.ch-field label {
  font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.ch-field label span { color: var(--red); }
.ch-field input, .ch-field select, .ch-field textarea {
  background: #f9fafb; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-main);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none; box-sizing: border-box; width: 100%;
}
.ch-field input:focus, .ch-field select:focus, .ch-field textarea:focus {
  border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px var(--red-light);
}
.ch-field input.ch-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); animation: chShake 0.3s ease both; }
@keyframes chShake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-5px)} 60%{transform:translateX(5px)} }
.ch-field textarea { min-height: 120px; resize: vertical; }

/* Service chips (Step 2) */
.ch-service-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ch-chip { cursor: pointer; }
.ch-chip input { display: none; }
.ch-chip span {
  display: block; padding: 7px 14px;
  border: 1.5px solid var(--border); border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  transition: 0.2s;
}
.ch-chip:hover span { border-color: var(--red); color: var(--red); background: var(--red-light); }
.ch-chip.selected span { background: var(--red); color: #fff; border-color: var(--red); }

/* Toggle switches (Step 3) */
.ch-checkbox-field {}
.ch-toggle-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;
}
.ch-toggle-label a { color: var(--red); }
.ch-toggle-label input { display: none; }
.ch-toggle {
  width: 42px; height: 24px; border-radius: 12px; flex-shrink: 0;
  background: var(--border); position: relative; transition: background 0.2s; margin-top: 1px;
}
.ch-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  transition: transform 0.2s;
}
.ch-toggle-label input:checked ~ .ch-toggle { background: var(--red); }
.ch-toggle-label input:checked ~ .ch-toggle::after { transform: translateX(18px); }

/* Form actions row */
.ch-form-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 4px; }
.ch-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 20px; border-radius: 10px; border: 1.5px solid var(--border);
  background: transparent; font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 700; color: var(--text-muted); cursor: pointer; transition: 0.2s;
}
.ch-back-btn:hover { border-color: var(--red); color: var(--red); }
.ch-privacy-note { font-size: 0.76rem; color: var(--text-muted); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.ch-privacy-note i { color: var(--red); }

/* Success state */
.ch-success {
  text-align: center; padding: 64px 24px;
}
.ch-success[hidden] { display: none; }
.ch-success-in { animation: chSuccessIn 0.5s ease both; }
@keyframes chSuccessIn { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }
.ch-success-ring {
  width: 80px; height: 80px; margin: 0 auto 24px;
}
.ch-success-ring svg { width: 100%; height: 100%; }
.ch-success-ring circle {
  stroke: #22c55e; stroke-width: 2;
  stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: chRingDraw 0.6s 0.1s ease forwards;
}
.ch-success-ring path {
  stroke: #22c55e; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 36; stroke-dashoffset: 36;
  animation: chCheckDraw 0.4s 0.6s ease forwards;
}
@keyframes chRingDraw  { to { stroke-dashoffset: 0; } }
@keyframes chCheckDraw { to { stroke-dashoffset: 0; } }
.ch-success h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; }
.ch-success p  { color: var(--text-muted); line-height: 1.7; max-width: 380px; margin: 0 auto 8px; }
.ch-success-ref { font-size: 0.85rem !important; }
.ch-success-ref a { color: var(--red); }

/* ── Contact Timeline / Process ── */
.ch-timeline-section { padding: 100px 0; }
.ch-timeline {
  position: relative;
  padding: 20px 0;
  margin-top: 56px;
}
.ch-timeline-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(207,42,30,0.6) 15%, rgba(207,42,30,0.6) 85%, transparent);
  transform: translateX(-50%);
}
.ch-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}
.ch-tl-item:last-child { margin-bottom: 0; }

/* Left items: card on left, node at center */
.ch-tl-left  { flex-direction: row-reverse; }
.ch-tl-right { flex-direction: row; }

.ch-tl-node {
  position: absolute; left: 50%; top: 16px;
  transform: translateX(-50%);
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-dark);
  border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1rem;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
}
.ch-tl-item:hover .ch-tl-node { background: var(--red); color: #fff; }

.ch-tl-card {
  width: calc(50% - 56px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 28px 26px;
  transition: background 0.3s;
}
.ch-tl-left  .ch-tl-card { margin-right: auto; }
.ch-tl-right .ch-tl-card { margin-left: auto; }
.ch-tl-item:hover .ch-tl-card { background: rgba(255,255,255,0.09); }

.ch-tl-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  color: var(--red); opacity: 0.7;
  line-height: 1; margin-bottom: 10px;
}
.ch-tl-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0 0 10px;
}
.ch-tl-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }

/* ── Contact FAQ Accordion ── */
.ch-faq-section { padding: 100px 0; }
.ch-faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.ch-accordion { display: flex; flex-direction: column; gap: 0; }
.ch-acc-item {
  border-bottom: 1px solid var(--border);
}
.ch-acc-item:first-child { border-top: 1px solid var(--border); }

.ch-acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0;
  background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  color: var(--text-main); transition: color 0.2s;
}
.ch-acc-trigger:hover { color: var(--red); }
.ch-acc-item.open .ch-acc-trigger { color: var(--red); }

.ch-acc-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--text-muted); transition: background 0.2s, transform 0.3s, color 0.2s;
}
.ch-acc-item.open .ch-acc-icon { background: var(--red-light); color: var(--red); transform: rotate(45deg); }

.ch-acc-panel {
  overflow: hidden;
  transition: height 0.32s cubic-bezier(0.4,0,0.2,1);
  height: 0;
}
.ch-acc-body { padding: 0 0 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* FAQ sticky CTA card */
.ch-faq-cta {
  position: sticky; top: 96px;
}
.ch-faq-cta-inner {
  background: linear-gradient(145deg, var(--bg-dark) 0%, #1e2a3a 100%);
  border-radius: 22px;
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid rgba(255,255,255,0.07);
}
.ch-faq-cta-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.2rem;
}
.ch-faq-cta-inner h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: #fff; margin: 0;
}
.ch-faq-cta-inner p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }
.ch-faq-trust {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.ch-faq-trust span {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.ch-faq-trust i { color: var(--red); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ch-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .ch-wide { grid-column: span 2; }
  .ch-timeline-line { display: none; }
  .ch-tl-item { flex-direction: column !important; padding-left: 72px; }
  .ch-tl-node { left: 0; transform: none; }
  .ch-tl-card { width: 100%; margin: 0 !important; }
  .ch-faq-layout { grid-template-columns: 1fr; }
  .ch-faq-cta { position: static; }
}
@media (max-width: 768px) {
  .ch-form-shell { max-width: 100%; }
  .ch-field-grid { grid-template-columns: 1fr; }
  .ch-bento-grid { grid-template-columns: 1fr; }
  .ch-wide { grid-column: span 1; }
  .ch-step-lbl { display: none; }
  .ch-faq-section, .ch-channels-section, .ch-form-section, .ch-timeline-section { padding: 64px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE MENU OVERHAUL — Dark slide-in panel, beautiful and touch-friendly
═══════════════════════════════════════════════════════════════════════════ */

/* Backdrop overlay */
.mob-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(10,12,16,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 998;
}
.mob-backdrop.open { display: block; animation: mcFadeIn 0.3s ease both; }
@keyframes mcFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Mobile panel slide-in: only activates at the hamburger breakpoint ── */
@media (max-width: 860px) {
  .mob, .mobile-panel {
    display: flex;
    transform: translateX(110%);
  }
  .mob.open, .mobile-panel.open {
    transform: translateX(0);
  }
}

/* Header row */
.mob-header, .mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  position: sticky; top: 0; z-index: 2;
}
.mob-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mob-logo img { height: 36px; width: auto; }
.mob-logo-txt { font-size: 1rem; font-weight: 800; color: #0f172a; line-height: 1.1; }
.mob-logo-txt em { font-style: normal; color: var(--red); display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* Close button — X icon in circle */
.mob-close, .mobile-close {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; color: #374151;
  background: rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s;
  border: none;
}
.mob-close:hover, .mobile-close:hover { background: rgba(207,42,30,0.1); color: var(--red); }

/* Body — scrolls independently; contact strip stays pinned outside */
.mob-body, .mobile-body {
  padding: 8px 0 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(207,42,30,0.3) transparent;
}

/* Search button row */
button.mob-search {
  all: unset;
  display: flex; align-items: center; gap: 10px;
  margin: 14px 22px 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  color: #475569;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: calc(100% - 44px);
  box-sizing: border-box;
}
button.mob-search:hover { background: rgba(207,42,30,0.06); color: var(--red); }
button.mob-search i { color: var(--text-muted); font-size: 0.82rem; }

/* Nav links */
.mob-body a, .mobile-body a {
  display: flex; align-items: center;
  padding: 13px 22px;
  color: #1e293b;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  border-bottom: none;
  position: relative;
}
.mob-body a::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; border-radius: 0 3px 3px 0;
  background: var(--red);
  transition: height 0.2s;
}
.mob-body a:hover { color: var(--red); background: rgba(207,42,30,0.06); padding-left: 28px; }
.mob-body a:hover::before { height: 60%; }
.mob-body a.active { color: var(--red); font-weight: 700; background: rgba(207,42,30,0.08); padding-left: 28px; }
.mob-body a.active::before { height: 60%; }

/* Section headings (mob-head) */
.mob-body .mob-head, .mobile-body .head {
  padding: 18px 22px 6px;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--red); border: none;
  opacity: 0.9;
}
.mob-body .mob-head ~ a { padding-left: 32px; font-size: 0.88rem; color: #475569; }
.mob-body .mob-head ~ a:hover { padding-left: 40px; }

/* Divider between sections */
.mob-nav-divider {
  height: 1px; background: var(--border);
  margin: 8px 22px;
}

/* CTA button */
.mob-body .mob-cta, .mobile-body .cta {
  display: flex !important; align-items: center; justify-content: center; gap: 8px;
  margin: 16px 22px 4px; padding: 14px 22px !important;
  background: var(--red) !important; color: #fff !important;
  border-radius: 14px !important; font-weight: 700 !important;
  font-size: 0.92rem !important; text-align: center;
  border: none; letter-spacing: 0.01em;
  box-shadow: 0 8px 24px -4px rgba(207,42,30,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.mob-body .mob-cta:hover, .mobile-body .cta:hover {
  background: var(--red2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 32px -4px rgba(207,42,30,0.5) !important;
}
.mob-body .mob-cta::before { display: none !important; }

/* ── Contact strip — always pinned to bottom of the panel ── */
.mob-contact-strip {
  flex-shrink: 0;
  background: #f8fafc;
  padding: 0 22px 24px;
  display: flex; flex-direction: column; gap: 0;
}

/* "Get in touch" label */
.mob-contact-strip::before {
  content: 'Get in touch';
  display: block;
  font-size: 0.6rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--red);
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.mob-contact-strip a {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  padding: 8px 0 !important;
  font-size: 0.78rem !important;
  color: #475569 !important;
  border-bottom: none !important; border: none !important;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  background: none !important; font-weight: 500 !important;
}
.mob-contact-strip a::before { display: none !important; }
.mob-contact-strip a:hover {
  color: var(--red) !important; gap: 14px;
  padding-left: 0 !important; background: none !important;
}

/* Icon badge */
.mob-contact-ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(207,42,30,0.18);
  border: 1px solid rgba(207,42,30,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.68rem; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.mob-contact-strip a:hover .mob-contact-ico {
  background: rgba(207,42,30,0.32);
  border-color: rgba(207,42,30,0.5);
}

/* Keep old .mob-body .mob-contact-strip selectors for backwards compat */
.mob-body .mob-contact-strip { display: none; }

/* Stagger entrance animation for nav items */
.mob.open .mob-body > *,
.mob.open .mob-body a,
.mob.open .mob-body .mob-head,
.mob.open .mob-body button {
  animation: mcNavItemIn 0.32s ease both;
}
.mob.open .mob-body > *:nth-child(1)  { animation-delay: 0.06s; }
.mob.open .mob-body > *:nth-child(2)  { animation-delay: 0.09s; }
.mob.open .mob-body > *:nth-child(3)  { animation-delay: 0.12s; }
.mob.open .mob-body > *:nth-child(4)  { animation-delay: 0.15s; }
.mob.open .mob-body > *:nth-child(5)  { animation-delay: 0.18s; }
.mob.open .mob-body > *:nth-child(6)  { animation-delay: 0.21s; }
.mob.open .mob-body > *:nth-child(7)  { animation-delay: 0.24s; }
.mob.open .mob-body > *:nth-child(8)  { animation-delay: 0.27s; }
.mob.open .mob-body > *:nth-child(9)  { animation-delay: 0.30s; }
.mob.open .mob-body > *:nth-child(10) { animation-delay: 0.33s; }
@keyframes mcNavItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hamburger open state → animated X */
.hbg.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hbg.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hbg.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.hbg span { transition: transform 0.28s ease, opacity 0.2s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV-RIGHT: group nav-links + search + cta + hamburger so space-between
   only creates one gap (logo ↔ nav-right), not 5 separate ones.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* At the hamburger breakpoint: collapse nav-right to just the hamburger */
@media (max-width: 860px) {
  .nav-right .nav-links,
  .nav-right .nav-cta,
  .nav-right .nav-cta-fixed,
  .nav-right .nav-search { display: none !important; }
  .nav-right .hbg { display: flex !important; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER: per-column independently styled link lists
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NEWSLETTER FORM: AJAX response message styling
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mc-form-msg {
  border-radius: 8px; font-size: 0.82rem;
  font-weight: 600; margin-top: 10px; padding: 9px 14px;
  animation: mcMsgIn 0.25s ease both;
}
@keyframes mcMsgIn { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:none; } }

/* Footer newsletter form — nonce field hidden */
.footer-newsletter form input[name="_ajax_nonce"] { display: none; }

/* ── Accessibility: dark-section contrast overrides ── */
#testimonials .slabel { color: #ff6b5a; }
#testimonials .slabel::before { background: #ff6b5a; }
.ts-header .slabel { color: #ff6b5a; }
.ts-header .slabel::before { background: #ff6b5a; }
#process .slabel { color: #ff6b5a; }
#process .slabel::before { background: #ff6b5a; }
#process .proc-num { color: #ff6b5a; border-color: rgba(255,107,90,0.35); background: rgba(255,107,90,0.12); }
#process .proc-step:hover .proc-num { background: #ff6b5a; border-color: #ff6b5a; color: #fff; }
.ts-dots { display: flex; gap: 8px; align-items: center; }

/* Footer social placeholder — non-interactive, cosmetic only */
.footer-social-placeholder { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-size: 0.95rem; cursor: default; }


/* ════════════════════════════════════════════════════════════════════════════
   WHITE-SECTION DOT PATTERN
   Adds a subtle radial-dot texture to all light/white homepage sections so
   plain backgrounds get visual depth without changing the colour palette.
════════════════════════════════════════════════════════════════════════════ */

/* Target light/white sections by their actual IDs and classes used by the widgets.
   Dark sections (#process, #testimonials) are intentionally excluded.
   .page-hero is excluded because it uses ::after for its own gradient overlay.
   The ::after pseudo-element overlays the pattern; pointer-events: none so
   it never blocks clicks on content inside the section. */
.tp-section,
#services,
#why-us,
#studies,
#resources,
.section-soft {
  position: relative;
  isolation: isolate;
}

.tp-section::after,
#services::after,
#why-us::after,
#studies::after,
#resources::after,
.section-soft::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(207,42,30,0.045) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 40%, transparent 100%);
}

/* Make sure section content always sits above the pattern layer */
.tp-section > *,
#services > *,
#why-us > *,
#studies > *,
#resources > *,
.section-soft > * {
  position: relative; z-index: 1;
}

/* ════════════════════════════════════════════════════════════════════════════
   BACKDROP IMAGE SECTION  —  CTA + Metrics Band
   These sections already have gradient or solid backgrounds.  When a backdrop
   image URL is set via PHP (data-bg-img attribute injected by the widget),
   the image shows beneath a rich gradient overlay so text stays legible.
════════════════════════════════════════════════════════════════════════════ */

/* CTA box backdrop image support */
.cta-box[style*="--cta-bg-img"] {
  background-image: var(--cta-bg-img) !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Metrics band backdrop image support */
.metrics-band.has-bg-img {
  position: relative;
  overflow: hidden;
}
.metrics-band.has-bg-img .metrics-band-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed; /* parallax effect */
}
/* Glorious layered gradient overlay: dark-to-transparent to dark, with red tint */
.metrics-band.has-bg-img .metrics-band-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg,
      rgba(10,12,20,0.82) 0%,
      rgba(120,10,0,0.55) 35%,
      rgba(207,42,30,0.35) 60%,
      rgba(10,12,20,0.78) 100%);
  mix-blend-mode: multiply;
}
.metrics-band.has-bg-img > .metrics-in {
  position: relative; z-index: 2;
}


/* ═══════════════════════════════════════════════════════════════
   SERVICE SUB-PAGE TEMPLATE — sidebar layout
   Template: template-service-subpage.php
   ═══════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.svc-breadcrumb {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.svc-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-breadcrumb a:hover { color: var(--red); }
.svc-breadcrumb .fa-chevron-right { font-size: 0.6rem; opacity: 0.5; }
.svc-breadcrumb span { color: var(--text-main); font-weight: 600; }

/* ── Two-column layout ── */
.svc-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 64px;
}

/* ── Sidebar ── */
.svc-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 16px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

/* back-link / parent title */
.svc-sidebar-back {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 12px;
}
.svc-sidebar-back:hover { background: var(--red-light); }
.svc-sidebar-back .fa-arrow-left { font-size: 0.75rem; flex-shrink: 0; }

.svc-sidebar-label {
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 10px 12px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

/* Nav list */
.svc-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  line-height: 1.3;
}
.svc-nav li a:hover {
  background: var(--red-light);
  color: var(--text-main);
}
.svc-nav li.active a {
  background: var(--red);
  color: #fff;
  font-weight: 700;
}
.svc-nav li.active a:hover { background: var(--red2); }

.svc-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-left: 3px;
}
.svc-nav li.active .svc-nav-dot { background: rgba(255,255,255,0.7); }
.svc-nav-label { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.svc-nav-arrow { font-size: 0.7rem; opacity: 0.8; }
.svc-nav-thumb {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-nav-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* CTA block */
.svc-sidebar-cta {
  margin-top: 20px;
  padding: 20px 16px;
  background: linear-gradient(135deg, rgba(207,42,30,0.08) 0%, rgba(207,42,30,0.04) 100%);
  border: 1px solid rgba(207,42,30,0.2);
  border-radius: 14px;
  text-align: center;
}
.svc-sidebar-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0 auto 12px;
}
.svc-sidebar-cta-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  margin: 0 0 6px;
}
.svc-sidebar-cta-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 14px;
}
.svc-sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  padding: 10px 18px;
  white-space: nowrap;
}

/* ── Main content area ── */
.svc-main-content {
  min-width: 0; /* prevent grid blowout */
  overflow: hidden;
}
/* Elementor full-width widgets inside the sub-page main content */
.svc-main-content .elementor-widget-container > section,
.svc-main-content section {
  width: 100% !important;
  margin-left: 0 !important;
}

/* ── Mobile tab strip ── */
.svc-mobile-tabs {
  display: none;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-mobile-tabs::-webkit-scrollbar { display: none; }
.svc-mobile-tabs-in {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
  white-space: nowrap;
  min-width: min-content;
}
.svc-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.svc-tab:hover { color: var(--red); border-color: var(--red); }
.svc-tab.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  font-weight: 700;
}

/* ── Child Pages Grid Widget ── */
.cpg-card .cpg-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.cpg-card .cpg-card-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  transition: color 0.2s;
}
.cpg-card:hover .cpg-card-inner h3 { color: var(--red); }
.cpg-card .cpg-card-inner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  line-height: 1.6;
}
.cpg-card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.82rem;
  padding: 10px 20px;
  text-decoration: none;
}

/* ── Responsive: hide sidebar, show tab strip below 960px ── */
@media (max-width: 960px) {
  .svc-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }
  .svc-sidebar { display: none; }
  .svc-mobile-tabs { display: block; }
  .svc-main-content {
    padding-top: 24px;
  }
  .svc-main-content .elementor-widget-container > section,
  .svc-main-content section {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
  }
}

/* ── Responsive: compact breadcrumb on small screens ── */
@media (max-width: 640px) {
  .svc-breadcrumb { padding: 8px 0; font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════════════
   VERTICAL MARQUEE — mobile (max 640px)
   The horizontal marquee rotates to scroll downward on narrow screens,
   giving a dynamic "data stream" feel without horizontal overflow.
   ═══════════════════════════════════════════════════════════════ */
@keyframes mqdown {
  from { transform: translateY(0); }
  to   { transform: translateY(-33.333%); }
}

@media (max-width: 640px) {
  .mband {
    height: 200px;
    padding: 0;
    overflow: hidden;
  }
  /* Replace horizontal fade masks with top/bottom fades */
  .mband::before {
    top: 0; bottom: auto;
    width: 100% !important; height: 48px;
    left: 0; right: 0;
    background: linear-gradient(to bottom, var(--bg-alt), transparent) !important;
  }
  .mband::after {
    bottom: 0; top: auto;
    width: 100% !important; height: 48px;
    left: 0; right: 0;
    background: linear-gradient(to top, var(--bg-alt), transparent) !important;
  }
  .mtrack {
    flex-direction: column !important;
    width: 100% !important;
    height: max-content;
    animation: mqdown 18s linear infinite !important;
    gap: 0 !important;
  }
  .mitem {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    overflow: hidden;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE HOMEPAGE BUTTONS — column layout
   Hero section uses .hero-btns; some sections use .btn-row.
   Both should stack into full-width columns on small screens.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .hero-btns a,
  .hero-btns button {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  /* Also ensure generic btn-row stacks everywhere on mobile */
  .btn-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .btn-row a,
  .btn-row button {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE COUNTER FONT SIZES — scaled down for readability
   Applies to hero stats (.snum) and metrics band (.metrics-num)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-stats .sbox .snum { font-size: 2.2rem !important; }
  .metrics-num { font-size: 2rem !important; }
}
@media (max-width: 640px) {
  .sbox .snum { font-size: 1.5rem !important; }
  .sbox .sdesc { font-size: 0.72rem !important; }
  .metrics-num { font-size: 1.6rem !important; }
  .metrics-num .sfx { font-size: 0.8em !important; }
  .metrics-lbl { font-size: 0.72rem !important; }
  .metrics-in { gap: 24px !important; }
}
@media (max-width: 480px) {
  .sbox .snum { font-size: 1.3rem !important; }
  .metrics-num { font-size: 1.35rem !important; }
  .metrics-lbl { font-size: 0.68rem !important; }
}
@media (max-width: 390px) {
  .sbox .snum { font-size: 1.1rem !important; }
  .metrics-num { font-size: 1.15rem !important; }
}

/* ═══════════════════════════════════════════════════════════════
   Floating Chat Launcher
   Position: bottom-right, above back-to-top button
   ═══════════════════════════════════════════════════════════════ */
.mc-chat-launcher {
  position: fixed;
  bottom: 88px;  /* 24 btt-bottom + 52 btt-height + 12 gap */
  right: 24px;
  z-index: 210;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ── Trigger button ── */
.mc-chat-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #CF2A1E, #9b1208);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(207,42,30,.45), 0 2px 6px rgba(0,0,0,.15);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mc-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(207,42,30,.55), 0 4px 10px rgba(0,0,0,.2);
}
.mc-chat-btn:focus-visible {
  outline: 3px solid #CF2A1E;
  outline-offset: 3px;
}

/* Pulsing ring on idle */
.mc-chat-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(207,42,30,.5);
  animation: chatPulseRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes chatPulseRing {
  0%   { transform: scale(1);   opacity: .9; }
  100% { transform: scale(1.55); opacity: 0;  }
}

/* Icon toggling */
.mc-chat-icon-open  { display: flex; transition: transform .25s; }
.mc-chat-icon-close { display: none; transition: transform .25s; }
.mc-chat-launcher.open .mc-chat-icon-open  { display: none;  }
.mc-chat-launcher.open .mc-chat-icon-close { display: flex;  }
.mc-chat-launcher.open .mc-chat-pulse      { display: none;  }
.mc-chat-launcher.open .mc-chat-btn        { transform: rotate(-5deg) scale(1.05); }

/* ── Chat panel ── */
.mc-chat-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 312px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.08);
  overflow: hidden;
  transform: scale(.88) translateY(18px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .28s;
}
.mc-chat-launcher.open .mc-chat-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Panel header */
.mc-chat-panel-head {
  background: linear-gradient(135deg, #CF2A1E 0%, #8b1209 100%);
  padding: 22px 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  position: relative;
}
.mc-chat-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mc-chat-panel-meta { flex: 1; min-width: 0; }
.mc-chat-panel-meta strong {
  display: block;
  font-size: .97rem;
  font-weight: 800;
  line-height: 1.2;
}
.mc-chat-panel-meta span {
  font-size: .73rem;
  opacity: .8;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}
.mc-chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  flex-shrink: 0;
}
.mc-chat-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: rgba(255,255,255,.9);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.mc-chat-close:hover { background: rgba(255,255,255,.28); color: #fff; }

/* Panel body */
.mc-chat-panel-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mc-chat-greeting {
  background: #f3f4f6;
  border-radius: 0 14px 14px 14px;
  padding: 12px 16px;
  font-size: .88rem;
  color: #374151;
  line-height: 1.55;
  margin-bottom: 4px;
}
.mc-chat-greeting strong { color: #111827; }

/* Option buttons */
.mc-chat-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background .22s, border-color .22s, transform .18s, color .22s;
}
.mc-chat-opt:hover { transform: translateX(3px); }

.mc-chat-opt i {
  font-size: 1.05rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.mc-chat-opt span { flex: 1; }
.mc-chat-opt .mc-chat-arrow {
  font-size: .75rem;
  opacity: .4;
  transition: opacity .2s, transform .2s;
}
.mc-chat-opt:hover .mc-chat-arrow { opacity: 1; transform: translateX(3px); }

/* WhatsApp */
.mc-chat-opt-wa {
  background: #f0fdf4;
  color: #15803d;
  border-color: rgba(21,128,61,.15);
}
.mc-chat-opt-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }

/* Email */
.mc-chat-opt-em {
  background: #fef2f2;
  color: #CF2A1E;
  border-color: rgba(207,42,30,.15);
}
.mc-chat-opt-em:hover { background: #CF2A1E; color: #fff; border-color: #CF2A1E; }

/* Contact form */
.mc-chat-opt-fm {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: rgba(29,78,216,.15);
}
.mc-chat-opt-fm:hover { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }

/* Panel footer note */
.mc-chat-panel-foot {
  padding: 0 20px 16px;
  font-size: .7rem;
  color: #9ca3af;
  text-align: center;
}

/* ── Chat: Responsive ── */
@media(max-width: 768px) {
  .mc-chat-launcher { bottom: 80px; right: 18px; }
  .mc-chat-btn      { width: 48px; height: 48px; font-size: 1.15rem; }
  .mc-chat-panel    { width: min(320px, calc(100vw - 36px)); right: 0; }
}
@media(max-width: 480px) {
  .mc-chat-launcher { bottom: 76px; right: 14px; }
  .mc-chat-btn      { width: 46px; height: 46px; font-size: 1.1rem; }
  .mc-chat-panel    { width: calc(100vw - 28px); right: 0; }
  .back-to-top      { bottom: 14px; right: 14px; width: 46px; height: 46px; font-size: 1rem; }
}
