/* =====================================================
   RedSharc — main.css  (2026 edition)
   Fonts: Poppins (sans) + Lora (display/serif)
   NO CDN. All fonts self-hosted in /fonts/
   NO inline styles. Zero CSP violations.
   ===================================================== */

/* ── SELF-HOSTED FONTS (TTF bundled; WOFF2 via download_fonts.py) ── */
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-variable.woff2') format('woff2'),
       url('../fonts/lora-variable.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-400.woff2') format('woff2'),
       url('../fonts/poppins-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-500.woff2') format('woff2'),
       url('../fonts/poppins-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-600.woff2') format('woff2'),
       url('../fonts/poppins-medium.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-700.woff2') format('woff2'),
       url('../fonts/poppins-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ── */
:root {
  --red:       #E01E2C;
  --red-dark:  #B5161F;
  --red-light: #FF4757;
  --black:     #0A0A0A;
  --black-soft:#1A1A1A;
  --white:     #FFFFFF;
  --off-white: #F8F8F6;
  --gray-100:  #F2F2F0;
  --gray-200:  #E5E5E2;
  --gray-400:  #9A9A96;
  --gray-600:  #5A5A56;

  /* 2026 Typography — Poppins for UI, Lora for display */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.14);
  --shadow-red: 0 8px 32px rgba(224,30,44,.25);

  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(0.22,1,0.36,1);
  --nav-h:  72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--black); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1380px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--gray { background: var(--gray-100); }
.section--dark { background: var(--black-soft); }
.section--red  { background: var(--red); position: relative; overflow: hidden; }
main { padding-top: var(--nav-h); }

/* ── TYPOGRAPHY SCALE ── */
.section-label {
  font-size: .6875rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.section-label--light { color: rgba(255,255,255,.65); }
.section-label--white { color: rgba(255,255,255,.8); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.875rem);
  font-weight: 700; color: var(--black); line-height: 1.2;
  margin-bottom: 1rem; letter-spacing: -.02em;
}
.section-title--light { color: var(--white); }
.section-title em { font-style: normal; color: var(--red); }

.section-subtitle {
  font-size: 1.0625rem; color: var(--gray-600); max-width: 58ch;
  margin-bottom: 3rem; line-height: 1.75;
}
.section-subtitle--light { color: rgba(255,255,255,.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6875rem 1.5rem; border-radius: var(--radius); font-family: var(--font-sans);
  font-weight: 600; font-size: .9375rem; line-height: 1; letter-spacing: .01em;
  transition: all .25s var(--ease); cursor: pointer; position: relative;
  overflow: hidden; white-space: nowrap;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.12); opacity: 0; transition: opacity .2s; }
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(224,30,44,.35); }

.btn-outline { border: 2px solid var(--red); color: var(--red); background: transparent; }
.btn-outline:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

.btn-ghost { color: var(--gray-600); }
.btn-ghost:hover { background: var(--gray-100); color: var(--black); }

.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }

.btn-white-outline { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1DAA52; transform: translateY(-2px); }

.btn-lg { padding: .9375rem 2.25rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: .4375rem 1rem; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.3); transform: scale(0); animation: ripple .55s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ── HERO SECTION ── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 5rem 0 4rem;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(224,30,44,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,30,44,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-accent-blob {
  position: absolute; top: -20%; right: -10%; width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(224,30,44,.08) 0%, transparent 65%);
  pointer-events: none; animation: blob-drift 14s ease-in-out infinite;
}
@keyframes blob-drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.05); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(224,30,44,.07); color: var(--red);
  border: 1px solid rgba(224,30,44,.2); padding: .4rem 1.125rem;
  border-radius: 100px; font-size: .8125rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 1.5rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(224,30,44,.4); } 50% { box-shadow: 0 0 0 6px rgba(224,30,44,0); } }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 4.5vw, 3.75rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.03em;
  color: var(--black); margin-bottom: 1.5rem;
}
.hero-headline-accent { display: block; color: var(--red); font-style: normal; }
.hero-subheadline { font-size: 1.125rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 2rem; max-width: 54ch; }
.hero-trust-strip { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 500; color: var(--gray-600); }
.trust-item svg { color: var(--red); flex-shrink: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-stats-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; text-align: center;
}
.hero-stat { padding: 0 1.25rem; }
.hero-stat-num { display: block; font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--red); line-height: 1; }
.hero-stat-suffix { font-size: 2rem; color: var(--red); font-weight: 700; }
.hero-stat-label { display: block; font-size: .8125rem; color: var(--gray-400); margin-top: .5rem; font-weight: 500; letter-spacing: .04em; }
.hero-stat-divider { width: 1px; height: 56px; background: var(--gray-200); }
.hero-floating-badge {
  position: absolute; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: .75rem 1.25rem; display: flex;
  align-items: center; gap: .625rem; font-size: .875rem; font-weight: 600;
  box-shadow: var(--shadow-md); animation: float 4s ease-in-out infinite;
}
.hero-badge-seo { bottom: -28px; left: -28px; animation-delay: 0s; }
.hero-badge-leads { top: -28px; right: -28px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.hero-scroll-indicator span { display: block; width: 24px; height: 40px; border: 2px solid var(--gray-200); border-radius: 12px; position: relative; }
.hero-scroll-indicator span::after { content: ''; position: absolute; width: 4px; height: 8px; background: var(--red); border-radius: 2px; left: 50%; top: 6px; transform: translateX(-50%); animation: scroll-dot 2s ease-in-out infinite; }
@keyframes scroll-dot { 0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); } 50% { opacity: 0; transform: translateX(-50%) translateY(12px); } }

