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

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

:root {
  --navy: #0f1152;
  --navy-dark: #090b38;
  --sky: #29ABE2;
  --sky-dark: #1e8bbf;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --radius: 1rem;
  --radius-full: 9999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate-700);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
  color: var(--slate-900);
}

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

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(41,171,226,.15); border: 1px solid rgba(41,171,226,.35);
  color: var(--sky); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--radius-full);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.label {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--sky); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
}
.label::before, .label::after { content: ''; width: 2rem; height: 2px; background: var(--sky); }
.label-left { display: inline-flex; align-items: center; gap: .6rem; color: var(--sky); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.label-left::before { content: ''; width: 2rem; height: 2px; background: var(--sky); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: .95rem; font-family: 'Inter', sans-serif;
  border: none; cursor: pointer; transition: all .25s;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 4px 14px rgba(15,17,82,.3); }
.btn-primary:hover { background: #1a2070; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,17,82,.4); }
.btn-sky { background: var(--sky); color: #fff; box-shadow: 0 4px 14px rgba(41,171,226,.35); }
.btn-sky:hover { background: var(--sky-dark); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.22); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0; transition: all .4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08); padding: .75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
#navbar.scrolled .nav-logo { background: transparent; }
.nav-logo-wrap { background: rgb(255, 255, 255); border-radius: .5rem; padding: .25rem .5rem; transition: all .4s; }
#navbar.scrolled .nav-logo-wrap { background: transparent; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .5rem 1rem; border-radius: .6rem; font-size: .875rem;
  font-weight: 600; transition: all .2s;
}
.nav-links a.active-nav { background: rgba(255,255,255,.2); color: #fff; }
#navbar.scrolled .nav-links a { color: var(--slate-700); }
#navbar.scrolled .nav-links a:hover { color: var(--navy); background: rgba(15,17,82,.06); }
#navbar.scrolled .nav-links a.active-nav { background: rgba(15,17,82,.08); color: var(--navy); }
.nav-links a:not(#navbar.scrolled .nav-links a) { color: rgba(255,255,255,.9); }
.nav-links a:hover:not(.active-nav) { background: rgba(255,255,255,.15); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 600; transition: color .2s; }
#navbar:not(.scrolled) .nav-phone { color: rgba(255,255,255,.85); }
#navbar.scrolled .nav-phone { color: var(--slate-600); }
#navbar.scrolled .nav-phone:hover { color: var(--navy); }
.nav-cta { padding: .6rem 1.4rem; font-size: .875rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; transition: all .3s; }
#navbar:not(.scrolled) .hamburger span { background: #fff; }
#navbar.scrolled .hamburger span { background: var(--slate-700); }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 1rem; right: 1rem;
  background: #fff; border-radius: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid var(--slate-100); padding: 1rem; margin-top: .5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .75rem 1rem; border-radius: .75rem;
  font-weight: 600; color: var(--slate-700); transition: all .2s;
}
.mobile-menu a:hover, .mobile-menu a.active-nav { background: rgba(15,17,82,.06); color: var(--navy); }
.mobile-cta { display: block; margin-top: .75rem; text-align: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
  position: relative;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(15,17,82,.5)); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; }
.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text .badge { margin-bottom: 1.5rem; }
.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: #fff; margin-bottom: 1.5rem; }
.hero-text h1 span { color: var(--sky); }
.hero-text p { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-imgs-col { display: flex; flex-direction: column; gap: 1rem; }
.hero-imgs-col:last-child { margin-top: 2rem; }
.hero-imgs img { border-radius: 1rem; object-fit: cover; width: 100%; box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.hero-imgs-col:first-child img:first-child { height: 200px; }
.hero-imgs-col:first-child img:last-child { height: 220px; }
.hero-imgs-col:last-child img:first-child { height: 220px; }
.hero-imgs-col:last-child img:last-child { height: 200px; }

/* Page hero (inner pages) */
.page-hero {
  padding: 8rem 0 5rem; background-size: cover; background-position: center;
  position: relative;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero-content .badge { margin-bottom: 1.5rem; }
.page-hero-content h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.15rem; color: rgba(255,255,255,.8); line-height: 1.7; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: all .3s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 900; margin-bottom: .4rem; }
.stat-num.sky { color: var(--sky); }
.stat-num.navy { color: var(--navy); }
.stat-label { font-size: .8rem; font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: .08em; }

/* ── MARQUEE ── */
.marquee-bar { background: var(--navy-dark); padding: 1rem 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; }
.marquee-inner { display: flex; animation: marquee 28s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: .75rem; margin: 0 2.5rem; color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT PREVIEW / SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.img-wrap { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.img-wrap img { width: 100%; height: 400px; object-fit: cover; display: block; transition: transform .6s; }
.img-wrap:hover img { transform: scale(1.04); }
.img-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--navy); color: #fff; padding: 1.25rem 1.5rem; border-radius: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.img-badge .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.img-badge .sub { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: .25rem; }
.img-badge-sky { position: absolute; top: -1.5rem; left: -1.5rem; background: var(--sky); color: #fff; padding: 1rem 1.25rem; border-radius: 1rem; box-shadow: 0 8px 24px rgba(41,171,226,.35); display: flex; flex-direction: column; align-items: center; }
.img-badge-sky svg { width: 28px; height: 28px; }
.img-badge-sky span { font-size: .7rem; font-weight: 700; margin-top: .2rem; }
.split-text h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 900; margin-bottom: 1.25rem; }
.split-text h2 span { color: var(--navy); }
.split-text p { font-size: 1.05rem; color: var(--slate-500); line-height: 1.8; margin-bottom: 1.25rem; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 2rem; }
.check-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--slate-700); }
.check-item svg { color: var(--sky); flex-shrink: 0; width: 16px; height: 16px; }

/* ── SERVICES CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: 1.25rem; overflow: hidden; transition: all .3s; }
.card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.card-img { height: 210px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent); }
.card-icon { position: absolute; bottom: 1rem; left: 1rem; width: 40px; height: 40px; background: var(--sky); border-radius: .75rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(41,171,226,.4); }
.card-icon svg { width: 20px; height: 20px; color: #fff; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--slate-900); margin-bottom: .6rem; }
.card-body p { font-size: .9rem; color: var(--slate-500); line-height: 1.7; margin-bottom: 1.25rem; }
.card-link { display: inline-flex; align-items: center; gap: .3rem; color: var(--sky); font-size: .875rem; font-weight: 700; transition: gap .2s; }
.card-link:hover { gap: .6rem; }
.card-link svg { width: 15px; height: 15px; }

/* ── WHY US DARK SECTION ── */
.dark-section { background-size: cover; background-position: center; background-attachment: fixed; padding: 5rem 0; position: relative; }
.dark-section::before { content: ''; position: absolute; inset: 0; background: rgba(15,17,82,.95); }
.dark-section .container { position: relative; z-index: 2; }
.dark-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.dark-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; }
.dark-left p { color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 2rem; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-card { display: flex; gap: 1rem; padding: 1.25rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; transition: background .2s; }
.why-card:hover { background: rgba(255,255,255,.11); }
.why-icon { width: 44px; height: 44px; border-radius: .75rem; background: rgba(41,171,226,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 20px; height: 20px; color: var(--sky); }
.why-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── INDUSTRIES ── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.tag { padding: .65rem 1.4rem; background: var(--slate-50); border: 2px solid var(--slate-200); color: var(--slate-700); font-size: .875rem; font-weight: 600; border-radius: var(--radius-full); transition: all .2s; cursor: default; }
.tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── CTA BANNER ── */
.cta-banner { background-size: cover; background-position: center; padding: 5rem 0; position: relative; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(41,171,226,.9), rgba(15,17,82,.95)); }
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── ABOUT PAGE ── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mission-card { padding: 2.5rem; border-radius: 1.5rem; position: relative; overflow: hidden; }
.mission-card.dark { background: var(--navy); color: #fff; }
.mission-card.light { background: #fff; border: 2px solid var(--slate-200); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.mission-icon { width: 52px; height: 52px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.mission-icon.sky-bg { background: rgba(41,171,226,.2); }
.mission-icon.navy-bg { background: rgba(15,17,82,.08); }
.mission-icon svg { width: 26px; height: 26px; }
.mission-card.dark .mission-icon svg { color: var(--sky); }
.mission-card.light .mission-icon svg { color: var(--navy); }
.mission-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.mission-card.dark h3 { color: #fff; }
.mission-card.light h3 { color: var(--navy); }
.mission-card p { line-height: 1.8; font-size: 1rem; }
.mission-card.dark p { color: rgba(255,255,255,.7); }
.mission-card.light p { color: var(--slate-500); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { background: #fff; border: 2px solid var(--slate-200); border-radius: 1.25rem; padding: 2rem; text-align: center; transition: all .3s; }
.value-card:hover { border-color: rgba(41,171,226,.3); transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.value-icon { width: 60px; height: 60px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: transform .3s; }
.value-card:hover .value-icon { transform: scale(1.1); }
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--slate-900); margin-bottom: .5rem; }
.value-card p { font-size: .875rem; color: var(--slate-500); line-height: 1.7; }

.strengths-list { display: grid; gap: 1rem; }
.strength-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: .9rem; transition: background .2s; }
.strength-item:hover { background: rgba(255,255,255,.12); }
.strength-icon { width: 32px; height: 32px; border-radius: .6rem; background: rgba(41,171,226,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strength-icon svg { width: 15px; height: 15px; color: var(--sky); }
.strength-item span { font-weight: 600; color: #fff; }

/* ── SERVICES PAGE ── */
.service-section { padding: 4rem 0; border-bottom: 1px solid var(--slate-100); }
.service-section:last-child { border-bottom: none; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-img { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.service-img img { width: 100%; height: 360px; object-fit: cover; transition: transform .6s; }
.service-img:hover img { transform: scale(1.04); }
.service-icon-wrap { width: 52px; height: 52px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon-wrap svg { width: 26px; height: 26px; }
.service-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; color: var(--slate-900); margin-bottom: 1rem; }
.service-text p { color: var(--slate-500); line-height: 1.8; font-size: 1rem; margin-bottom: 1.5rem; }
.list-label { font-size: .7rem; font-weight: 700; color: var(--slate-400); text-transform: uppercase; letter-spacing: .12em; margin-bottom: .75rem; }
.mini-list { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.75rem; }
.mini-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--slate-600); }
.mini-item svg { width: 14px; height: 14px; color: var(--sky); flex-shrink: 0; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.process-card { background: #fff; border: 1px solid var(--slate-200); border-radius: 1.25rem; padding: 2rem; position: relative; transition: all .3s; }
.process-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.process-num { font-family: 'Poppins', sans-serif; font-size: 4rem; font-weight: 900; color: var(--slate-100); line-height: 1; margin-bottom: 1rem; }
.process-badge { position: absolute; top: 1.5rem; right: 1.5rem; width: 30px; height: 30px; background: var(--sky); border-radius: .5rem; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; font-weight: 900; }
.process-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--slate-900); margin-bottom: .5rem; }
.process-card p { font-size: .875rem; color: var(--slate-500); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 1rem; transition: box-shadow .2s; }
.contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.contact-card-icon { width: 44px; height: 44px; border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-400); margin-bottom: .2rem; }
.contact-card-value { font-size: .9rem; font-weight: 600; color: var(--slate-700); }
.contact-card-value a { transition: color .2s; }
.contact-card-value a:hover { color: var(--sky); }
.contact-promo { border-radius: 1.25rem; padding: 1.75rem; color: #fff; background: var(--navy); }
.contact-promo-label { display: flex; align-items: center; gap: .5rem; color: var(--sky); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.contact-promo-label svg { width: 16px; height: 16px; }
.contact-promo h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .6rem; }
.contact-promo p { font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; line-height: 1.6; }

.form-card { background: #fff; border-radius: 1.75rem; box-shadow: 0 8px 40px rgba(0,0,0,.08); border: 1px solid var(--slate-100); padding: 2.5rem; }
.form-card h3 { font-size: 1.5rem; font-weight: 900; color: var(--slate-900); margin-bottom: .4rem; }
.form-card .sub { color: var(--slate-400); font-size: .9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--slate-600); }
.form-group input, .form-group select, .form-group textarea {
  padding: .75rem 1rem; border: 1.5px solid var(--slate-200); border-radius: .75rem;
  font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--slate-700);
  background: var(--slate-50); transition: all .2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sky); background: #fff; box-shadow: 0 0 0 3px rgba(41,171,226,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group .err { display: none; font-size: .78rem; color: #e53e3e; margin-top: .2rem; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #e53e3e; }
.form-group.has-error .err { display: block; }
.form-success { display: none; background: #f0fff4; border: 1px solid #9ae6b4; border-radius: .75rem; padding: 1rem 1.25rem; color: #276749; font-weight: 600; font-size: .9rem; margin-bottom: 1rem; align-items: center; gap: .5rem; }
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-success.visible { display: flex; }
.submit-btn { width: 100%; justify-content: center; font-size: 1rem; font-weight: 900; padding: 1rem 2rem; }

/* ── FOOTER ── */
footer { background: #090b38; color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { background: #fff; border-radius: .75rem; padding: .5rem .75rem; display: inline-block; margin-bottom: 1.25rem; }
.footer-logo img { height: 38px; width: auto; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 1rem; }
.footer-certified { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-certified-dot { width: 6px; height: 6px; border-radius: 50%; background: #48bb78; }
.footer-h { font-size: .8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; display: flex; align-items: center; gap: .5rem; }
.footer-links a:hover { color: var(--sky); }
.footer-links a .arr { opacity: 0; transition: opacity .2s; font-size: .75rem; }
.footer-links a:hover .arr { opacity: 1; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; }
.f-icon { width: 30px; height: 30px; border-radius: .5rem; background: rgba(41,171,226,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-icon svg { width: 13px; height: 13px; color: var(--sky); }
.footer-contact-text { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact-text a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── BG SECTIONS ── */
.bg-slate { background: var(--slate-50); }
.bg-white { background: #fff; }
.text-center { text-align: center; }
.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 900; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s, transform .6s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .6s, transform .6s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .dark-grid { grid-template-columns: 1fr; }
  .dark-left { max-width: 600px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-imgs { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .img-badge, .img-badge-sky { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
