* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', Arial, sans-serif;
  background: #f7f6f5;
  color: #111;
}

/* ══════════════════════════════════════
   HEADER — Professional Trusted Design
   ══════════════════════════════════════ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 72px;
  background: rgba(15, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(180, 50, 50, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 600;
  box-shadow: 0 2px 32px rgba(0,0,0,0.45);
}

/* Push page content below fixed header */
body { padding-top: 72px; }

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 8px rgba(220,80,80,0.4));
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.logo span {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1.5px;
  white-space: nowrap;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.45) !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
  z-index: 200;
}

.hamburger:hover { background: rgba(255,255,255,0.15); }

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #f5c6c6;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── NAVIGATION ── */
nav#nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav#nav-menu a {
  margin: 0 2px;
  padding: 6px 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.62);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

nav#nav-menu a::after { display: none; }

nav#nav-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

nav#nav-menu a.active-nav {
  color: #fff !important;
  background: rgba(180,50,50,0.25) !important;
  border: none !important;
  padding-bottom: 6px !important;
}

/* ── SERVICES DROPDOWN ── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 2px;
}

.dropdown-toggle-btn { display: none; }

.services-label {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.62);
  cursor: pointer;
  font-size: 0.82rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}
.services-label::after {
  content: " ▾";
  font-size: 0.75rem;
  margin-left: 2px;
  transition: transform 0.25s;
  display: inline-block;
}

/* Active states driven by .open class (JS) */
.nav-dropdown.open .services-label,
.nav-dropdown:hover .services-label {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-dropdown.open .services-label::after {
  transform: rotate(180deg);
}

/* ── Dropdown panel ─────────────────────────────────────────────────────────
   padding-top creates an invisible bridge between the label and the panel so
   the mouse never "leaves" .nav-dropdown while travelling downward.
   ────────────────────────────────────────────────────────────────────────── */
.dropdown-menu {
  display:   none;
  position:  absolute;
  top:       100%;
  left:      50%;
  transform: translateX(-50%);
  padding-top: 10px;       /* ← invisible bridge */
  min-width: 220px;
  z-index:   9999;
}
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu-inner {
  background:    #141010;
  border:        1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow:      hidden;
  box-shadow:    0 20px 48px rgba(0,0,0,0.7),
                 inset 0 0 0 1px rgba(180,50,50,0.12);
  padding: 6px;
}

.dropdown-menu a {
  display:     flex;
  align-items: center;
  gap:         10px;
  padding:     10px 14px;
  border-radius: 7px;
  color:       rgba(255,255,255,0.65);
  font-family: 'Syne', sans-serif;
  font-size:   0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition:  background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover  {
  background:   rgba(184,50,50,0.22);
  color:        #fff;
  padding-left: 18px;
}

.nav-dropdown > a::after { display: none; }

/* ── HERO SLIDESHOW ── */
.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: calc(100vh - 92px);
  overflow: hidden;
  background: #0d1b2a;
}

.banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.banner.active {
  opacity: 1;
  pointer-events: auto;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.65);
}

.banner-text {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  background: rgba(13, 27, 42, 0.55);
  padding: 14px 44px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
}

.banner-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.banner-dots span {
  width: 11px;
  height: 11px;
  background: rgba(255,255,255,0.35);
  display: inline-block;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.5);
}

.banner-dots span.active-dot {
  background: #f9fdf9;
  transform: scale(1.3);
}

/* ── SECTIONS ── */
section {
  padding: 60px 48px;
  scroll-margin-top: 72px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: #f9fdf9;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(27, 94, 32, 0.15);
  background: rgba(200, 230, 201, 0.5);
  border-color: rgba(46, 125, 50, 0.35);
}

footer {
  background: #0a0505;
  border-top: 1px solid rgba(180,50,50,0.2);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  font-family: 'Syne', sans-serif;
}
.footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 40px 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
}
.footer-logo img { border-radius: 8px; }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.5; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col strong {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(180,50,50,0.9); margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 0.78rem; transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 40px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 8px;
}
.footer-credits a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-credits a:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 20px 24px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
}

@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* About Us */
#about {
  background: transparent;
  border-left: none;
}