/* ── PARALLAX HERO BAND ── */
.parallax-band {
  position: relative; overflow: hidden; padding: 5rem 0;
  background: var(--black-soft);
}
.parallax-band-bg {
  position: absolute; inset: -20%; left: 0; right: 0;
  background:
    linear-gradient(135deg, rgba(180,0,15,.92) 0%, rgba(10,10,10,.97) 60%),
    url('../images/bg-red.png') center/cover no-repeat;
  will-change: transform;
}
.parallax-band-content { position: relative; z-index: 2; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-lead { font-size: 1.125rem; font-weight: 500; color: var(--black); margin-bottom: 1.125rem; line-height: 1.7; }
.about p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.about-benefits { margin: 2rem 0; display: flex; flex-direction: column; gap: .875rem; }
.about-benefit { display: flex; align-items: center; gap: .75rem; font-weight: 500; color: var(--black); }
.benefit-svg { color: var(--red); flex-shrink: 0; }
.about-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.about-card {
  background: var(--white);
  padding: 1.75rem;
  transition: all .3s var(--spring);
  position: relative;
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.75rem; right: 1.75rem;
  height: 1px;
  background: var(--gray-100);
}
.about-card:last-child::after { display: none; }
.about-card:hover { background: var(--gray-100); }
.about-card-icon {
  width: 48px; height: 48px;
  background: rgba(224,30,44,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 1rem; transition: all .3s;
}
.about-card:hover .about-card-icon { background: var(--red); color: #fff; }
.about-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--black); font-family: var(--font-sans); }
.about-card p { font-size: .9375rem; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 2rem; transition: all .35s var(--spring); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--spring); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 56px; height: 56px; background: rgba(224,30,44,.08); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--red); margin-bottom: 1.25rem; transition: all .3s var(--spring); }
.service-card:hover .service-card-icon { background: var(--red); color: #fff; transform: scale(1.05); }
.service-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem; color: var(--black); font-family: var(--font-sans); }
.service-card-desc { font-size: .9375rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.25rem; }
.service-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.service-feature { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--gray-600); }
.service-feature svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.service-card-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 600; color: var(--red); transition: gap .25s var(--spring); }
.service-card-link:hover { gap: .75rem; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 3rem; }
.process-step { text-align: center; padding: 0 1rem; position: relative; }
.process-step-num { width: 56px; height: 56px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; z-index: 1; box-shadow: var(--shadow-red); }
.process-step-connector { position: absolute; top: 28px; left: calc(50% + 28px); right: calc(-50% + 28px); height: 2px; background: linear-gradient(90deg, var(--red), var(--gray-200)); }
.process-step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--black); font-family: var(--font-sans); }
.process-step-content p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); padding: 2rem; transition: all .3s var(--spring); }
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.why-card-icon { width: 52px; height: 52px; background: rgba(255,255,255,.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; transition: all .3s; }
.why-card:hover .why-card-icon { background: var(--red); color: #fff; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; color: #fff; font-family: var(--font-sans); }
.why-card p { font-size: .9375rem; color: rgba(255,255,255,.65); line-height: 1.65; }
.why-card strong { color: #fff; }

/* ── CASE STUDIES ── */
.case-studies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
.cs-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; transition: all .35s var(--spring); }
.cs-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.cs-card-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.cs-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--spring); }
.cs-card:hover .cs-card-img { transform: scale(1.05); }
.cs-card-img-placeholder { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); display: flex; align-items: center; justify-content: center; color: var(--gray-400); }
.cs-card-body { padding: 1.5rem; }
.cs-industry { display: inline-block; background: rgba(224,30,44,.1); color: var(--red); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .2rem .75rem; border-radius: 100px; margin-bottom: .75rem; }
.cs-title { font-size: 1.0625rem; font-weight: 700; color: var(--black); margin-bottom: .75rem; line-height: 1.4; font-family: var(--font-sans); }
.cs-result { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; font-weight: 600; color: var(--red); margin-bottom: .5rem; }
.cs-result-icon { flex-shrink: 0; }
.cs-detail { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ── FACTORS ── */
.factors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.factor-card { border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2rem; background: var(--white); transition: all .3s var(--spring); }
.factor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.factor-icon { width: 52px; height: 52px; background: rgba(224,30,44,.08); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--red); margin-bottom: 1.25rem; transition: all .3s; }
.factor-card:hover .factor-icon { background: var(--red); color: #fff; }
.factor-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; color: var(--black); font-family: var(--font-sans); }
.factor-card p { font-size: .9375rem; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* ── GROW SECTION ── */
.grow { background: var(--red); position: relative; overflow: hidden; }
.grow-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.grow-inner { position: relative; z-index: 1; }
.grow-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 1.5rem; letter-spacing: -.02em; }
.grow-lead { font-size: 1.125rem; color: rgba(255,255,255,.9); line-height: 1.75; margin-bottom: 1rem; font-weight: 500; }
.grow-content p { color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 1rem; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0; }
.tag { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; padding: .4rem 1.125rem; border-radius: 100px; font-size: .875rem; font-weight: 500; letter-spacing: .02em; transition: all .2s; cursor: default; }
.tag:hover { background: rgba(255,255,255,.25); }
.grow-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ── TESTIMONIALS ── */
.testimonials-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2rem; transition: all .3s var(--spring); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.testimonial-text { font-size: .9375rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-avatar--placeholder { background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.125rem; }
.testimonial-name { display: block; font-weight: 700; font-size: .9375rem; color: var(--black); }
.testimonial-role { display: block; font-size: .8125rem; color: var(--gray-400); margin-top: .125rem; }

/* ── FAQ ── */
.faq-inner { max-width: 820px; }
.faq-header { margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .2s; }
.faq-item.active { border-color: var(--red); }
.faq-question { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; font-size: 1rem; font-weight: 500; color: var(--black); background: #fff; gap: 1rem; transition: background .2s; cursor: pointer; font-family: var(--font-sans); }
.faq-question:hover { background: var(--gray-100); }
.faq-item.active .faq-question { background: rgba(224,30,44,.04); color: var(--red); }
.faq-chevron { flex-shrink: 0; transition: transform .3s var(--spring); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--spring); }
.faq-answer.open { max-height: 500px; }
.faq-answer[hidden] { display: block !important; }
.faq-answer-content { padding: 0 1.5rem 1.25rem; font-size: .9375rem; color: var(--gray-600); line-height: 1.75; }

/* ── CONTACT / CTA ── */
.cta-inner { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.cta-content .section-label, .cta-content .section-title { margin-bottom: .75rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
label { font-size: .875rem; font-weight: 600; color: var(--black); }
.req { color: var(--red); }
input, textarea, select {
  padding: .8125rem 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: .9375rem; color: var(--black); background: #fff; transition: all .2s; outline: none;
  font-family: var(--font-sans); width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,30,44,.1); }
textarea { resize: vertical; }
input.error, textarea.error { border-color: var(--red); }
input.success, textarea.success { border-color: #22c55e; }
.field-error { font-size: .8125rem; color: var(--red); margin-top: .2rem; }
.cta-contact-card { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2rem; }
.cta-contact-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--black); }
.cta-contact-item { display: flex; align-items: center; gap: .75rem; padding: .875rem 0; border-bottom: 1px solid var(--gray-200); font-size: .9375rem; color: var(--gray-600); transition: color .2s; }
.cta-contact-item:last-of-type { border-bottom: none; }
.cta-contact-item:hover { color: var(--red); }
.cta-contact-item svg { color: var(--red); flex-shrink: 0; }
.form-success-msg { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.form-success-msg strong { display: block; font-size: 1.125rem; margin-bottom: .5rem; color: var(--black); }
.form-success-msg p { font-size: .9375rem; color: var(--gray-600); }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: #fff; }
.footer-top { padding: 5rem 0 3rem; }
.footer-brand-row { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding-bottom: 2.5rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand-info .footer-logo-img { filter: brightness(0) invert(1); max-height: 36px; width: auto; margin-bottom: 1rem; }
.footer-about { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 340px; margin: .875rem 0 1.25rem; }
.footer-social { display: flex; gap: .625rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .2s; }
.social-btn:hover { border-color: var(--red); color: var(--red); background: rgba(224,30,44,.1); }
.footer-contact-quick { display: flex; flex-direction: column; gap: .625rem; }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-item:hover { color: var(--red); }
.footer-contact-item svg { color: var(--red); flex-shrink: 0; }
.footer-address { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.4); }
.footer-address svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-cta-btn { margin-top: .75rem; align-self: flex-start; }
.footer-tabs-section { padding-top: 1.5rem; }
.footer-tabs { display: flex; gap: .25rem; margin-bottom: 1.75rem; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 0; }
.footer-tab { padding: .625rem 1.125rem; font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.45); border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; background: none; transition: all .2s; border-radius: var(--radius) var(--radius) 0 0; font-family: var(--font-sans); }
.footer-tab:hover { color: rgba(255,255,255,.75); background: rgba(255,255,255,.04); }
.footer-tab.active { color: #fff; border-bottom-color: var(--red); background: rgba(255,255,255,.04); }
.footer-tab-panel { display: none; }
.footer-tab-panel.active { display: block; animation: ftab-in .2s var(--ease); }
@keyframes ftab-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.footer-tab-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 2rem; }
.footer-tab-grid--narrow { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.ftab-col-heading { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
a.ftab-col-heading:hover { color: var(--red); transition: color .2s; }
.footer-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-link { font-size: .875rem; color: rgba(255,255,255,.5); transition: all .2s; display: block; }
.footer-link:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; margin-top: 2rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .8125rem; color: rgba(255,255,255,.25); }

/* ── WHATSAPP FAB + BACK TO TOP ── */
.whatsapp-fab { position: fixed; bottom: 2rem; right: 2rem; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,.4); z-index: 150; transition: transform .25s var(--ease), box-shadow .25s; animation: fab-float 3s ease-in-out 2s infinite; }
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 12px 36px rgba(37,211,102,.55); }
@keyframes fab-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.back-to-top { position: fixed; bottom: 5.5rem; right: 2.1rem; width: 44px; height: 44px; background: #fff; border: 2px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-600); box-shadow: var(--shadow-md); z-index: 149; opacity: 0; transform: translateY(12px); transition: all .3s var(--ease); pointer-events: none; cursor: pointer; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ── MISC UTILITIES ── */
.sp-empty-notice { padding: 1rem; color: var(--gray-400); font-size: .875rem; }
.empty-notice { color: var(--gray-400); font-size: .9375rem; padding: 2rem; background: var(--gray-100); border-radius: var(--radius-lg); text-align: center; grid-column: 1/-1; }
.empty-notice code { background: var(--gray-200); padding: .1rem .4rem; border-radius: 4px; font-size: .875rem; }
.mb-subtitle { margin-bottom: 2rem; }
.mt-cta { margin-top: 1.25rem; }
.mt-cta-lg { margin-top: 1.5rem; }
.max-w-article { max-width: 820px; }
.footer-cta-btn { margin-top: 1.25rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
  .footer-brand-row { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tab-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-step-connector { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 4rem 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-tabs { overflow-x: auto; gap: .125rem; }
  .footer-tab-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-center { display: none; position: fixed; inset: 64px 0 0; background: #fff; flex-direction: column; padding: 1.5rem; gap: .375rem; overflow-y: auto; z-index: 198; box-shadow: var(--shadow-lg); }
  .nav-center.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-phone span { display: none; }
  .services-panel { position: fixed; top: auto; bottom: 0; height: 70vh; overflow-y: auto; transform: translateY(100%); border-bottom: none; border-top: 1px solid var(--gray-200); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .services-panel.open { transform: translateY(0); }
  .services-panel-inner { grid-template-columns: 1fr; padding: 1.25rem; gap: 1rem; }
  .sp-categories { border-right: none; border-bottom: 1px solid var(--gray-200); padding-right: 0; padding-bottom: 1rem; display: flex; flex-direction: row; flex-wrap: wrap; gap: .5rem; }
  .sp-cat-btn { flex: 0 0 auto; padding: .5rem .875rem; border: 1px solid var(--gray-200); border-radius: 100px; }
  .sp-cat-btn .sp-cat-tagline, .sp-cat-btn .sp-cat-arrow { display: none; }
  .sp-subs { padding-left: 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { padding: .875rem 1.75rem; }
}

/* ── PARALLAX STATS BAND ── */
.parallax-band { position: relative; overflow: hidden; padding: 5rem 0; min-height: 220px; display: flex; align-items: center; }
.parallax-band-bg {
  position: absolute; inset: -30% 0;
  background: linear-gradient(135deg, rgba(176,0,14,.94) 0%, rgba(10,10,10,.97) 55%),
    url('../images/bg-red.png') center/cover no-repeat;
}
.parallax-band-content { position: relative; z-index: 2; width: 100%; }
.parallax-stats-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.parallax-stat { text-align: center; padding: 1rem 3rem; }
.parallax-stat-num { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,4rem); font-weight: 700; color: #fff; display: inline-block; line-height: 1; }
.parallax-stat-suffix { font-size: clamp(1.75rem,3vw,2.75rem); color: var(--red-light); font-weight: 700; }
.parallax-stat-label { display: block; font-size: .875rem; color: rgba(255,255,255,.55); margin-top: .5rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.parallax-stat-div { width: 1px; height: 80px; background: rgba(255,255,255,.12); flex-shrink: 0; }
@media(max-width:768px) { .parallax-stat { padding: 1rem 1.5rem; } .parallax-stat-div { display: none; } }

/* ═══════════════════════════════════════════
   ABOUT CARDS — Modern 2026 (no generic AI border)
   Side-by-side icon + text, no full-border boxes
   ═══════════════════════════════════════════ */
.about-cards-modern { display: flex; flex-direction: column; gap: 0; }
.about-card-modern {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--gray-100);
  transition: all .3s var(--spring);
}
.about-card-modern:first-child { padding-top: 0; }
.about-card-modern:last-child { border-bottom: none; padding-bottom: 0; }
.about-card-modern:hover { padding-left: .75rem; }
.about-card-modern-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(224,30,44,.08); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); transition: all .3s var(--spring); margin-top: 2px;
}
.about-card-modern:hover .about-card-modern-icon { background: var(--red); color: #fff; }
.about-card-modern-body h3 {
  font-size: .9375rem; font-weight: 700; color: var(--black);
  margin-bottom: .375rem; font-family: var(--font-sans);
}
.about-card-modern-body p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; margin: 0; }
.about-card-modern-body strong { color: var(--black); }

/* ═══════════════════════════════════════════
   HERO IMAGE VARIANT
   ═══════════════════════════════════════════ */
.hero-image-wrap { position: relative; }
.hero-img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); object-fit: cover;
}
.hero-stats-overlay {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.hero-stat-pill {
  display: flex; align-items: center; gap: .625rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: .5rem 1rem;
  box-shadow: var(--shadow-md); font-size: .875rem; font-weight: 600;
  color: var(--black); animation: float 4s ease-in-out infinite;
}
.hero-stat-pill svg { color: var(--red); }
.hero-stat-pill strong { color: var(--red); }
.hero-stat-pill--offset { animation-delay: 1.5s; }

/* ═══════════════════════════════════════════
   SERVICES INDUSTRIES STRIP
   ═══════════════════════════════════════════ */
.services-industries {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-xl); font-size: .9rem;
  color: var(--gray-600); line-height: 1.7;
}
.services-industries strong { color: var(--black); font-weight: 700; }

/* ═══════════════════════════════════════════
   TESTIMONIALS MOBILE SWIPE
   ═══════════════════════════════════════════ */
.testimonials-swipe-mobile {
  overflow-x: auto; display: flex; gap: 1rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}
.testimonial-card--swipe {
  min-width: 80vw; flex: 0 0 auto; scroll-snap-align: start;
}

/* ═══════════════════════════════════════════
   BTT ICON — rotated via CSS (no inline style)
   ═══════════════════════════════════════════ */
.btt-icon { transform: rotate(180deg); }

/* ═══════════════════════════════════════════
   SVG SPRITE — hidden without inline style
   ═══════════════════════════════════════════ */
.svg-sprite-hidden {
  position: absolute; width: 0; height: 0; overflow: hidden;
}

/* ═══════════════════════════════════════════
   FORM SUCCESS ICON
   ═══════════════════════════════════════════ */
.success-icon {
  font-size: 2.5rem; display: block; margin-bottom: .75rem;
  color: #22c55e;
}
.success-check-icon { width: 32px; height: 32px; color: #22c55e; }
.trust-check { color: var(--red); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   PARALLAX BG — dynamic from SiteSettings
   ═══════════════════════════════════════════ */
.parallax-band-bg {
  position: absolute; inset: -30% 0;
  /* --parallax-bg-url set by JS from data-parallax-bg attribute */
  background:
    linear-gradient(135deg, rgba(176,0,14,.94) 0%, rgba(10,10,10,.97) 55%),
    var(--parallax-bg-url, url('../images/bg-red.webp')) center/cover no-repeat;
}

/* ═══════════════════════════════════════════
   ADMIN 404 FIX — installHook.js.map
   ═══════════════════════════════════════════ */
/* This is a browser devtools request, not a real error.
   No CSS fix needed — suppressed via middleware. */


/* ═══════════════════════════════════════════════════════
   HOMEPAGE 2026 PREMIUM SECTIONS
   ═══════════════════════════════════════════════════════ */

/* ── HERO TRUST BAR ── */
.hero-trust-bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem; margin-bottom: 2.5rem;
}
.hbar-item {
  font-size: .8125rem; font-weight: 600; color: var(--gray-600);
  letter-spacing: .02em;
}
.hbar-sep {
  width: 4px; height: 4px; background: var(--red);
  border-radius: 50%; flex-shrink: 0;
}

/* ── HERO COUNTER GRID (no image variant) ── */
.hero-counter-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--gray-200);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-counter {
  background: var(--white); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .25rem;
  transition: background .3s var(--spring);
}
.hero-counter:hover { background: var(--gray-100); }
.hero-counter-num {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 700; color: var(--red); line-height: 1;
  display: inline-block;
}
.hero-counter-unit { font-size: 2rem; color: var(--red); font-weight: 700; }
.hero-counter-label {
  font-size: .8125rem; color: var(--gray-400); font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
}

/* ── HERO IMAGE VARIANT ── */
.hero-img-frame { position: relative; }
.hero-img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); display: block; object-fit: cover;
}
.hero-metric-float {
  position: absolute;
  background: var(--white); border-radius: var(--radius-lg);
  padding: .625rem 1.125rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--black);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.hero-metric-float svg { color: var(--red); }
