/* ============================================================
   BUILD NEXT TECHNOLOGY — style.css
   Full stylesheet: navbar, hero, sections, footer, all pages
   ============================================================ */

/* === RESET === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0e27;
  color: #e7ecf3;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === CSS VARIABLES === */
:root {
  --bg:       #0a0e27;
  --bg-alt:   #0e1433;
  --bg-card:  #0d1230;
  --card:     rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.08);
  --text:     #e7ecf3;
  --muted:    #9aa3b8;
  --primary:  #6366f1;
  --accent:   #a855f7;
  --pink:     #ec4899;
  --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --shadow:   0 20px 60px rgba(99,102,241,0.25);
}

/* === UTILS === */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center  { text-align: center; }
.accent       { color: var(--primary); }
.muted        { color: var(--muted); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 18px 0;
  z-index: 1000;
  transition: all .3s ease;
  backdrop-filter: blur(8px);
  background: rgba(10,14,39,0.6);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,14,39,0.97);
  border-bottom-color: var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container  { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; gap: 8px;
}
.logo-icon { font-size: 1.6rem; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 500; color: var(--text);
  transition: color .2s; position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--gradient); border-radius: 2px;
}
.btn-nav {
  background: var(--gradient);
  padding: 10px 22px; border-radius: 8px;
  font-weight: 600; color: #fff !important;
  transition: transform .2s, box-shadow .2s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.45); }
.btn-nav::after { display: none !important; }
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px;
}
.hamburger span { width: 26px; height: 2px; background: var(--text); transition: .3s; display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: all .3s;
  border: none; display: inline-block;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 10px 30px rgba(99,102,241,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(99,102,241,0.6); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--card); border-color: var(--primary); color: var(--primary); }

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass {
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 60px 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(99,102,241,0.35), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168,85,247,0.28), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(236,72,153,0.18), transparent 50%);
  animation: bgFloat 12s ease-in-out infinite alternate;
}
@keyframes bgFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-20px, 20px) scale(1.05); }
}
.hero-content { text-align: center; position: relative; z-index: 2; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem; color: var(--muted);
  max-width: 650px; margin: 0 auto 40px;
}
.badge {
  display: inline-block;
  background: rgba(99,102,241,0.15);
  color: var(--primary); padding: 8px 20px;
  border-radius: 100px; font-size: .9rem;
  font-weight: 600; border: 1px solid rgba(99,102,241,0.3);
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats { display: flex; gap: 50px; justify-content: center; flex-wrap: wrap; }
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block; font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span { color: var(--muted); font-size: .9rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section     { padding: 100px 0; }
.alt-bg      { background: var(--bg-alt); }
.section-head {
  text-align: center; max-width: 700px;
  margin: 0 auto 60px;
}
.section-tag {
  display: block; color: var(--primary);
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; font-size: .85rem;
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin: 8px 0 16px;
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}
h3 { font-family: 'Poppins', sans-serif; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ============================================================
   SERVICE CARDS (home grid)
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 24px; }
.service-card { padding: 32px; transition: all .4s; cursor: pointer; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(99,102,241,0.2);
}
.service-icon { font-size: 3rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p  { color: var(--muted); margin-bottom: 16px; font-size: .95rem; }
.link-arrow {
  color: var(--primary); font-weight: 600;
  display: inline-flex; gap: 4px; transition: gap .3s;
}
.link-arrow:hover { gap: 10px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 24px;
  text-align: center; transition: .3s;
}
.stat-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-card h2 {
  font-size: 3.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 10px; line-height: 1;
}
.stat-card p { color: var(--muted); font-weight: 500; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 24px; }
.process-step {
  padding: 36px 28px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; transition: .3s;
}
.process-step:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px; line-height: 1;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p  { color: var(--muted); font-size: .95rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-slider {
  max-width: 800px; margin: 0 auto;
  overflow: hidden; position: relative;
}
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial {
  min-width: 100%; padding: 48px 40px;
  text-align: center;
}
.testimonial > p {
  font-size: 1.15rem; margin-bottom: 28px;
  font-style: italic; color: var(--text); line-height: 1.8;
}
.testimonial .author strong { display: block; font-size: 1.05rem; }
.testimonial .author span   { color: var(--muted); font-size: .9rem; }
.slider-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: var(--border); cursor: pointer; transition: .3s;
}
.slider-dots button.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.25), transparent 70%),
    var(--bg-alt);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::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='%236366f1' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(2rem,5vw,3.5rem); margin-bottom: 16px; }
