/* ============================================================
   İntal Danışmanlık – Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #A80000;
  --red-dark:   #8B0000;
  --red-light:  #C41E1E;
  --gray:       #7F8D9C;
  --gray-light: #A8B5C0;
  --charcoal:   #1F1F1F;
  --off-white:  #F7F8FA;
  --light-gray: #EEF0F3;
  --white:      #FFFFFF;
  --border:     #E8EAED;
  --shadow-card:      0 2px 16px rgba(31,31,31,.06);
  --shadow-card-hover:0 8px 32px rgba(31,31,31,.12);
  --shadow-brand:     0 4px 24px rgba(168,0,0,.12);
  --shadow-brand-lg:  0 8px 40px rgba(168,0,0,.18);
  --radius-sm: .5rem;
  --radius:    .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl:2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::selection { background: rgba(168,0,0,.15); color: var(--red); }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 7rem 0; } }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag span.line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-title .accent { color: var(--red); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 40rem;
}

.divider { width: 3rem; height: 3px; background: var(--red); border-radius: 2px; margin: 1rem 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-brand-lg);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-border {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}
.btn-ghost-border:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f5;
}
.btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

/* ── Scroll animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease-out, transform .65s ease-out;
}
.reveal.from-left  { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── HEADER ───────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  border-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1rem;
}

/* Logo */
.logo svg { height: 3rem; width: auto; }

/* Nav */
.nav { display: none; align-items: center; gap: .25rem; }
@media (min-width: 1024px) { .nav { display: flex; } }

.nav-link {
  padding: .5rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
#header.scrolled .nav-link { color: #000000; }
#header.scrolled .nav-link:hover { color: var(--red); background: #fff5f5; }
#header.scrolled .dropdown-toggle { color: #000000; }
#header.scrolled .dropdown-toggle:hover { color: var(--red); background: #fff5f5; }
#header.scrolled.on-about .nav-link { color: var(--white); transition: color .3s; }
#header.scrolled.on-about .nav-link:hover { color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); }
#header.scrolled.on-about .dropdown-toggle { color: var(--white); transition: color .3s; }
#header.scrolled.on-about .dropdown-toggle:hover { color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle {
  display: flex; align-items: center; gap: .25rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.dropdown-toggle svg.chevron {
  width: .875rem; height: .875rem;
  transition: transform .25s;
}
.nav-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .25rem);
  left: 0;
  min-width: 14rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--border);
  padding: .5rem;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.dropdown-item:hover { color: var(--red); background: #fff5f5; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.header-phone:hover { color: var(--white); }
#header.scrolled .header-phone { color: var(--gray); }
#header.scrolled .header-phone:hover { color: var(--red); }
.header-phone svg { width: 1rem; height: 1rem; }
@media (min-width: 768px) { .header-phone { display: flex; } }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

/* Mobile toggle */
.mobile-toggle {
  background: none; border: none; cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: color .2s, background .2s;
}
.mobile-toggle:hover { background: rgba(255,255,255,.1); }
#header.scrolled .mobile-toggle { color: var(--charcoal); }
#header.scrolled .mobile-toggle:hover { background: var(--off-white); }
.mobile-toggle svg { width: 1.25rem; height: 1.25rem; display: block; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile menu */
#mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
#mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1rem 0 1.25rem; }
.mobile-nav-link {
  display: block;
  padding: .75rem 1.5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.mobile-nav-link:hover { color: var(--red); background: #fff5f5; }
.mobile-menu-divider { height: 1px; background: var(--border); margin: .75rem 1.5rem; }
.mobile-menu-actions { padding: .75rem 1.5rem 0; display: flex; flex-direction: column; gap: .5rem; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0F0F0F 0%, #1F1F1F 40%, #2A0000 75%, #A80000 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .18;
  background-image:url("../images/hero-intal.jpeg");
  background-size: cover;
  background-position: center;
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, #000);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 { top: 5rem; right: 0; width: 24rem; height: 24rem; background: var(--red); opacity: .08; }
.hero-glow-2 { bottom: 0; left: 0; width: 16rem; height: 16rem; background: var(--red); opacity: .05; }
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
  width: 100%;
  text-align: center;
}
.hero-inner {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-eyebrow { justify-content: center; }
.hero-btns { justify-content: center; }
.hero-badges { justify-content: center; }
.hero-stats { justify-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .625rem 1.25rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: .5rem; height: .5rem;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
.hero-eyebrow span { color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 500; letter-spacing: .05em; }

.hero-h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero-h1 { font-size: 58px; line-height: 1.08; }
}
.hero-h1 .accent-red { color: var(--red); }
.hero-h1 .accent-gradient {
  background: linear-gradient(90deg, #fff 0%, #ffcccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: .625rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: .625rem 1.25rem;
}
.hero-badge svg { width: 1rem; height: 1rem; color: var(--red); flex-shrink: 0; }
.hero-badge span { color: var(--white); font-size: .875rem; font-weight: 500; }

.hero-stats {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4,1fr); } }
.hero-stat-num { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; font-family: 'Poppins',sans-serif; color: var(--white); margin-bottom: .25rem; }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.8); font-family: 'Inter',sans-serif; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  opacity: .5;
}
.hero-scroll span { color: var(--white); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.hero-scroll svg { width: 1.1rem; height: 1.1rem; color: var(--white); animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── ABOUT ────────────────────────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.about-img-wrap {
  position: relative;
}
.about-img-inner {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,31,31,.4), transparent);
  border-radius: var(--radius-2xl);
}
.about-stat-card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--border);
  padding: 1.5rem;
  width: 13rem;
}
.about-stat-card .num { font-size: 2.5rem; font-weight: 800; font-family: 'Poppins',sans-serif; color: var(--red); margin-bottom: .25rem; }
.about-stat-card .lbl { font-size: .875rem; color: var(--gray); }
.about-stat-card .line { width: 2rem; height: 2px; background: var(--red); border-radius: 2px; margin-top: .75rem; }
.about-accent-1 { position: absolute; top: -1.5rem; left: -1.5rem; width: 6rem; height: 6rem; background: var(--red); border-radius: var(--radius-xl); opacity: .1; }
.about-accent-2 { position: absolute; top: -.75rem; left: -.75rem; width: 3rem; height: 3rem; background: var(--red); border-radius: var(--radius); opacity: .2; }