.hero-metric-float strong { color: var(--red); }
.hero-metric-float--tl { top: 1.5rem; left: -1.5rem; animation-delay: 0s; }
.hero-metric-float--br { bottom: 1.5rem; right: -1.5rem; animation-delay: 2s; }

/* ── HERO SCROLL CUE ── */
.hero-scroll-cue {
  position: absolute; bottom: 2rem; left: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: .375rem;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--gray-200);
  display: block; animation: line-grow 2s ease-in-out infinite;
}
.scroll-dot {
  width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; display: block;
}
@keyframes line-grow {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.4); opacity: .4; }
}

/* ── BTN GHOST DARK (for dark hero bg) ── */
.btn-ghost-dark {
  color: var(--black); background: transparent;
  border: 2px solid var(--gray-200);
}
.btn-ghost-dark:hover {
  background: var(--black); color: var(--white);
  border-color: var(--black); transform: translateY(-2px);
}

/* ── MARQUEE TICKER ── */
.ticker-wrap {
  background: var(--black); overflow: hidden;
  padding: .875rem 0; border-top: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.55);
  padding: 0 1.5rem; letter-spacing: .06em; text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-sep {
  color: var(--red); font-size: .75rem; flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── WHAT SETS US APART ── */
.apart-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 3rem;
  border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  overflow: hidden;
}
.apart-item {
  padding: 2.5rem 2rem; border-right: 1px solid var(--gray-200);
  transition: background .3s var(--spring); position: relative;
}
.apart-item:last-child { border-right: none; }
.apart-item:hover { background: var(--gray-100); }
.apart-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: rgba(224,30,44,.12); line-height: 1; margin-bottom: 1rem;
  display: block;
}
.apart-item:hover .apart-num { color: rgba(224,30,44,.22); }
.apart-body h3 {
  font-size: 1.0625rem; font-weight: 700; margin-bottom: .75rem;
  color: var(--black);
}
.apart-body p { font-size: .9375rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ── ABOUT FULL — dark section ── */
.about-full { background: var(--black-soft); }
.about-full-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-full-text p {
  font-size: 1rem; color: rgba(255,255,255,.65);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.about-full-text p:last-child { margin-bottom: 2rem; }

.about-stat-stack { display: flex; flex-direction: column; gap: 2rem; }
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--radius-xl); overflow: hidden; }
.about-stat-big {
  background: rgba(255,255,255,.04); padding: 2rem;
  display: flex; flex-direction: column; gap: .25rem;
  transition: background .3s;
}
.about-stat-big:hover { background: rgba(255,255,255,.08); }
.about-stat-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--red); line-height: 1; display: inline-block;
}
.about-stat-unit { font-size: 2rem; color: var(--red); font-weight: 700; }
.about-stat-label {
  font-size: .8125rem; color: rgba(255,255,255,.4); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 500;
}

