/* ===========================
   VASIL IT Services – Light & Modern Theme
   White / Navy / Gold
   =========================== */

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

:root {
  --navy:        #0B1E3D;
  --navy-mid:    #1A3560;
  --navy-light:  #EEF2F8;
  --gold:        #C9A84C;
  --gold-lt:     #E2C97E;
  --gold-dk:     #A8872D;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --grey-light:  #F0F3F8;
  --grey-mid:    #D8E0EE;
  --grey-text:   #6B7A99;
  --body-text:   #3D4F6B;
  --text:        #0B1E3D;
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  0.22s ease;
  --shadow:      0 8px 40px rgba(11,30,61,0.10);
  --shadow-sm:   0 2px 12px rgba(11,30,61,0.07);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--body-text);
  line-height: 1.7;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAV ── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  box-shadow: 0 2px 12px rgba(11,30,61,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-img { display: flex; align-items: center; text-decoration: none; }
.logo-img img { height: 42px; width: auto; display: block; }
.logo-img svg { display: block; }

/* Override logo colors for light nav */
.nav-wrap .logo-img svg text { fill: var(--navy) !important; }
.nav-wrap .logo-img svg tspan { fill: var(--gold) !important; }
.nav-wrap .logo-img svg polygon { fill: var(--navy) !important; }
.nav-wrap .logo-img svg rect:last-of-type { fill: var(--gold) !important; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--body-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem !important;
  background: var(--navy) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  box-shadow: 0 6px 28px rgba(201,168,76,0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-full { width: 100%; text-align: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,30,61,0.92) 0%, rgba(26,53,96,0.75) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 6rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--off-white); }
.section-light { background: var(--grey-light); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--grey-text);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.card-body { padding: 1.75rem; }

.card-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.card p {
  font-size: 0.87rem;
  color: var(--grey-text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold-dk);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.card:hover .card-link { gap: 0.6rem; }
.card-link-full { cursor: pointer; }

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-image-wrap img {
  width: 100%; height: 460px;
  object-fit: cover;
  display: block;
}

.why-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
}
.why-badge strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }

.why-text p { color: var(--grey-text); margin-bottom: 1.1rem; font-size: 0.97rem; }

.why-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--body-text);
}
.why-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--gold-dk);
  margin-top: 2px;
  font-weight: 700;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 { color: var(--navy); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { color: var(--grey-text); font-size: 0.87rem; line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.cta-banner .hero-bg-img { opacity: 0.1; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,30,61,0.92), rgba(26,53,96,0.85));
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a, .footer-col ul li {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.87rem; margin-bottom: 0.5rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,30,61,0.95) 40%, rgba(11,30,61,0.6));
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-top: 0.75rem;
  max-width: 600px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }

/* ── ABOUT PAGE ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-intro-img img {
  width: 100%; height: 500px;
  object-fit: cover;
  display: block;
}
.about-text p { color: var(--grey-text); margin-bottom: 1rem; font-size: 0.97rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-item {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.value-item h4 { color: var(--navy); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.value-item p { font-size: 0.85rem; color: var(--grey-text); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card-body { padding: 1.5rem; }
.team-card h3 { color: var(--navy); font-weight: 600; font-size: 1.05rem; }
.team-role { font-size: 0.78rem; color: var(--gold-dk); font-weight: 600; margin: 0.3rem 0 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--grey-text); }
.team-avatar-wrap {
  background: var(--navy-light);
  border-bottom: 1px solid var(--grey-mid);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-icon { font-size: 3rem; }

/* ── MODULE PAGES ── */
.module-intro {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  align-items: start;
}
.module-icon-lg { font-size: 3rem; padding-top: 0.4rem; }
.module-intro-text {
  font-size: 1.02rem;
  color: var(--grey-text);
  line-height: 1.8;
  max-width: 700px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.highlight-card h3 { color: var(--navy); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.highlight-card p { color: var(--grey-text); font-size: 0.86rem; line-height: 1.65; }

/* ── SERVICE NAV SIDEBAR ── */
.back-to-services {
  background: var(--off-white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.back-to-services h3 { color: var(--navy); font-size: 0.95rem; font-weight: 600; margin-bottom: 1.25rem; }
.service-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.service-nav-list li a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--grey-text);
  text-decoration: none;
  font-size: 0.86rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.service-nav-list li a:hover { background: var(--navy-light); color: var(--navy); }

/* ── SERVICE BLOCK (services page) ── */
.service-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--grey-mid);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-icon-lg { font-size: 2.2rem; padding-top: 0.4rem; }
.service-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-detail p { color: var(--grey-text); margin-bottom: 1rem; font-size: 0.95rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.service-list li {
  font-size: 0.88rem;
  color: var(--body-text);
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-dk); font-size: 0.8rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--grey-text); margin-bottom: 2.5rem; font-size: 0.95rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy-light);
  border: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-dk); margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.9rem; color: var(--grey-text); }

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.contact-form-wrap > p { font-size: 0.87rem; color: var(--grey-text); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-text); opacity: 0.6; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select option { background: var(--white); color: var(--text); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--grey-text); text-align: center; margin-top: 0.75rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--grey-text); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid, .about-intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .back-to-services { position: static; margin-top: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid var(--grey-mid);
    border-bottom: 1px solid var(--grey-mid);
    box-shadow: 0 8px 24px rgba(11,30,61,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav { position: relative; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .form-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .module-intro { grid-template-columns: 1fr; gap: 1rem; }
  .service-block { grid-template-columns: 1fr; gap: 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero { min-height: 100svh; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
}