.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 2.5rem; }
.about-highlight { display: flex; align-items: flex-start; gap: .625rem; }
.about-highlight svg { width: 1rem; height: 1rem; color: var(--red); flex-shrink: 0; margin-top: .1rem; }
.about-highlight span { font-size: .875rem; color: var(--gray); }

.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 640px) { .about-values { grid-template-columns: 1fr; } .about-highlights { grid-template-columns: 1fr; } }
.value-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: border-color .3s, background .3s;
}
.value-card:hover { border-color: rgba(168,0,0,.2); background: #fff5f5; }
.value-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
  transition: background .3s;
}
.value-card:hover .value-icon { background: var(--red); }
.value-icon svg { width: 1.1rem; height: 1.1rem; color: var(--red); transition: color .3s; }
.value-card:hover .value-icon svg { color: var(--white); }
.value-card h4 { font-size: .875rem; margin-bottom: .4rem; }
.value-card p  { font-size: .75rem; color: var(--gray); line-height: 1.6; }

/* ── SERVICES ─────────────────────────────────────────────── */
#services { background: var(--off-white); }
.services-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.services-header .section-tag { justify-content: center; }
.services-header .section-subtitle { margin: 0 auto; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow .4s ease;
  margin-bottom: 2rem;
}
.service-card:hover { box-shadow: var(--shadow-card-hover); }
.service-card-grid {
  display: grid;
}
@media (min-width: 768px) { .service-card-grid { grid-template-columns: 1fr 1fr; } }
.service-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
@media (min-width: 768px) { .service-img { aspect-ratio: auto; min-height: 18rem; } }
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(31,31,31,.2), transparent);
}
.service-img-icon {
  position: absolute; top: 1.5rem; left: 1.5rem;
  width: 3rem; height: 3rem;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.service-img-icon svg { width: 1.4rem; height: 1.4rem; color: var(--red); }

.service-body { padding: 2.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 768px) { .service-body { padding: 1.75rem; } }
.service-num {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700; font-family: 'Poppins',sans-serif;
  color: var(--red); letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.service-body h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-body p  { color: var(--gray); font-size: .9rem; line-height: 1.8; margin-bottom: 1.5rem; }

.service-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.5rem; }
.service-benefit { display: flex; align-items: center; gap: .4rem; }
.service-benefit svg { width: .875rem; height: .875rem; color: var(--red); flex-shrink: 0; }
.service-benefit span { font-size: .75rem; color: var(--gray); }

.service-footer {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
}
.service-industries {
  font-size: .75rem;
  color: var(--gray);
  margin-top: .5rem;
  width: 100%;
}
.service-industries strong { color: var(--charcoal); }

/* Even cards – flip image order */
.service-card.even .service-img  { order: 2; }
.service-card.even .service-body { order: 1; }
@media (max-width: 768px) { .service-card.even .service-img, .service-card.even .service-body { order: 0; } }

/* ── WHY CHOOSE US ────────────────────────────────────────── */
#why { background: var(--white); overflow: hidden; position: relative; }
.why-bg { position: absolute; top: 0; right: 0; width: 33%; height: 100%; background: linear-gradient(to left, rgba(255,245,245,.5), transparent); pointer-events: none; }
.why-grid {
  display: grid;
  gap: 4rem;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.why-left { }
.why-left .section-subtitle { max-width: none; margin-bottom: 2rem; }
.why-stats {
  margin-top: 3rem;
  background: var(--charcoal);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.why-stat-num { font-size: 1.875rem; font-weight: 800; font-family: 'Poppins',sans-serif; color: var(--red); margin-bottom: .2rem; }
.why-stat-lbl { font-size: .8rem; color: rgba(255,255,255,.6); }

.why-reasons { display: flex; flex-direction: column; gap: 1rem; }
.reason-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: border-color .3s, background .3s;
  cursor: default;
}
.reason-card:hover { border-color: rgba(168,0,0,.25); background: rgba(255,245,245,.2); }
.reason-icon {
  width: 3rem; height: 3rem; flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.reason-card:hover .reason-icon { background: var(--red); }
.reason-icon svg { width: 1.2rem; height: 1.2rem; color: var(--red); transition: color .3s; }
.reason-card:hover .reason-icon svg { color: var(--white); }
.reason-body h3 { font-size: 1rem; margin-bottom: .35rem; }
.reason-body p  { font-size: .8rem; color: var(--gray); line-height: 1.7; }
.reason-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700; font-family: 'Poppins',sans-serif;
  color: var(--red);
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 100px;
  padding: .2rem .625rem;
  margin-left: .5rem;
  vertical-align: middle;
}

/* ── INDUSTRIES ───────────────────────────────────────────── */
#industries {
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.industries-pattern {
  position: absolute; inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.industries-glow-1 { position: absolute; top: 0; left: 0; width: 24rem; height: 24rem; background: var(--red); border-radius: 50%; opacity: .04; filter: blur(80px); }
.industries-glow-2 { position: absolute; bottom: 0; right: 0; width: 16rem; height: 16rem; background: var(--red); border-radius: 50%; opacity: .06; filter: blur(60px); }
.industries-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; position: relative; z-index: 1; }
.industries-header .section-tag { color: var(--red); justify-content: center; }
.industries-header .section-title { color: var(--white); }
.industries-header .section-subtitle { color: rgba(255,255,255,.8); margin: 0 auto; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative; z-index: 1;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4,1fr); } }
.industry-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: background .3s, border-color .3s;
  cursor: default;
}
.industry-card:hover { background: rgba(255,255,255,.09); border-color: rgba(168,0,0,.4); }
.industry-icon {
  width: 3rem; height: 3rem;
  background: rgba(168,0,0,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background .3s;
}
.industry-card:hover .industry-icon { background: var(--red); }
.industry-icon svg { width: 1.4rem; height: 1.4rem; color: var(--red); transition: color .3s; }
.industry-card:hover .industry-icon svg { color: var(--white); }
.industry-card h3 { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.industry-card p  { font-size: .775rem; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 1rem; }
.industry-count-num { font-size: 1.5rem; font-weight: 800; font-family: 'Poppins',sans-serif; color: var(--red); }
.industry-count-lbl { font-size: .7rem; color: rgba(255,255,255,.65); margin-left: .375rem; }

/* ── TRAINING ─────────────────────────────────────────────── */
#training { background: var(--off-white); }
.training-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.training-header .section-tag { justify-content: center; }
.training-header .section-subtitle { margin: 0 auto; }
.training-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .training-grid { grid-template-columns: 1fr 1fr; } }
.training-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, transform .3s;
}
.training-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.training-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.training-icon-wrap {
  width: 3.5rem; height: 3.5rem; flex-shrink: 0;
  background: #fff5f5;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.training-card:hover .training-icon-wrap { background: var(--red); }
.training-icon-wrap svg { width: 1.5rem; height: 1.5rem; color: var(--red); transition: color .3s; }
.training-card:hover .training-icon-wrap svg { color: var(--white); }
.training-top-text { flex: 1; }
.training-num { font-size: .65rem; font-weight: 800; font-family: 'Poppins',sans-serif; color: var(--red); letter-spacing: .15em; text-transform: uppercase; }
.training-top-text h3 { font-size: 1.1rem; margin-top: .2rem; line-height: 1.25; }
.training-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.training-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 500;
  padding: .3rem .625rem;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  color: var(--gray);
}
.training-badge.highlight { background: #fff5f5; color: var(--red); }
.training-badge svg { width: .75rem; height: .75rem; }
.training-card > p { font-size: .85rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.25rem; }
.training-modules { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.training-module { display: flex; align-items: center; gap: .625rem; font-size: .8rem; color: var(--gray); }
.training-module::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.training-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--red); font-weight: 600; font-family: 'Poppins',sans-serif; font-size: .875rem;
  transition: gap .2s;
}
.training-link:hover { gap: .75rem; }
.training-link svg { width: 1rem; height: 1rem; }
.training-cta {
  margin-top: 3rem;
  background: var(--charcoal);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
}
.training-cta h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; }
.training-cta p  { color: rgba(255,255,255,.6); max-width: 36rem; margin: 0 auto 2rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { background: var(--white); }
.faq-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; align-items: start; } }
.faq-left { }
.faq-left .section-subtitle { max-width: none; margin-bottom: 2rem; }
.faq-tip {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 2rem;
}
.faq-tip h4 { font-size: .9rem; margin-bottom: .5rem; }
.faq-tip p  { font-size: .8rem; color: var(--gray); margin-bottom: 1rem; }
.faq-tip a  { font-size: .875rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: .3rem; }
.faq-accordion { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  transition: border-color .2s;
}
.faq-item:hover { border-color: #fecaca; }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer; text-align: left;
  gap: 1rem;
  transition: background .2s;
}
.faq-btn:hover { background: var(--off-white); }
.faq-question { font-family: 'Poppins',sans-serif; font-weight: 600; font-size: .9rem; color: var(--charcoal); flex: 1; line-height: 1.4; }
.faq-item.open .faq-question { color: var(--red); }
.faq-icon {
  width: 2rem; height: 2rem; flex-shrink: 0;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.faq-item.open .faq-icon { background: var(--red); }
.faq-icon svg { width: .875rem; height: .875rem; color: var(--gray); transition: color .3s; }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 1rem; }
.faq-answer p { font-size: .85rem; color: var(--gray); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT ──────────────────────────────────────────────── */
#contact { background: var(--off-white); }
.contact-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.contact-header .section-tag { justify-content: center; }
.contact-header .section-subtitle { margin: 0 auto; }
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color .3s;
}
.contact-card:hover { border-color: rgba(168,0,0,.2); }
.contact-card-icon {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.contact-card-icon.red-bg { background: #fff5f5; }
.contact-card-icon.green-bg { background: #f0fdf4; }
.contact-card:hover .contact-card-icon.red-bg { background: var(--red); }
.contact-card-icon svg { width: 1.2rem; height: 1.2rem; transition: color .3s; }
.contact-card-icon.red-bg svg { color: var(--red); }
.contact-card-icon.green-bg svg { color: #16a34a; }
.contact-card:hover .contact-card-icon.red-bg svg { color: var(--white); }
.contact-card-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: .2rem; }
.contact-card-value { font-weight: 700; font-family: 'Poppins',sans-serif; font-size: .95rem; color: var(--charcoal); margin-bottom: .15rem; }
.contact-card-value a { color: inherit; transition: color .2s; }
.contact-card-value a:hover { color: var(--red); }
.contact-card-sub { font-size: .75rem; color: var(--gray); }
.hours-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  color: var(--white);
}
.hours-title { display: flex; align-items: center; gap: .625rem; font-weight: 700; font-family: 'Poppins',sans-serif; margin-bottom: 1rem; }
.hours-title svg { width: 1.1rem; height: 1.1rem; color: var(--red); }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; margin-bottom: .5rem; }
.hours-row span:first-child { color: rgba(255,255,255,.6); }
.hours-note { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; color: rgba(255,255,255,.5); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.contact-form-wrap > p { font-size: .875rem; color: var(--gray); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; margin-bottom: .4rem;
  font-size: .75rem; font-weight: 700; font-family: 'Poppins',sans-serif; color: var(--charcoal);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(168,0,0,.08);
}
.form-group textarea { resize: none; }
.form-note { font-size: .75rem; color: var(--gray); text-align: center; margin-top: .75rem; }
#form-success { display: none; text-align: center; padding: 3rem 0; }
#form-success .success-icon {
  width: 5rem; height: 5rem;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
#form-success .success-icon svg { width: 2.5rem; height: 2.5rem; color: #16a34a; }
#form-success h3 { font-size: 1.5rem; margin-bottom: .75rem; }
#form-success p  { color: var(--gray); font-size: .9rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
#footer { background: var(--charcoal); color: var(--white); }
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; } }
.footer-brand-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin: 1.25rem 0; max-width: 18rem; }
.footer-socials { display: flex; gap: .625rem; }
.footer-social {
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.footer-social:hover { background: var(--red); }
.footer-social svg { width: 1rem; height: 1rem; color: rgba(255,255,255,.7); }
.footer-col-title {
  font-family: 'Poppins',sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-link {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.footer-link::before { content: ''; width: 0; height: 1px; background: var(--red); transition: width .2s; display: inline-block; }
.footer-link:hover { color: var(--white); }
.footer-link:hover::before { width: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--red); flex-shrink: 0; margin-top: .1rem; }
.footer-contact-text { font-size: .875rem; color: rgba(255,255,255,.75); }
.footer-contact-text a { color: inherit; transition: color .2s; }
.footer-contact-text a:hover { color: var(--white); }
.footer-contact-sub { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .1rem; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #16a34a;
  color: var(--white);
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .625rem 1.1rem;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  transition: background .3s;
}
.footer-wa-btn:hover { background: #15803d; }
.footer-wa-btn svg { width: 1rem; height: 1rem; }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-meta { display: flex; align-items: center; gap: .75rem; font-size: .7rem; color: rgba(255,255,255,.3); }
.footer-meta-dot { width: 3px; height: 3px; background: rgba(255,255,255,.2); border-radius: 50%; }

/* ── WHATSAPP BUTTON ──────────────────────────────────────── */
#wa-btn-wrap {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}
#wa-popup {
  display: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--border);
  padding: 1.25rem;
  width: 18rem;
  animation: fadeUp .3s ease-out;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.wa-popup-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.wa-popup-profile { display: flex; align-items: center; gap: .75rem; }
.wa-popup-icon {
  width: 2.5rem; height: 2.5rem;
  background: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wa-popup-icon svg { width: 1.25rem; height: 1.25rem; color: var(--white); }
.wa-popup-name { font-weight: 700; font-family: 'Poppins',sans-serif; font-size: .875rem; color: var(--charcoal); }
.wa-popup-status { display: flex; align-items: center; gap: .3rem; }
.wa-popup-status-dot { width: .5rem; height: .5rem; background: #16a34a; border-radius: 50%; }
.wa-popup-status span { font-size: .7rem; color: #16a34a; }
.wa-popup-close { background: none; border: none; cursor: pointer; color: var(--gray); padding: .25rem; }
.wa-popup-close:hover { color: var(--charcoal); }
.wa-popup-close svg { width: 1rem; height: 1rem; }
.wa-popup-msg { background: var(--off-white); border-radius: var(--radius); padding: .75rem; margin-bottom: .75rem; font-size: .8rem; color: var(--gray); line-height: 1.6; }
.wa-popup-cta {
  display: block; width: 100%;
  background: #16a34a;
  color: var(--white);
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .75rem;
  text-align: center;
  border-radius: var(--radius);
  transition: background .3s;
}
.wa-popup-cta:hover { background: #15803d; }
#wa-main-btn {
  position: relative;
  width: 3.5rem; height: 3.5rem;
  background: #16a34a;
  border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  transition: background .3s, box-shadow .3s;
}
#wa-main-btn:hover { background: #15803d; box-shadow: 0 6px 24px rgba(22,163,74,.5); }
#wa-main-btn svg { width: 1.75rem; height: 1.75rem; color: var(--white); }
#wa-main-btn .wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(22,163,74,.3);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.5);opacity:0} }

/* ── SERVICE PAGE ─────────────────────────────────────────── */
.sp-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0F0F0F 0%, #1F1F1F 50%, #2A0000 80%, #A80000 100%);
}
.sp-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .2;
}
.sp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.8) 30%, rgba(0,0,0,.4) 70%, transparent);
}
.sp-hero-content { position: relative; z-index: 2; padding: 2rem 0 4rem; }
.breadcrumb { display: flex; align-items: center; gap: .375rem; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.breadcrumb a { color: inherit; transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: .875rem; height: .875rem; }
.sp-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: .4rem 1rem; margin-bottom: 1.25rem;
}
.sp-eyebrow-dot { width: .375rem; height: .375rem; background: var(--red); border-radius: 50%; }
.sp-eyebrow span { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.9); letter-spacing: .12em; text-transform: uppercase; }
.sp-hero h1 { font-size: clamp(1.75rem, 4.5vw, 3.5rem); color: var(--white); max-width: 52rem; margin-bottom: 1.25rem; }
.sp-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 40rem; line-height: 1.75; margin-bottom: 2rem; }
.sp-hero-btns { display: flex; flex-wrap: wrap; gap: .875rem; }