.about-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.about-pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-lg);
  transition: background .3s;
}
.about-pillar:hover { background: rgba(255,255,255,.08); }
.about-pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(224,30,44,.15); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
}
.about-pillar strong { display: block; color: #fff; font-size: .9375rem; margin-bottom: .375rem; }
.about-pillar p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0; }

/* ── SERVICES LIST (row design like digitalsilk.com) ── */
.services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 2rem;
}
.services-view-all { flex-shrink: 0; }
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 48px 52px 1fr auto 36px;
  align-items: center; gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--gray-200);
  text-decoration: none; color: inherit;
  transition: all .3s var(--spring);
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid var(--gray-200); }
.service-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--red);
  transition: width .3s var(--spring);
}
.service-row:hover {
  background: var(--gray-100);
  padding-left: 2.25rem;
}
.service-row:hover::before { width: 3px; }
.service-row-num {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--gray-200); transition: color .3s;
}
.service-row:hover .service-row-num { color: var(--red); }
.service-row-icon { color: var(--gray-400); transition: color .3s; }
.service-row:hover .service-row-icon { color: var(--red); }
.service-row-content h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--black);
  margin-bottom: .25rem; transition: color .3s;
}
.service-row:hover .service-row-content h3 { color: var(--red); }
.service-row-content p { font-size: .875rem; color: var(--gray-400); margin: 0; }
.service-row-subs {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: flex-end;
}
.service-row-subs span {
  font-size: .75rem; font-weight: 500; color: var(--gray-400);
  background: var(--gray-100); padding: .2rem .75rem;
  border-radius: 100px; transition: all .3s;
}
.service-row:hover .service-row-subs span {
  background: rgba(224,30,44,.08); color: var(--red);
}
.service-row-arrow { color: var(--gray-200); transition: all .3s; }
.service-row:hover .service-row-arrow {
  color: var(--red); transform: translateX(4px);
}