.cta-banner  p { color: var(--muted); margin-bottom: 36px; font-size: 1.15rem; }

/* ============================================================
   PAGE HERO (services / about / contact / 404)
   ============================================================ */
.page-hero {
  padding: 80px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.22), transparent 55%);
  border-bottom: 1px solid var(--border);
}
.page-hero .badge { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem,5vw,4rem);
  font-weight: 800; margin-bottom: 18px;
}
.page-hero p {
  color: var(--muted); font-size: 1.15rem;
  max-width: 700px; margin: 0 auto;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail { display: grid; gap: 28px; margin-top: 48px; }
.service-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px; padding: 44px;
  align-items: start; transition: all .35s;
}
.service-detail:hover {
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 16px 48px rgba(99,102,241,0.15);
  transform: translateY(-3px);
}
.sd-icon {
  font-size: 3.5rem; text-align: center;
  padding: 28px 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.1));
  border-radius: 16px; border: 1px solid rgba(99,102,241,0.2);
}
.sd-body h3 { font-size: 1.5rem; margin-bottom: 10px; font-family: 'Poppins', sans-serif; }
.sd-body  p { color: var(--muted); margin-bottom: 20px; line-height: 1.75; }
.features    { margin-bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.features li {
  padding: 7px 0; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem;
}
.features li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: rgba(99,102,241,0.15); color: var(--primary);
  border-radius: 50%; font-size: .75rem; font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px; align-items: start;
}
.contact-info { padding: 44px; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-info > .muted { margin-bottom: 36px; font-size: 1rem; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.15));
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 12px;
}
.contact-item strong { display: block; margin-bottom: 4px; font-size: .95rem; }
.contact-item p { color: var(--muted); font-size: .92rem; margin: 0; }
.contact-socials { margin-top: 28px; }
.contact-socials p { color: var(--muted); margin-bottom: 12px; font-size: .9rem; }
.socials      { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; transition: all .3s;
  font-weight: 700; font-size: .85rem;
}
.socials a:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-3px); box-shadow: 0 8px 20px rgba(99,102,241,0.4);
}

/* CONTACT FORM */
.contact-form { padding: 44px; }
.contact-form h3 { font-size: 1.6rem; margin-bottom: 6px; }
.contact-form > p { color: var(--muted); margin-bottom: 28px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 500;
  margin-bottom: 8px; color: var(--text); font-size: .95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-family: inherit; font-size: 1rem; transition: .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  background: rgba(99,102,241,0.06);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.form-group select option { background: var(--bg); color: var(--text); }
.form-group textarea  { resize: vertical; min-height: 130px; }
#submitBtn {
  width: 100%; padding: 16px;
  font-size: 1rem; font-weight: 700;
  letter-spacing: .5px; margin-top: 8px;
}
#submitBtn:disabled { opacity: .7; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* TOAST */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--gradient); color: #fff;
  padding: 16px 24px; border-radius: 12px;
  font-weight: 600; transform: translateX(420px);
  transition: .4s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999; box-shadow: 0 10px 40px rgba(99,102,241,0.4);
  max-width: 320px;
}
.toast.show  { transform: translateX(0); }
.toast.error { background: linear-gradient(135deg,#ef4444,#dc2626); box-shadow: 0 10px 40px rgba(239,68,68,0.4); }

/* ALERT (flash messages) */
.alert {
  padding: 12px 16px; border-radius: 8px;
  margin-bottom: 16px; font-size: .9rem; text-align: left;
}
.alert.error   { background: rgba(239,68,68,0.12); border:1px solid rgba(239,68,68,0.4); color:#ff9696; }
.alert.success { background: rgba(34,197,94,0.12);  border:1px solid rgba(34,197,94,0.4);  color:#86efac; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.85; font-size: 1.02rem; }
.about-text h2 { margin-bottom: 20px; }
.about-visual { padding: 44px; text-align: center; }
.about-visual h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.about-visual p  { color: var(--muted); margin-bottom: 0; font-size: .97rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.team-card { padding: 36px 24px; text-align: center; transition: all .3s; }
.team-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(99,102,241,0.18); }
.team-avatar { font-size: 4rem; margin-bottom: 16px; }
.team-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.team-card p  { color: var(--muted); font-size: .88rem; }

.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.tech-chip {
  padding: 10px 22px; font-weight: 600;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; font-size: .92rem; transition: all .3s;
}
.tech-chip:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px); background: rgba(99,102,241,0.08);
}

/* ============================================================
   FOOTER  ← Full redesign
   ============================================================ */
.footer {
  background: #060919;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.18), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  position: relative;
}

/* brand column */
.footer-brand {}
.footer-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.4rem;
  margin-bottom: 0;
}
.footer-tag {
  color: var(--muted); margin: 18px 0 28px;
  max-width: 340px; line-height: 1.75;
  font-size: .95rem;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-weight: 700; font-size: .85rem;
  transition: all .3s;
}
.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99,102,241,0.4);
}