.sp-main { background: var(--white); padding: 5rem 0; }
.sp-layout { display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .sp-layout { grid-template-columns: 1fr 320px; align-items: start; } }
.sp-body { }
.sp-body-title { font-size: 1.875rem; margin-bottom: 1.5rem; }
.sp-body p { color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; font-size: .9rem; }

.sp-who {
  background: var(--off-white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--border);
  margin: 2.5rem 0;
}
.sp-who h2 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.sp-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 640px) { .sp-who-grid { grid-template-columns: 1fr; } }
.sp-who-item {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  font-size: .875rem; font-weight: 500;
}
.sp-who-item svg { width: 1rem; height: 1rem; color: var(--red); flex-shrink: 0; }

.sp-process { margin: 2.5rem 0; }
.sp-process h2 { font-size: 1.5rem; margin-bottom: 2rem; }
.process-steps { }
.process-step { display: flex; gap: 1.25rem; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.175rem; top: 2.5rem;
  bottom: -.5rem;
  width: 1px;
  background: var(--border);
}
.step-dot {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .8rem;
}
.step-body { padding-bottom: 1.75rem; flex: 1; }
.step-body h3 { font-size: 1rem; margin-bottom: .4rem; }
.step-body p  { font-size: .85rem; color: var(--gray); line-height: 1.75; }