/* ── SERVICES INDUSTRIES ── */
.services-industries {
  margin-top: 2rem; padding: 1.25rem 1.75rem;
  background: var(--gray-100); border-radius: var(--radius-lg);
  font-size: .9rem; color: var(--gray-600); line-height: 1.7;
}
.services-industries strong { color: var(--black); font-weight: 700; }

/* ── PARALLAX STATS ── */
.parallax-band { position: relative; overflow: hidden; padding: 5rem 0; min-height: 220px; display: flex; align-items: center; }
.parallax-band-bg {
  position: absolute; inset: -30% 0;
  background:
    linear-gradient(135deg, rgba(176,0,14,.94) 0%, rgba(10,10,10,.97) 55%),
    var(--parallax-bg-url, url('../images/bg-red.webp')) center/cover no-repeat;
  will-change: transform;
}
.parallax-band-content { position: relative; z-index: 2; width: 100%; }
.pstats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.pstat {
  text-align: center; padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.pstat:last-child { border-right: none; }
.pstat-num {
  font-family: var(--font-display); font-size: clamp(2.5rem,4vw,3.75rem);
  font-weight: 700; color: #fff; line-height: 1; display: inline-block;
}
.pstat-unit { font-size: clamp(1.75rem,3vw,2.5rem); color: var(--red-light); font-weight: 700; }
.pstat-label {
  display: block; font-size: .8125rem; color: rgba(255,255,255,.5);
  margin-top: .5rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
}

/* ── CASE STUDIES ── */
.cs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
.cs-tile {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  transition: all .35s var(--spring); position: relative;
}
.cs-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.cs-tile-visual { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.cs-tile-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--spring); }
.cs-tile:hover .cs-tile-img { transform: scale(1.06); }
.cs-tile-placeholder { aspect-ratio: 16/9; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gray-400); }
.cs-tile-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: #fff; font-size: .6875rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .25rem .75rem;
  border-radius: 100px;
}
.cs-tile-body { padding: 1.5rem; }
.cs-tile-title { font-size: 1.0625rem; font-weight: 700; color: var(--black); margin-bottom: .75rem; line-height: 1.4; }
.cs-tile-result { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; font-weight: 600; color: var(--red); margin-bottom: .5rem; }
.cs-tile-detail { font-size: .875rem; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* ── TESTIMONIAL CARDS ── */
.tcard {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2rem; transition: all .3s var(--spring);
  display: flex; flex-direction: column;
}
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tcard-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.tcard-stars svg { color: var(--red); }
.tcard-text {
  font-size: .9375rem; color: var(--gray-600); line-height: 1.75;
  flex: 1; margin-bottom: 1.5rem; font-style: italic;
}
.tcard-author { display: flex; align-items: center; gap: .875rem; }
.tcard-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.tcard-avatar--initial {
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem;
}
.tcard-name { display: block; font-weight: 700; font-size: .9375rem; color: var(--black); }
.tcard-role { font-size: .8125rem; color: var(--gray-400); margin-top: .1rem; display: block; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }
.contact-intro { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }
.contact-info-block {
  background: var(--black-soft); border-radius: var(--radius-xl);
  padding: 2.5rem; position: sticky; top: 100px;
}
.contact-info-block h3 {
  font-size: 1.125rem; font-weight: 700; color: #fff;
  margin-bottom: 1.75rem;
}
.contact-info-row {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .9375rem; color: rgba(255,255,255,.6);
  transition: color .2s; text-decoration: none;
}
.contact-info-row:last-of-type { border-bottom: none; margin-bottom: 1.5rem; }
.contact-info-row:hover { color: var(--red-light); }
.ci-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ── SECTION CTA ── */
.section-cta { text-align: center; margin-top: 3rem; }

/* ── RESPONSIVE 2026 ── */
@media(max-width:1100px) {
  .apart-grid { grid-template-columns: 1fr; }
  .apart-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .apart-item:last-child { border-bottom: none; }
  .about-full-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pstats-grid { grid-template-columns: 1fr 1fr; }
  .pstat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .services-head { flex-direction: column; align-items: flex-start; }
}
@media(max-width:768px) {
  .hero-counter-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 36px 40px 1fr 28px; }
  .service-row-subs { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-block { position: static; }
  .pstats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust-bar { gap: .625rem .875rem; }
  .ticker-track { animation-duration: 20s; }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SLIDER
   ═══════════════════════════════════════════ */
.slider-wrapper {
  position: relative;
  padding: 0 0 3rem;
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.slider-inner {
  display: flex;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  align-items: stretch;
  cursor: grab;
}
.slider-inner:active { cursor: grabbing; }
.slider-inner .tcard,
.slider-inner .testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  margin-right: 1.5rem;
}
/* Prev / Next buttons */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 1.5rem));
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all .25s var(--spring);
  z-index: 2;
}
.slider-prev { left: -22px; }
.slider-next { right: -22px; }
.slider-prev:hover,
.slider-next:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(calc(-50% - 1.5rem)) scale(1.08); }
.slider-prev:disabled,
.slider-next:disabled { opacity: .35; pointer-events: none; }
/* Dots */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all .3s var(--spring);
  padding: 0;
}
.slider-dot.active {
  background: var(--red);
  width: 24px;
}
/* Responsive */
@media (max-width: 1023px) {
  .slider-inner .tcard,
  .slider-inner .testimonial-card {
    flex: 0 0 calc(50% - .75rem);
  }
}
@media (max-width: 639px) {
  .slider-inner .tcard,
  .slider-inner .testimonial-card {
    flex: 0 0 calc(100% - 0px);
    margin-right: 1.5rem;
  }
  .slider-prev { left: 0; }
  .slider-next { right: 0; }
}

