/* ============================================================
   N2 Technology — Main Stylesheet
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  /* ── Brand Palette (from logo) ── */
  --brand-blue:    #0066B3;   /* deep blue — left stroke of "n" */
  --brand-cyan:    #00AEEF;   /* bright cyan — upper left of "n" */
  --brand-orange:  #F7941D;   /* warm orange — arch & "2" */
  --brand-yellow:  #FFD200;   /* yellow — arch highlight */
  --brand-purple:  #8B2FC9;   /* purple — base of "2" */

  /* ── Semantic Tokens ── */
  --primary:       #0066B3;
  --primary-light: #00AEEF;
  --accent:        #F7941D;
  --accent-dark:   #D97A00;
  --accent-light:  rgba(247,148,29,.1);
  --light-bg:      #EFF7FF;
  --border:        #BDD8F0;
  --text:          #2D3748;
  --text-muted:    #6B7280;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(0,102,179,.08);
  --shadow:        0 4px 20px rgba(0,102,179,.12);
  --shadow-lg:     0 8px 32px rgba(0,102,179,.18);
  --transition:    all .3s ease;
  --radius:        8px;
  --radius-lg:     16px;
  --container:     1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: var(--text); line-height: 1.65; background: var(--white); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
p  { color: var(--text-muted); }

/* ── Layout Helpers ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-light { background: var(--light-bg); }
.section-dark  { background: var(--primary); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Eyebrow Badge ── */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }

/* ══════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: .55rem 0;
  font-size: .825rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.8);
}
.topbar-contact a:hover { color: var(--white); }
.topbar-social {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.topbar-social a {
  color: rgba(255,255,255,.7);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.topbar-social a:hover { color: var(--white); background: rgba(255,255,255,.15); }
.topbar-social svg { width: 14px; height: 14px; fill: currentColor; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.02em;
}
.logo-text span { color: var(--accent); }
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}
.nav-logo-name strong {
  font-weight: 800;
  color: var(--primary);
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.footer-logo-name strong {
  font-weight: 800;
  color: #fff;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link svg { width: 14px; height: 14px; transition: transform .3s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-cta { margin-left: .75rem; }
/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .75rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .625rem .875rem;
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
}
.dropdown a:hover { background: var(--light-bg); color: var(--accent); }
.dropdown-icon {
  width: 32px; height: 32px;
  background: var(--light-bg);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.dropdown-icon svg { width: 16px; height: 16px; }
/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.9); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .6; }

/* ══════════════════════════════════════════════════════════
   SERVICE PAGE LAYOUT
═══════════════════════════════════════════════════════════ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.service-main { min-width: 0; }
.service-main img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 2rem; box-shadow: var(--shadow); }
.service-main h2 { color: var(--primary); margin: 2rem 0 1rem; font-size: 1.4rem; }
.service-main p { margin-bottom: 1.25rem; }
.service-main ul.check-list { display: grid; gap: .5rem; margin-bottom: 1.5rem; }
.service-main ul.check-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .95rem; color: var(--text-muted);
}
.service-main ul.check-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 3px;
}
/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.benefit-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
  position: relative;
}
.benefit-card .num {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 2rem; font-weight: 800; color: var(--border); line-height: 1;
}
.benefit-card h4 { color: var(--primary); margin-bottom: .35rem; font-size: 1rem; }
.benefit-card p { font-size: .9rem; margin: 0; }
/* FAQ */
.faq { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  gap: 1rem;
  font-size: .95rem;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; fill: var(--accent); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 1.1rem; }