.sp-faq { margin-top: 2.5rem; }
.sp-faq h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* Sidebar */
.sp-sidebar { }
.sidebar-benefits {
  background: var(--charcoal);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  color: var(--white);
  position: sticky;
  top: 7rem;
  margin-bottom: 1.5rem;
}
.sidebar-benefits h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 1.25rem; }
.sidebar-benefit { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.sidebar-benefit-dot {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: .1rem;
}
.sidebar-benefit-dot svg { width: .7rem; height: .7rem; color: var(--white); }
.sidebar-benefit span { font-size: .8rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.sidebar-cta-group { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: .625rem; }
.sidebar-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #16a34a; color: var(--white);
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .8rem;
  padding: .75rem; border-radius: var(--radius); text-align: center;
  transition: background .3s;
}
.sidebar-cta-wa:hover { background: #15803d; }
.sidebar-cta-wa svg { width: 1rem; height: 1rem; }
.sidebar-cta-contact {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--red); color: var(--white);
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .8rem;
  padding: .75rem; border-radius: var(--radius); text-align: center;
  transition: background .3s;
}
.sidebar-cta-contact:hover { background: var(--red-dark); }
.sidebar-cta-contact svg { width: 1rem; height: 1rem; }
.sidebar-related {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.sidebar-related h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.related-link {
  display: block;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: .625rem;
  transition: border-color .2s, background .2s;
}
.related-link:hover { border-color: rgba(168,0,0,.25); background: #fff5f5; }
.related-link-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .2rem; }
.related-link-top span { font-family: 'Poppins',sans-serif; font-weight: 600; font-size: .85rem; color: var(--charcoal); }
.related-link:hover .related-link-top span { color: var(--red); }
.related-link-top svg { width: .875rem; height: .875rem; color: var(--gray); }
.related-link p { font-size: .75rem; color: var(--gray); }

.sp-cta {
  background: var(--red);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.sp-cta-inner { text-align: center; position: relative; z-index: 1; }
.sp-cta h2 { font-size: clamp(1.5rem,3vw,2.25rem); color: var(--white); margin-bottom: 1rem; }
.sp-cta p  { color: rgba(255,255,255,.85); max-width: 38rem; margin: 0 auto 2.5rem; }
.sp-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: #f0f0f0; box-shadow: 0 4px 16px rgba(0,0,0,.15); transform: translateY(-2px); }

/* ── SERVICE PAGE FOOTER ALIASES ──────────────────────────── */
/* Service pages use slightly different footer class names */
footer.footer { background: var(--charcoal); color: var(--white); }
footer.footer .footer-main { padding: 4rem 0; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; } }

.footer-brand { }
.footer-logo svg { height: 2.75rem; width: auto; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin: 1.25rem 0; max-width: 18rem; }

.footer-col { }
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact li svg { width: 1rem; height: 1rem; color: var(--red); flex-shrink: 0; margin-top: .15rem; }
.footer-contact li a, .footer-contact li span { font-size: .875rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-contact li a:hover { color: var(--white); }

.footer-bottom { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── SERVICE PAGE WHATSAPP ALIASES ────────────────────────── */
.wa-wrap {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}
.wa-popup {
  display: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--border);
  overflow: hidden;
  width: 18rem;
  animation: fadeUp .3s ease-out;
}
.wa-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #075e54;
}
.wa-popup-avatar {
  width: 2.5rem; height: 2.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-popup-info { flex: 1; margin-left: .75rem; }
.wa-popup-name { font-weight: 700; font-family: 'Poppins',sans-serif; font-size: .875rem; color: var(--white); }
.wa-popup-status { display: flex; align-items: center; gap: .3rem; margin-top: .1rem; }
.wa-online-dot { width: .5rem; height: .5rem; background: #25d366; border-radius: 50%; display: inline-block; }
.wa-popup-status span { font-size: .7rem; color: rgba(255,255,255,.8); }
.wa-popup-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.7); padding: .25rem; }
.wa-popup-close:hover { color: var(--white); }
.wa-popup-close svg { width: 1rem; height: 1rem; }
.wa-popup-body { padding: 1rem 1.25rem; background: #ece5dd; }
.wa-bubble {
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  padding: .75rem 1rem;
  font-size: .8rem; color: var(--charcoal); line-height: 1.6;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  position: relative;
}
.wa-bubble-time { display: block; font-size: .65rem; color: var(--gray); text-align: right; margin-top: .35rem; }
.wa-popup-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #25d366; color: var(--white);
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .8rem;
  padding: .875rem;
  transition: background .3s;
  text-decoration: none;
}
.wa-popup-btn:hover { background: #1ebe5d; color: var(--white); }
.wa-main-btn {
  position: relative;
  width: 3.5rem; height: 3.5rem;
  background: #16a34a;
  border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  transition: background .3s, box-shadow .3s;
}
.wa-main-btn:hover { background: #15803d; box-shadow: 0 6px 24px rgba(22,163,74,.5); }
.wa-main-btn svg { width: 1.75rem; height: 1.75rem; color: var(--white); }
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(22,163,74,.3);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .section-padding { padding: 4rem 0; }
  .about-stat-card { bottom: -1rem; right: -1rem; width: 11rem; padding: 1rem; }
  .about-stat-card .num { font-size: 2rem; }
  .about-accent-1, .about-accent-2 { display: none; }
  .service-body { padding: 1.5rem; }
  .training-card { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-main { padding: 3rem 0; }
  .sp-hero { min-height: 60vh; }
  .sp-layout { grid-template-columns: 1fr; }
}