/* ═══════════════════════════════════════════
   INDUSTRIES SECTION — Premium chip grid
   ═══════════════════════════════════════════ */
.industries-section {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}
.industries-header {
  display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.75rem;
}
.industries-label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); white-space: nowrap;
}
.industries-line {
  flex: 1; height: 1px; background: var(--gray-200);
}
.industries-grid {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.industry-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5625rem 1.125rem;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: .875rem; font-weight: 500; color: var(--gray-600);
  cursor: default;
  transition: all .25s var(--spring);
}
.industry-chip:hover {
  background: rgba(224,30,44,.08);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224,30,44,.12);
}
.ic-icon { color: var(--red); flex-shrink: 0; }
.industry-chip--more {
  background: transparent;
  border: 1px dashed var(--gray-200);
  color: var(--gray-400);
  font-style: italic;
}
.industry-chip--more:hover {
  border-color: var(--red);
  background: rgba(224,30,44,.04);
  color: var(--red);
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════
   TRUST BAND (homepage, replaces about dup)
   ═══════════════════════════════════════════ */
.trust-band { padding: 5rem 0; }
.trust-band-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.trust-band-text p {
  font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin: 1rem 0 2rem;
}
.trust-band-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--gray-200); border-radius: var(--radius-xl); overflow: hidden;
}
.tbs-item {
  background: var(--white); padding: 2rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; gap: .25rem;
  transition: background .3s;
}
.tbs-item:hover { background: var(--gray-100); }
.tbs-num {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 700; color: var(--red); line-height: 1; display: inline-block;
}
.tbs-unit { font-size: 1.75rem; color: var(--red); font-weight: 700; }
.tbs-label {
  font-size: .75rem; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 500; margin-top: .25rem;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — Modern non-AI design
   ═══════════════════════════════════════════ */
.about-stats-band { background: var(--black-soft); padding: 2rem 0; }
.about-stats-row {
  display: flex; flex-wrap: wrap; gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-xl); overflow: hidden;
}
.about-stat-chip {
  flex: 1; min-width: 140px; background: rgba(255,255,255,.03);
  padding: 1.75rem 1.5rem; text-align: center;
  transition: background .3s;
}
.about-stat-chip:hover { background: rgba(255,255,255,.07); }
.asc-num {
  display: block; font-family: var(--font-display); font-size: 2.25rem;
  font-weight: 700; color: var(--red); line-height: 1;
}
.asc-label {
  display: block; font-size: .75rem; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .375rem;
}