.faq-answer p { margin: 0; font-size: .9rem; }
.faq-item.open .faq-answer { display: block; }
/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 1rem; color: var(--primary);
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem .875rem;
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  transition: var(--transition);
}
.sidebar-services a:hover { background: var(--light-bg); color: var(--accent); }
.sidebar-services a.current { background: var(--accent); color: var(--white); font-weight: 600; }
.sidebar-services a svg { width: 14px; height: 14px; }
.contact-widget { background: var(--primary); color: var(--white); }
.contact-widget h4 { color: var(--white); border-color: rgba(255,255,255,.3); }
.contact-widget p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1.25rem; }
.contact-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: .875rem; font-size: .875rem; color: rgba(255,255,255,.85); }
.contact-detail svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; color: var(--white); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .875rem; margin-bottom: .75rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--white); }
.footer-col h5 {
  color: var(--white); font-size: .95rem; font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: .625rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.7); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.newsletter-form { display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter-form input {
  flex: 1;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .875rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  padding: .75rem 1.25rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }
.footer-social {
  display: flex; gap: .75rem; margin-top: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════ */
.section-header { margin-bottom: 3rem; }
.section-header h2 { color: var(--primary); }
.section-header p { font-size: 1.05rem; max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: .75rem auto 0; }
.section-dark .section-header h2 { color: var(--white); }

/* ══════════════════════════════════════════════════════════
   SERVICE CARDS (index + about)
═══════════════════════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card-num {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-size: 2.5rem; font-weight: 900;
  color: var(--border); line-height: 1;
}
.service-card h3 { color: var(--primary); margin-bottom: .75rem; font-size: 1.15rem; }
.service-card p { font-size: .9rem; margin-bottom: 1.25rem; }
.service-card a.read-more {
  font-size: .875rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: .35rem;
}
.service-card a.read-more:hover { gap: .6rem; }
.service-card a.read-more svg { width: 14px; height: 14px; transition: transform .3s; }
.service-card:hover a.read-more svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════
   STATS / COUNTER STRIP
═══════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--accent);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
}

/* ══════════════════════════════════════════════════════════
   TICKER SCROLL
═══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--primary-light);
  padding: .875rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 24s linear infinite;
  gap: 0;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2.5rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
}
.why-icon {
  width: 70px; height: 70px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  transition: var(--transition);
}
.why-icon svg { width: 32px; height: 32px; }
.why-card:hover .why-icon { background: var(--accent); color: var(--white); transform: scale(1.08); }
.why-card h3 { color: var(--primary); margin-bottom: .75rem; }

/* ══════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: .45rem;
  font-size: .875rem; font-weight: 600; color: var(--primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ══════════════════════════════════════════════════════════
   CONTACT INFO CARDS
═══════════════════════════════════════════════════════════ */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-info-card .icon-wrap {
  width: 60px; height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.contact-info-card .icon-wrap svg { width: 26px; height: 26px; }
.contact-info-card h4 { color: var(--primary); margin-bottom: .5rem; }
.contact-info-card p { font-size: .9rem; margin: 0; }
.contact-info-card a { color: var(--text-muted); }
.contact-info-card a:hover { color: var(--accent); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge span { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.75rem 0; }
.about-feature {
  display: flex; align-items: center; gap: .65rem;
  font-size: .9rem; font-weight: 500; color: var(--text);
}
.about-feature::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/16px no-repeat;
}
/* Mission/Vision tabs */
.mvh-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.mvh-tab {
  padding: .625rem 1.25rem;
  border-radius: var(--radius);
  font-size: .875rem; font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.mvh-tab.active { background: var(--accent); border-color: var(--accent); color: var(--white); }
.mvh-pane { display: none; }
.mvh-pane.active { display: block; }
.mvh-pane h3 { color: var(--primary); margin-bottom: .875rem; }
.mvh-pane ul { display: grid; gap: .5rem; }
.mvh-pane ul li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--text-muted);
}
.mvh-pane ul li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Partners */
.partners-grid {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.partner-logo {
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
  min-width: 130px;
}
.partner-logo:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-sm); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-content { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: 0; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-menu { display: none; flex-direction: column; align-items: stretch; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 1rem; z-index: 1001; }
  .nav-menu.open { display: flex; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; padding: 0 0 0 1rem; border-radius: 0; min-width: auto; }
  .nav-item:hover .dropdown { transform: none; }
  .hamburger { display: flex; }
  .topbar-social { display: n