/* link columns */
.footer-col {}
.footer-heading {
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: #e7ecf3; margin-bottom: 24px;
  position: relative; padding-bottom: 14px;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gradient); border-radius: 2px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--muted); font-size: .95rem;
  transition: all .2s; display: inline-flex;
  align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '→';
  font-size: .75rem; opacity: 0;
  transform: translateX(-6px);
  transition: all .2s; color: var(--primary);
}
.footer-links a:hover { color: var(--text); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

/* contact list */
.footer-contact-list li {
  display: flex; align-items: flex-start;
  gap: 12px; margin-bottom: 16px;
  color: var(--muted); font-size: .93rem;
}
.footer-contact-icon {
  font-size: 1rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 8px; flex-shrink: 0;
}

/* footer bottom bar */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted); font-size: .875rem;
  flex-wrap: wrap; gap: 10px;
}
.footer-made { color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 960px) {
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 20px; }
  .sd-icon { width: 80px; padding: 20px; font-size: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,14,39,0.98);
    padding: 30px; gap: 20px;
    transform: translateY(-120%); transition: .35s;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px); z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 2rem; }
  .section { padding: 70px 0; }
  .page-hero { padding: 60px 0; }
  .contact-form, .contact-info { padding: 28px 22px; }
  .service-detail { padding: 28px 22px; }
  .toast { bottom: 20px; right: 20px; left: 20px; max-width: none; }
  .footer { padding: 60px 0 0; }
}

/* ============================================================
   ABOUT PAGE ADDITIONS
   ============================================================ */
.about-text { }
.about-text .section-tag { display: inline-block; margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: .97rem; }
.about-visual { padding: 44px 36px; text-align: left; }
.mission-icon { font-size: 4.5rem; margin-bottom: 20px; display: block; }
.about-visual h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.about-visual p { color: var(--muted); line-height: 1.7; font-size: .93rem; }
.about-values {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.value-pill {
  padding: 8px 18px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: #818cf8;
}

/* ============================================================
   CONTACT PAGE — FAQ GRID
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.faq-item {
  padding: 28px;
  transition: all .3s ease;
}
.faq-item:hover {
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-4px);
}
.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 10px;
}
.faq-q::before {
  content: '?';
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; min-width: 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  margin-top: 1px;
}
.faq-a { color: var(--muted); font-size: .93rem; line-height: 1.75; }

/* ============================================================
   SERVICES PAGE — sd-icon fix
   ============================================================ */
.sd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  font-size: 3.5rem;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 20px;
  flex-shrink: 0;
}
.sd-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 12px; color: #fff;
}
.sd-body > p { color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
  padding: 0;
}
.features li {
  color: var(--text); font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0;
}
.features li::before {
  content: '✓';
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