/* About story grid */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-prose p {
  font-size: 1rem; color: var(--gray-600); line-height: 1.85; margin-bottom: 1.25rem;
}

/* Mission/Vision cards — no generic border */
.about-story-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.about-mission-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  transition: all .3s var(--spring);
}
.about-mission-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.amc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(224,30,44,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); transition: all .3s;
}
.about-mission-card:hover .amc-icon { background: var(--red); color: #fff; }
.about-mission-card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .5rem; color: var(--black); }
.about-mission-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* What sets us apart grid */
.about-apart-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}
.about-apart-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  transition: all .3s var(--spring);
  position: relative; overflow: hidden;
}
.about-apart-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--spring);
}
.about-apart-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.about-apart-item:hover::before { transform: scaleX(1); }
.aai-icon {
  width: 48px; height: 48px;
  background: rgba(224,30,44,.08); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 1.25rem; transition: all .3s;
}
.about-apart-item:hover .aai-icon { background: var(--red); color: #fff; }
.about-apart-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .625rem; color: var(--black); }
.about-apart-item p { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* Team cards — premium, non-AI */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.team-card-modern {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all .35s var(--spring);
  display: flex; flex-direction: column;
}
.team-card-modern:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.tcm-photo-area {
  height: 220px; background: var(--gray-100);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 0; overflow: hidden; position: relative;
}
.tcm-photo {
  width: 160px; height: 160px; object-fit: cover;
  border-radius: 50%; border: 4px solid var(--white);
  position: absolute; bottom: -40px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transition: transform .35s var(--spring);
}
.team-card-modern:hover .tcm-photo { transform: scale(1.04); }
.tcm-initials {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  border: 4px solid var(--white);
  position: absolute; bottom: -30px;
  box-shadow: 0 8px 24px rgba(224,30,44,.3);
}
.tcm-info {
  padding: 3rem 1.75rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .375rem;
}
.tcm-name { font-size: 1.125rem; font-weight: 700; color: var(--black); margin: 0; }
.tcm-role { font-size: .875rem; color: var(--red); font-weight: 600; }
.tcm-bio { font-size: .875rem; color: var(--gray-600); line-height: 1.65; margin: .625rem 0 0; text-align: center; }
.tcm-socials {
  display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1rem;
}
.tcm-social {
  width: 36px; height: 36px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200); color: var(--gray-500);
  transition: all .2s var(--spring);
}
.tcm-social:hover { transform: translateY(-2px); }
.tcm-social--linkedin:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.tcm-social--twitter:hover { background: #000; border-color: #000; color: #fff; }
.tcm-social--instagram:hover {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  border-color: #cc2366; color: #fff;
}
.tcm-social--website:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* About CTA */
.section--black { background: var(--black-soft); }
.about-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.about-cta-btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* Responsive about */
@media(max-width:1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-apart-grid { grid-template-columns: 1fr; }
  .trust-band-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-band-stats { grid-template-columns: repeat(3,1fr); }
  .about-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media(max-width:640px) {
  .trust-band-stats { grid-template-columns: 1fr 1fr; }
  .about-stats-row { flex-direction: column; }
}