.card h3 { font-size: 1.1rem; color: #0d47a1; margin-bottom: 10px; }

.card-desc { font-size: 0.88rem; color: #444; line-height: 1.6; margin-bottom: 14px; }

.lang-section { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.lang-group { display: flex; flex-direction: column; gap: 5px; }
.lang-label { font-size: 0.75rem; font-weight: bold; color: #666; text-transform: uppercase; letter-spacing: 0.5px; }
.lang-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.tag {
  background: #e8f0fe; color: #0d47a1; font-size: 0.75rem;
  font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 1px solid #c5d5f5;
}

.tag-db { background: #e8f5e9; color: #1b5e20; border-color: #a5d6a7; }

.code-block {
  background: #1e1e2e; border-radius: 8px; padding: 14px; margin: 12px 0; overflow-x: auto;
}
.code-block pre { margin: 0; }
.code-block code {
  font-family: 'Courier New', monospace; font-size: 0.72rem;
  color: #cdd6f4; line-height: 1.6; white-space: pre;
}

#services .grid { grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; }

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 40px; align-items: start; max-width: 900px; margin: 0 auto;
}
.contact-info p { font-size: 1rem; line-height: 2; color: #333; }
.contact-info strong { color: #0d47a1; }
.map-wrapper { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

@media (max-width: 680px) { .contact-wrapper { grid-template-columns: 1fr; } }

.pricing-card { text-align: center; padding: 30px 24px; }
.pricing-icon { font-size: 2.5rem; margin-bottom: 12px; }
.pricing-card h3 { font-size: 1.2rem; color: #0d47a1; margin-bottom: 10px; }
.pricing-cta {
  margin-top: 16px; font-size: 0.9rem; color: #555;
  background: #dcedc8; border-radius: 8px; padding: 10px 14px; border-left: 3px solid #0d47a1;
}
.cta-link { color: #0d47a1; font-weight: bold; text-decoration: underline; }
.cta-link:hover { color: red; }
#pricing .grid { grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 0 auto; }
@media (max-width: 720px) { #pricing .grid { grid-template-columns: 1fr; } }

/* ── SME Card with background image ── */
.sme-card {
  position: relative;
  overflow: hidden;
  background-image: url('images/sme-bg.jpg');
  background-size: cover;
  background-position: center top;
  padding: 0;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Dark gradient overlay so text is readable */
.sme-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 20, 50, 0.85) 0%,
    rgba(20, 40, 100, 0.72) 50%,
    rgba(10, 20, 60, 0.88) 100%
  );
  z-index: 0;
}

/* pc-body inside sme-card — must be above overlay */
.sme-card .pc-body {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

/* icon glow */
.sme-card .pc-icon {
  filter: drop-shadow(0 0 10px rgba(100, 180, 255, 0.7));
}

/* Most Popular badge */
.sme-card .pc-popular {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  box-shadow: 0 3px 12px rgba(21, 101, 192, 0.5);
}

/* heading */
.sme-card h3 {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(100, 180, 255, 0.6), 0 2px 6px rgba(0,0,0,0.6) !important;
  letter-spacing: 0.5px;
}

/* description + list items */
.sme-card p,
.sme-card ul li {
  color: rgba(200, 225, 255, 0.88) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
}

/* CTA button */
.sme-card .pc-btn-white {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #c8e6ff !important;
  border: 1px solid rgba(100, 180, 255, 0.45) !important;
  box-shadow: none !important;
}
.sme-card .pc-btn-white:hover {
  background: rgba(100, 180, 255, 0.28) !important;
  color: #fff !important;
}

/* ── AI Agent Card with background image ── */
.ai-agent-card {
  position: relative;
  overflow: hidden;
  background-image: url('images/ai-agent-pricing-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 0;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.ai-agent-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 10, 25, 0.88) 0%,
    rgba(10, 20, 45, 0.78) 50%,
    rgba(5, 15, 35, 0.85) 100%
  );
  z-index: 0;
}

.ai-agent-card .pc-body {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.ai-agent-card h3 {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(0, 200, 255, 0.5), 0 2px 6px rgba(0,0,0,0.6) !important;
  letter-spacing: 0.5px;
}

.ai-agent-card p,
.ai-agent-card ul li {
  color: rgba(200, 230, 255, 0.85) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
}

.ai-agent-card .pc-btn-ghost {
  background: rgba(0, 180, 255, 0.12) !important;
  border-color: rgba(0, 180, 255, 0.4) !important;
  color: #a0e0ff !important;
}

.ai-agent-card .pc-btn-ghost:hover {
  background: rgba(0, 180, 255, 0.25) !important;
  color: #fff !important;
}

.ai-agent-card .pc-icon {
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.6));
}

/* ── Enterprise Infrastructure Card with background image ── */
.enterprise-card {
  position: relative;
  overflow: hidden;
  background-image: url('images/enterprise-infra-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.enterprise-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 18, 10, 0.88) 0%,
    rgba(15, 30, 18, 0.78) 50%,
    rgba(8, 20, 12, 0.85) 100%
  );
  z-index: 0;
}

.enterprise-card .pc-body {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.enterprise-card h3 {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(80, 220, 120, 0.5), 0 2px 6px rgba(0,0,0,0.6) !important;
  letter-spacing: 0.5px;
}

.enterprise-card p,
.enterprise-card ul li {
  color: rgba(200, 240, 210, 0.85) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
}

.enterprise-card .pc-btn-ghost {
  background: rgba(80, 200, 100, 0.12) !important;
  border-color: rgba(80, 200, 100, 0.4) !important;
  color: #a0f0b0 !important;
}

.enterprise-card .pc-btn-ghost:hover {
  background: rgba(80, 200, 100, 0.25) !important;
  color: #fff !important;
}

.enterprise-card .pc-icon {
  filter: drop-shadow(0 0 10px rgba(80, 220, 120, 0.6));
}

.ai-image-wrap { text-align: center; margin: 24px 0 32px; }
.ai-banner-img { max-width: 600px; width: 90%; border-radius: 16px; box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

.ai-definitions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 960px; margin: 0 auto 32px;
}

.ai-def-card {
  background: #f9fdf9; border-radius: 14px; padding: 24px;
  border-left: 5px solid #1b5e20; box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.ai-def-card h3 { color: #1b5e20; font-size: 1.1rem; margin-bottom: 12px; }
.ai-def-card p { font-size: 0.92rem; color: #333; line-height: 1.75; margin-bottom: 12px; }

.ai-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.ai-list li { font-size: 0.88rem; color: #2e7d32; background: #e8f5e9; padding: 6px 12px; border-radius: 8px; }

.ai-conclusion {
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: white; border-radius: 14px; padding: 22px 30px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 6px 20px rgba(27,94,32,0.3);
}
.conclusion-icon { font-size: 2rem; flex-shrink: 0; }
.ai-conclusion p { font-size: 1rem; line-height: 1.7; margin: 0; }
.ai-conclusion strong { color: #a5d6a7; }
@media (max-width: 680px) { .ai-definitions { grid-template-columns: 1fr; } }

.portfolio-cta {
  margin-top: 0; font-size: 1rem; color: #1b5e20; font-weight: 600;
  background: #e8f5e9; display: inline-block; padding: 10px 22px;
  border-radius: 30px; border: 1px solid #a5d6a7;
}

.about-bilingual { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 10px; }
.about-lang {
  padding: 20px 24px; background: #f9fdf9; border-radius: 12px;
  border-top: 4px solid #0d47a1; box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.about-lang:last-child { border-top-color: #1b5e20; }
.about-lang-badge {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.5px; color: #555; background: #e8f0fe;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.about-lang:last-child .about-lang-badge { background: #e8f5e9; }
.about-lang p { font-size: 0.95rem; line-height: 1.8; color: #333; }
@media (max-width: 750px) { .about-bilingual { grid-template-columns: 1fr; } }

.banner-contact-btn {
  position: absolute; bottom: 52px; right: 28px; z-index: 20;
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #3a0a0a 0%, #7b1c1c 40%, #9b2335 70%, #c0392b 100%);
  color: #fff;
  text-decoration: none; padding: 20px 36px; border-radius: 50px;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform 0.2s, box-shadow 0.3s;
  font-weight: 600; font-size: 1.8rem;
}
.banner-contact-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.12) inset;
}
.contact-btn-icon { font-size: 2.6rem; line-height: 1; }
.contact-btn-label { letter-spacing: 0.5px; }

.fb-portfolio-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 12px;
  background: #e8f5e9; color: #1b5e20; text-decoration: none;
  font-size: 1rem; font-weight: 600; padding: 10px 22px;
  border-radius: 30px; border: 1px solid #a5d6a7;
  transition: background 0.3s, transform 0.2s;
}
.fb-portfolio-link:hover { background: #c8e6c9; border-color: #66bb6a; transform: translateY(-2px); }
.fb-icon { font-size: 1.2rem; }

#portfolio { display: block; }

/* active-nav handled above */
a.logo { text-decoration: none; }

.community-box {
  display: flex; align-items: center; gap: 14px; margin-top: 14px;
  background: #e8f5e9; border-radius: 10px; padding: 12px 16px; border: 1px solid #a5d6a7;
}
.community-icon { font-size: 1.6rem; }
.community-label { font-size: 0.85rem; color: #333; margin-bottom: 4px; }
.community-link { display: inline-block; font-size: 0.88rem; color: #0d47a1; font-weight: 600; text-decoration: none; }
.community-link:hover { text-decoration: underline; color: red; }

/* Service page breadcrumb */
.service-breadcrumb { font-size: 0.85rem; color: #666; margin-bottom: 18px; }
.service-breadcrumb a { color: #0d47a1; text-decoration: none; }
.service-breadcrumb a:hover { text-decoration: underline; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    position: relative;
    z-index: 600;
  }

  /* Nav slides in from right */
  nav#nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 300px;
    height: 100%;
    background: #0f0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 40px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.7);
    border-left: 1px solid rgba(180,50,50,0.2);
    z-index: 550;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  nav#nav-menu.open { display: flex; }

  nav#nav-menu a {
    display: block;
    margin: 0;
    padding: 13px 12px;
    font-size: 0.92rem;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    width: 100%;
    border-radius: 8px;
    border-bottom: none;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    cursor: pointer;
  }

  nav#nav-menu a::after { display: none; }
  nav#nav-menu a:hover, nav#nav-menu a:active { color: #fff; background: rgba(255,255,255,0.06); }
  nav#nav-menu a.active-nav { color: #fff; background: rgba(184,50,50,0.2); }
  nav#nav-menu a.nav-cta { color: #fff !important; background: #b83232 !important; margin-top: 8px; }

  /* Services dropdown row in mobile nav */
  .nav-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .nav-dropdown > .services-label {
    flex: 1;
    padding: 13px 12px;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-family: 'Syne', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255,255,255,0.1);
  }

  .nav-dropdown > .services-label:hover,
  .nav-dropdown > .services-label:active {
    color: #fff;
    background: rgba(255,255,255,0.06);
  }

  .dropdown-toggle-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #f5c6c6;
    font-size: 0.6rem;
    padding: 14px 6px;
    cursor: pointer;
    transition: transform 0.3s;
    -webkit-tap-highlight-color: rgba(255,255,255,0.1);
  }

  .nav-dropdown.open .dropdown-toggle-btn {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    padding-top: 0;
    width: 100%;
    min-width: unset;
    z-index: auto;
  }

  .dropdown-menu-inner {
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    padding: 4px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 11px 18px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #f5c6c6;
    width: 100%;
  }

  .dropdown-menu a:last-child { border-bottom: none; }

  /* Overlay — sits BELOW nav, just dims the page behind */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 490;
    cursor: pointer;
  }

  .nav-overlay.open {
    display: block;
  }

  header { padding: 10px 16px; }
  body { padding-top: 70px; }
  .logo-img { width: 50px; height: 50px; }

  .hero {
    width: 100%;
    height: calc(100svh - 70px);
  }

  .banner-text {
    font-size: 1rem;
    padding: 10px 18px;
    white-space: normal;
    text-align: center;
    width: 88%;
    bottom: 60px;
  }

  .banner-contact-btn {
    bottom: 16px;
    right: 16px;
    padding: 14px 22px;
    font-size: 1.3rem;
    gap: 10px;
  }
  .contact-btn-icon { font-size: 1.8rem; }
}

/* ══════════════════════════════════════
   PAGE HERO — inner pages dark banner
   ══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0f0a0a 0%, #1a0808 40%, #200d0d 100%);
  border-bottom: 1px solid rgba(180,50,50,0.2);
  padding: 52px 48px 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,50,50,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(220,100,100,0.8);
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.page-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 600px;
}

/* ── Breadcrumb style update ── */
.service-breadcrumb {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Section headings global ── */
section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: #111;
}

@media (max-width: 768px) {
  .page-hero { padding: 36px 24px 32px; }
  section { padding: 48px 20px; }
}


/* ══════════════════════════════════════════════════════
   GLOBAL UPGRADE — Professional Design System
   Matches index.html dark/warm aesthetic
   ══════════════════════════════════════════════════════ */

:root {
  --ink:       #0e0c0c;
  --ink-mid:   #444;
  --ink-soft:  #777;
  --surface:   #ffffff;
  --surface-2: #f7f5f3;
  --surface-3: #f0ede9;
  --border:    #e8e3dd;
  --red:       #b83232;
  --red-dark:  #8c1e1e;
  --red-glow:  rgba(184,50,50,0.15);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.08), 0 24px 56px rgba(0,0,0,0.12);
  --radius:    14px;
  --radius-lg: 20px;
}

body { background: var(--surface-2); }

/* ── Universal section wrapper ── */
.inner { max-width: 1080px; margin: 0 auto; }

/* ── PRO CARD ── */
.pro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.pro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ── SECTION LABEL ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ── SECTION TITLE ── */
.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-title span {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-body {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 580px;
}

/* ── PRO BUTTON ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(184,50,50,0.35);
}
.btn-red:hover { background: #d63a3a; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(184,50,50,0.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); }

/* ── CHIP / TAG ── */
.chip {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--surface-3);
  color: var(--ink-mid);
  border: 1px solid var(--border);
}

/* ── DIVIDER ── */
.pro-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* ── ICON BOX ── */
.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* ── STAT BADGE ── */
.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-badge .num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-badge .lbl {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}

/* ── FEATURE ROW ── */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .icon-box { background: var(--red-glow); border-color: rgba(184,50,50,0.2); }
.feature-row h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-row p { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(184,50,50,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-band p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 420px; }
.cta-band .btn-red { flex-shrink: 0; }

@media (max-width: 768px) {
  .cta-band { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}

/* ══ ABOUT PAGE ══ */
.about-main { padding: 0 48px 0; }
.ab-section { padding: 56px 0; }
.ab-who { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.ab-stats { display: flex; align-items: center; gap: 28px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.ab-stat-div { width: 1px; height: 36px; background: var(--border); }
.ab-who-badges { display: flex; flex-direction: column; gap: 14px; }
.ab-badge-card { display: flex; align-items: flex-start; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; transition: box-shadow .2s; }
.ab-badge-card:hover { box-shadow: var(--shadow-md); }
.ab-badge-card h4 { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ab-badge-card p { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.5; }
.ab-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ab-value-card { padding: 28px 22px; }
.ab-val-num { display: block; font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--border); margin-bottom: 12px; line-height: 1; }
.ab-value-card h4 { font-family: 'Syne', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ab-value-card p { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.65; }
.ab-bilingual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ab-lang-card { padding: 28px; }
.ab-lang-flag { font-size: 1.8rem; margin-bottom: 14px; }
.ab-lang-card p { font-size: 0.88rem; color: var(--ink-mid); line-height: 1.8; }
@media (max-width: 900px) {
  .about-main { padding: 0 24px; }
  .ab-who { grid-template-columns: 1fr; gap: 32px; }
  .ab-values-grid { grid-template-columns: 1fr 1fr; }
  .ab-bilingual { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   PROFESSIONAL DESIGN SYSTEM v2
   All inner pages — consistent with index.html
   ══════════════════════════════════════════════ */

/* ── Page layout ── */
.page-body  { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.pg-section { padding: 56px 0; }
.pb-72      { padding-bottom: 72px; }
.mb-8       { margin-bottom: 8px  !important; }
.mb-12      { margin-bottom: 12px !important; }
.mb-28      { margin-bottom: 28px !important; }
.mb-32      { margin-bottom: 32px !important; }
.mb-36      { margin-bottom: 36px !important; }
.mb-40      { margin-bottom: 40px !important; }
.mt-12      { margin-top: 12px; }
.mt-32      { margin-top: 32px; }
.section-rule, .sec-rule { height: 1px; background: #e8e3dd; margin: 0; }

/* ── Typography ── */
.label-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: #b83232;
  margin-bottom: 14px;
}
.label-chip::before { content:''; width:18px; height:2px; background:#b83232; border-radius:2px; display:inline-block; }
.section-h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 800; color: #0e0c0c; line-height: 1.15; margin-bottom: 14px;
}
.section-h2 span, .section-h2 em {
  background: linear-gradient(135deg,#8c1e1e,#b83232);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: normal;
}
.section-p { font-size: 0.95rem; color: #444; line-height: 1.8; max-width: 580px; }
.ph-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(220,100,100,0.85); margin-bottom: 12px; display:block;
}
.ph-title  { font-family:'Syne',sans-serif; font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; color:#fff; margin-bottom:12px; text-shadow:0 2px 16px rgba(0,0,0,0.35); }
.ph-sub    { font-size:0.95rem; color:rgba(255,255,255,0.55); line-height:1.7; max-width:580px; }

/* ── Split section ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.split-right, .split-left { min-width: 0; position: relative; }
.split-left { z-index: 2; }
.split-right { z-index: 1; }

/* ── KPI bar ── */
.kpi-bar  { display:flex; align-items:center; gap:16px; flex-wrap: wrap; margin-top:32px; padding-top:28px; border-top:1px solid #e8e3dd; }
.kpi-item { display:flex; flex-direction:column; align-items:center; text-align:center; }
.kpi-item b  { font-family:'Syne',sans-serif; font-size:1.8rem; font-weight:800; color:#b83232; line-height:1; }
.kpi-item span { font-size:0.7rem; color:#888; margin-top:3px; white-space:nowrap; }
.kpi-sep  { width:1px; height:32px; background:#e8e3dd; flex-shrink:0; }

/* ── Expertise list ── */
.exp-list  { display:flex; flex-direction:column; gap:14px; }
.exp-item  { display:flex; align-items:flex-start; gap:14px; background:#fff; border:1px solid #e8e3dd; border-radius:12px; padding:16px 18px; transition:box-shadow .2s; }
.exp-item:hover { box-shadow:0 6px 24px rgba(0,0,0,0.08); }
.exp-dot   { font-size:1.5rem; width:40px; height:40px; display:flex; align-items:center; justify-content:center; background:#f7f5f3; border-radius:10px; flex-shrink:0; border:1px solid #e8e3dd; }
.exp-dot-red { background:rgba(184,50,50,0.1); border-color:rgba(184,50,50,0.2); }
.exp-item-accent { border-color:rgba(184,50,50,0.2); background:rgba(184,50,50,0.04); }
.exp-item h4  { font-family:'Syne',sans-serif; font-size:0.88rem; font-weight:700; color:#0e0c0c; margin-bottom:3px; }
.exp-item p   { font-size:0.78rem; color:#666; line-height:1.5; }

/* ── Values grid ── */
.val-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.val-card  { background:#fff; border:1px solid #e8e3dd; border-radius:14px; padding:28px 22px; transition:box-shadow .2s,transform .2s; }
.val-card:hover { box-shadow:0 8px 28px rgba(0,0,0,0.08); transform:translateY(-3px); }
.val-n     { display:block; font-family:'Syne',sans-serif; font-size:1.8rem; font-weight:800; color:#e8e3dd; margin-bottom:12px; line-height:1; }
.val-card h4 { font-family:'Syne',sans-serif; font-size:0.88rem; font-weight:700; color:#0e0c0c; margin-bottom:8px; }
.val-card p  { font-size:0.8rem; color:#666; line-height:1.65; }

/* ── Bilingual ── */
.bilingual-cols { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.bilingual-card { background:#fff; border:1px solid #e8e3dd; border-radius:14px; padding:28px; }
.lang-flag { font-size:1rem; font-weight:700; font-family:'Syne',sans-serif; color:#444; margin-bottom:14px; }
.bilingual-card p { font-size:0.88rem; color:#555; line-height:1.8; }

/* ── CTA banner ── */
.cta-banner {
  background:#0e0c0c; border-radius:18px; padding:44px 40px;
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; top:-80px; right:-80px; width:280px; height:280px;
  background:radial-gradient(circle,rgba(184,50,50,0.28) 0%,transparent 65%); pointer-events:none;
}
.cta-banner-split { justify-content:space-between; }
.cta-banner h3 { font-family:'Syne',sans-serif; font-size:1.35rem; font-weight:800; color:#fff; margin-bottom:8px; }
.cta-banner p  { font-size:0.88rem; color:rgba(255,255,255,0.5); line-height:1.7; max-width:440px; }
.cta-btns { display:flex; gap:12px; flex-wrap:wrap; flex-shrink:0; }
.btn-cta  {
  display:inline-flex; align-items:center; gap:8px;
  background:#b83232; color:#fff; font-family:'Syne',sans-serif; font-weight:700; font-size:0.88rem;
  padding:12px 26px; border-radius:8px; text-decoration:none; white-space:nowrap;
  box-shadow:0 4px 14px rgba(184,50,50,0.4);
  transition:background .2s,transform .15s,box-shadow .2s;
}
.btn-cta:hover { background:#d63a3a; transform:translateY(-2px); box-shadow:0 8px 22px rgba(184,50,50,0.5); }
.btn-cta-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.85);
  font-family:'Syne',sans-serif; font-weight:600; font-size:0.88rem;
  padding:12px 22px; border-radius:8px; text-decoration:none;
  border:1px solid rgba(255,255,255,0.18); white-space:nowrap;
  transition:background .2s,color .2s;
}
.btn-cta-ghost:hover { background:rgba(255,255,255,0.15); color:#fff; }

/* ── Contact page ── */
.contact-grid-section { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-list  { display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
.contact-row   { display:flex; align-items:flex-start; gap:14px; background:#fff; border:1px solid #e8e3dd; border-radius:12px; padding:16px 18px; text-decoration:none; color:inherit; transition:box-shadow .2s,transform .2s; }
.contact-row:hover { box-shadow:0 6px 20px rgba(0,0,0,0.08); transform:translateY(-2px); }
.contact-row-addr { cursor:default; }
.cr-icon { width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.cr-body { flex:1; display:flex; flex-direction:column; gap:1px; }
.cr-body span   { font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:0.8px; color:#999; font-family:'Syne',sans-serif; }
.cr-body strong { font-size:0.92rem; color:#0e0c0c; font-weight:600; }
.cr-body em     { font-size:0.75rem; color:#888; font-style:normal; }
.cr-arrow { color:#ccc; font-size:1rem; flex-shrink:0; margin-top:2px; }
.trust-pills { display:flex; flex-wrap:wrap; gap:8px; }
.trust-pills span { font-family:'Syne',sans-serif; font-size:0.72rem; font-weight:700; padding:5px 14px; background:#fff; border:1px solid #e8e3dd; border-radius:100px; color:#555; }
.map-label { font-family:'Syne',sans-serif; font-size:0.82rem; font-weight:700; color:#444; margin-bottom:10px; }
.map-wrap  { border-radius:14px; overflow:hidden; height:360px; border:1px solid #e8e3dd; box-shadow:0 4px 20px rgba(0,0,0,0.07); }

/* ── Steps ── */
.steps-row  { display:flex; align-items:flex-start; gap:8px; }
.step-card  { flex:1; background:#fff; border:1px solid #e8e3dd; border-radius:14px; padding:28px 22px; text-align:center; }
.step-num   { width:44px; height:44px; border-radius:50%; background:#b83232; color:#fff; font-family:'Syne',sans-serif; font-weight:800; font-size:1.1rem; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; box-shadow:0 4px 14px rgba(184,50,50,0.35); }
.step-card h4 { font-family:'Syne',sans-serif; font-size:0.92rem; font-weight:700; color:#0e0c0c; margin-bottom:8px; }
.step-card p  { font-size:0.8rem; color:#666; line-height:1.65; }
.step-arrow   { font-size:1.4rem; color:#ccc; padding-top:28px; flex-shrink:0; }

/* ── Pricing ── */
.pricing-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:0; }
.price-card    { border-radius:18px; overflow:hidden; transition:transform .25s,box-shadow .25s; }
.price-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(0,0,0,0.14); }
.pc-body       { padding:32px 28px; }
.price-card-sme { position:relative; }
.price-card-dark .pc-body { background:linear-gradient(160deg,#141010,#1e1414); }
.price-card-dark h3,
.price-card-dark p,
.price-card-dark ul { color:rgba(255,255,255,0.75) !important; }
.price-card-dark h3 { color:#fff !important; }
.pc-popular { font-family:'Syne',sans-serif; font-size:0.68rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; background:linear-gradient(135deg,#f59e0b,#d97706); color:#fff; padding:4px 14px; border-radius:100px; display:inline-block; margin-bottom:16px; box-shadow:0 3px 10px rgba(245,158,11,0.4); }
.pc-icon   { font-size:2.2rem; margin-bottom:14px; display:block; }
.pc-body h3 { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:800; color:#0e0c0c; margin-bottom:10px; }
.pc-body p  { font-size:0.85rem; color:#666; line-height:1.7; margin-bottom:18px; }
.pc-body ul { list-style:none; display:flex; flex-direction:column; gap:8px; margin-bottom:24px; }
.pc-body ul li { font-size:0.83rem; color:#444; }
.pc-btn { display:block; text-align:center; padding:12px 20px; border-radius:8px; font-family:'Syne',sans-serif; font-weight:700; font-size:0.83rem; text-decoration:none; transition:transform .2s,box-shadow .2s; }
.pc-btn-white { background:#fff; color:#0d47a1; box-shadow:0 3px 12px rgba(0,0,0,0.15); }
.pc-btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(0,0,0,0.2); }
.pc-btn-ghost { background:rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.25); }
.pc-btn-ghost:hover { background:rgba(255,255,255,0.2); }
.info-box { display:flex; gap:18px; align-items:flex-start; background:#fff; border:1px solid #e8f5e9; border-left:3px solid #1b5e20; border-radius:12px; padding:24px 28px; }
.info-icon { font-size:2rem; flex-shrink:0; }
.info-box h4 { font-family:'Syne',sans-serif; font-size:0.92rem; font-weight:700; color:#1b5e20; margin-bottom:6px; }
.info-box p  { font-size:0.85rem; color:#444; line-height:1.75; }

/* ── FAQ ── */
.faq-stack { display:flex; flex-direction:column; gap:8px; }
.faq-item  { background:#fff; border:1px solid #e8e3dd; border-radius:10px; overflow:hidden; }
.faq-q     { width:100%; background:none; border:none; padding:16px 20px; text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; font-family:'DM Sans',sans-serif; }
.faq-q span:first-child { font-size:0.92rem; font-weight:600; color:#0e0c0c; }
.faq-arr   { font-size:0.6rem; color:#bbb; transition:transform .3s; }
.faq-q.open .faq-arr { transform:rotate(180deg); }
.faq-q:hover { background:#fafaf8; }
.faq-a     { display:none; padding:0 20px 18px; }
.faq-a.open { display:block; }
.faq-a p   { font-size:0.87rem; color:#555; line-height:1.75; }

/* ── Portfolio ── */
.stat-strip { background:#fff; border:1px solid #e8e3dd; border-radius:16px; padding:28px 40px; display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap; }
.ss-item    { display:flex; flex-direction:column; align-items:center; text-align:center; }
.ss-item b  { font-family:'Syne',sans-serif; font-size:2rem; font-weight:800; color:#b83232; line-height:1; }
.ss-item span { font-size:0.72rem; color:#888; margin-top:4px; }
.ss-div     { width:1px; height:36px; background:#e8e3dd; }
.pf-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px; }
.pf-filter  { padding:7px 18px; border-radius:100px; border:1.5px solid #e8e3dd; background:#fff; color:#666; font-family:'Syne',sans-serif; font-size:0.78rem; font-weight:700; cursor:pointer; transition:all .2s; }
.pf-filter:hover  { border-color:#b83232; color:#b83232; }
.pf-filter.active { background:#b83232; color:#fff; border-color:transparent; box-shadow:0 3px 12px rgba(184,50,50,0.3); }
.pf-grid    { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:0; }
.pf-card    { background:#fff; border:1px solid #e8e3dd; border-radius:16px; overflow:hidden; transition:transform .22s,box-shadow .22s; }
.pf-card:hover { transform:translateY(-5px); box-shadow:0 14px 36px rgba(0,0,0,0.11); }
.pfc-hdr    { padding:24px 20px 18px; display:flex; align-items:center; gap:10px; position:relative; }
.pfc-hdr span:first-child { font-size:1.8rem; }
.pfc-tag    { font-family:'Syne',sans-serif; font-size:0.65rem; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; background:rgba(255,255,255,0.18); color:rgba(255,255,255,0.9); padding:3px 10px; border-radius:100px; }
.pfc-feat   { position:absolute; top:12px; right:14px; font-size:0.62rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; background:rgba(255,255,255,0.92); color:#b83232; padding:3px 10px; border-radius:100px; }
.pfc-body   { padding:16px 18px 20px; }
.pfc-body h4 { font-family:'Syne',sans-serif; font-size:0.92rem; font-weight:700; color:#0e0c0c; margin-bottom:8px; }
.pfc-body p  { font-size:0.8rem; color:#666; line-height:1.65; margin-bottom:12px; }
.pfc-chips  { display:flex; flex-wrap:wrap; gap:5px; }
.pfc-chips span { font-size:0.66rem; font-weight:600; padding:3px 9px; background:#f7f5f3; color:#555; border-radius:100px; border:1px solid #e8e3dd; font-family:'Syne',sans-serif; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:#fff; border:1px solid #e8e3dd; border-radius:14px; padding:26px 22px; transition:box-shadow .2s,transform .2s; }
.testi-card:hover { box-shadow:0 8px 24px rgba(0,0,0,0.08); transform:translateY(-3px); }
.testi-stars { color:#f59e0b; font-size:0.9rem; letter-spacing:2px; margin-bottom:12px; }
.testi-card p { font-size:0.85rem; color:#444; line-height:1.75; font-style:italic; margin-bottom:18px; }
.testi-who  { display:flex; align-items:center; gap:10px; }
.testi-av   { width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,#b83232,#d63a3a); color:#fff; font-family:'Syne',sans-serif; font-weight:800; font-size:1rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.testi-who strong { display:block; font-size:0.85rem; color:#0e0c0c; font-weight:600; }
.testi-who span   { display:block; font-size:0.72rem; color:#999; }

/* ── Service pages ── */
.svc-breadcrumb-row { padding:20px 0 0; font-size:0.78rem; color:#aaa; font-family:'Syne',sans-serif; }
.svc-breadcrumb-row a { color:#888; text-decoration:none; }
.svc-breadcrumb-row a:hover { color:#b83232; }
.svc-breadcrumb-row strong { color:#0e0c0c; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .val-grid { grid-template-columns:1fr 1fr; }
  .pricing-cards { grid-template-columns:1fr; }
  .pf-grid { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .page-body { padding:0 20px; }
  .pg-section { padding:40px 0; }
  .split-section { grid-template-columns:1fr; gap:32px; }
  .bilingual-cols { grid-template-columns:1fr; }
  .contact-grid-section { grid-template-columns:1fr; }
  .steps-row { flex-direction:column; align-items:center; }
  .step-arrow { transform:rotate(90deg); padding:0; }
  .val-grid { grid-template-columns:1fr; }
  .pf-grid { grid-template-columns:1fr; }
  .stat-strip { gap:20px; padding:20px; }
  .cta-banner { padding:32px 24px; flex-direction:column; align-items:flex-start; }
}
