/* =============================================================
   SDL Solutions — Landing Page Styles
   ============================================================= */

:root {
  --navy: #000c65;
  --navy-deep: #000a52;
  --navy-soft: #142b8f;
  --blue: #1e5fe0;
  --blue-light: #4c8dff;
  --orange: #f7941d;
  --green: #1aa24a;
  --purple: #8b5cf6;
  --teal: #14b8a6;

  --text-dark: #131a3a;
  --text-body: #5b6478;
  --text-muted: #8891a5;

  --bg-light: #f4f8fd;
  --bg-hero: #e7f0fc;
  --border-color: #e7ecf6;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-sm: 0 4px 16px rgba(11, 20, 78, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 20, 78, 0.1);
  --shadow-lg: 0 24px 60px rgba(11, 20, 78, 0.16);

  --container: 1240px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, .logo-title {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--navy);
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
i[data-icon] { display: inline-flex; }
i[data-icon] svg { width: 1em; height: 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn i[data-icon] svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--border-color);
}
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  margin-top: 18px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-nav { margin-left: auto; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* =================== HEADER =================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border-color); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 70px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; margin-left: 12px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  margin-left: auto;
}
.nav-toggle span {
  width: 100%; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================== HERO =================== */
.hero {
  background: linear-gradient(180deg, var(--bg-hero) 0%, #f7fafe 65%, #ffffff 100%);
  padding-top: 64px;
  padding-bottom: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 56px;
}

.hero-title {
  font-size: 2.9rem;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-title-sub { font-size: 0.85em; }
.hero-title-sub em { color: var(--blue); font-style: normal; }
.hero-title-sub b { color: var(--green); }
.hero-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin-top: 18px;
}

.hero-lead { font-size: 1.08rem; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
.hero-desc { font-size: 1rem; max-width: 480px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- hero visual ---- */
.hero-visual { display: flex; justify-content: center; }
.hero-img { width: 100%; max-width: 560px; height: auto; }

/* ---- stats bar ---- */
.hero { position: relative; z-index: 2; }
.stats-bar {
  position: relative;
  background: var(--navy);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: -60px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 36px;
}
.stat-item { display: flex; align-items: center; gap: 16px; position: relative; padding: 0 20px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.18);
}
.stat-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-text { color: rgba(255,255,255,0.85); font-size: 0.85rem; display: flex; flex-direction: column; }
.stat-text b { color: #fff; font-size: 1.05rem; font-family: 'Poppins', sans-serif; }
.stat-text small { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 400; }

/* =================== SECTION TITLE (shared) =================== */
.section-title {
  text-align: center;
  font-size: 2.1rem;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 50px;
}
.section-title span { color: var(--blue); }
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 4px;
  background: var(--orange);
  border-radius: 4px;
}
.section-title.light { color: #fff; text-align: left; }
.section-title.light::after { left: 0; transform: none; }
.section-title.light span { color: var(--blue-light); }

/* =================== ABOUT =================== */
.about { position: relative; z-index: 1; padding: 150px 0 110px; background: #fff; overflow: hidden; }
.about-head { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: #fef1e1;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: stretch;
}
.about-text { display: flex; flex-direction: column; justify-content: center; }
.about-text p { font-size: 1rem; margin-bottom: 16px; }

.about-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 9px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.about-tag:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.about-tag i[data-icon] svg { width: 16px; height: 16px; color: var(--orange); }

.about-highlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: var(--shadow-lg);
}
.about-highlight::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.28), transparent 70%);
  pointer-events: none;
}
.about-highlight::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,162,74,0.22), transparent 70%);
  pointer-events: none;
}
.about-highlight-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: var(--orange);
  margin-bottom: 22px;
}
.about-highlight-icon svg { width: 24px; height: 24px; }
.about-highlight h3 { position: relative; color: #fff; font-size: 1.25rem; margin-bottom: 14px; }
.about-highlight p { position: relative; color: rgba(255,255,255,0.72); font-size: 0.94rem; margin-bottom: 16px; }
.about-focus {
  position: relative;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 12px 18px;
  margin-bottom: 0 !important;
}
.about-focus b { color: var(--orange); }

/* =================== SOLUTIONS =================== */
.solutions { padding: 100px 0; background: #fff; }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.solution-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.solution-icon svg { width: 26px; height: 26px; }
.icon-blue { background: #e5efff; color: var(--blue); }
.icon-green { background: #e3f8ea; color: var(--green); }
.icon-orange { background: #fef1e1; color: var(--orange); }
.icon-purple { background: #f1ebfe; color: var(--purple); }
.icon-teal { background: #e1f7f4; color: var(--teal); }
.icon-lightblue { background: #e7f3ff; color: #2a8ce0; }
.solution-card h3 { font-size: 1.12rem; margin-bottom: 12px; line-height: 1.35; }
.solution-card p { font-size: 0.92rem; }

/* =================== FOCUS AREAS =================== */
.focus-areas { padding: 40px 0 100px; background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.area-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--border-color); }
.area-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d7e2f7;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.area-icon svg { width: 18px; height: 18px; }
.area-item p { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

/* =================== WHY SDL =================== */
.why-sdl {
  position: relative;
  background: var(--navy);
  padding: 90px 0;
  overflow: hidden;
}
.why-sdl::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 78% 15%, rgba(76,141,255,0.22), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='220' viewBox='0 0 800 220'%3E%3Cg fill='%23132a8f' fill-opacity='0.45'%3E%3Crect x='0' y='120' width='40' height='100'/%3E%3Crect x='45' y='90' width='34' height='130'/%3E%3Crect x='84' y='140' width='26' height='80'/%3E%3Crect x='115' y='70' width='42' height='150'/%3E%3Crect x='162' y='110' width='30' height='110'/%3E%3Crect x='198' y='60' width='36' height='160'/%3E%3Crect x='240' y='130' width='28' height='90'/%3E%3Crect x='273' y='95' width='40' height='125'/%3E%3Crect x='318' y='75' width='30' height='145'/%3E%3Crect x='353' y='125' width='38' height='95'/%3E%3Crect x='396' y='55' width='34' height='165'/%3E%3Crect x='435' y='105' width='28' height='115'/%3E%3Crect x='468' y='85' width='40' height='135'/%3E%3Crect x='513' y='130' width='30' height='90'/%3E%3Crect x='548' y='65' width='36' height='155'/%3E%3Crect x='589' y='115' width='26' height='105'/%3E%3Crect x='620' y='95' width='42' height='125'/%3E%3Crect x='667' y='140' width='30' height='80'/%3E%3Crect x='702' y='75' width='34' height='145'/%3E%3Crect x='741' y='120' width='40' height='100'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat-x;
  background-position: center, bottom;
  background-size: cover, cover;
  opacity: 0.8;
  pointer-events: none;
}
.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 30px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.why-icon svg { width: 20px; height: 20px; }
.why-item h4 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.why-right {
  position: relative;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-icon { color: var(--orange); margin-bottom: 16px; }
.quote-icon svg { width: 32px; height: 32px; }
.why-right h3 { color: #fff; font-size: 1.6rem; margin-bottom: 18px; line-height: 1.3; }
.why-right p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 14px; }
.why-signature { color: var(--orange) !important; font-weight: 700; font-size: 1rem !important; margin-top: 10px; }

/* =================== CTA =================== */
.cta { padding: 90px 0; background: #fff; }

.btn-accent {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(247,148,29,0.35);
}
.btn-accent:hover { background: #e08000; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(247,148,29,0.42); }

.eyebrow-light {
  color: var(--orange);
  background: rgba(247,148,29,0.14);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,141,255,0.25), transparent 70%);
  pointer-events: none;
}

.cta-panel-content {
  position: relative;
  z-index: 1;
  padding: 60px 56px;
}
.cta-panel-title {
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.25;
  margin: 18px 0 16px;
}
.cta-panel-title span { color: var(--orange); }
.cta-panel-desc { color: rgba(255,255,255,0.68); font-size: 1rem; max-width: 460px; margin-bottom: 32px; }
.cta-panel-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.cta-panel-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.cta-panel-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.cta-panel-trust svg { width: 17px; height: 17px; color: var(--orange); }

.cta-panel-visual {
  position: relative;
  background: linear-gradient(160deg, #e7f0fc 0%, #cfe0f7 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-panel-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11,31,138,0.18) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.6;
}
.cta-panel-gate { position: relative; width: 62%; filter: drop-shadow(0 10px 20px rgba(11,20,78,0.18)); }
.cta-panel-stripe {
  position: absolute;
  right: -10px; bottom: 0;
  width: 220px; height: 80px;
  pointer-events: none;
}

/* =================== FOOTER =================== */
.site-footer { background: var(--navy-deep); padding-top: 70px; color: rgba(255,255,255,0.75); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 12px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-about p { font-size: 0.88rem; margin: 16px 0 22px; max-width: 340px; }
.logo-footer .logo-img { height: 70px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0;
  transition: background var(--transition), transform var(--transition);
}
.social-icons a:hover { background: var(--blue); transform: translateY(-3px); }
.social-icons svg { width: 16px; height: 16px; color: #fff; }

.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-bottom-inner a { color: rgba(255,255,255,0.55); }
.footer-bottom-inner a:hover { color: #fff; }

/* =================== BACK TO TOP =================== */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 90;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }
.back-to-top svg { width: 18px; height: 18px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .why-grid { gap: 28px 22px; }
  .hero-title { font-size: 2.5rem; }
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 24px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .main-nav.open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border-color); }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-title::after { margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 20px; }

  .stats-bar { margin-bottom: -40px; border-radius: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); row-gap: 24px; padding: 26px; }
  .stat-item:nth-child(2n)::after { display: none; }
  .about { padding-top: 110px; }
  .about-inner { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-left: 0; padding-top: 40px; margin-top: 40px; }

  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel-visual { clip-path: none; min-height: 240px; order: -1; }
  .cta-panel-content { padding: 44px 40px; text-align: center; }
  .cta-panel-desc { margin-left: auto; margin-right: auto; }
  .cta-panel-actions { justify-content: center; }
  .cta-panel-trust { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.1rem; }
  .stats-bar { margin-bottom: -30px; }
  .stats-inner { grid-template-columns: 1fr; padding: 24px; }
  .stat-item { justify-content: center; text-align: left; padding: 16px 0; }
  .stat-item:not(:last-child)::after {
    left: 0; right: 0; top: auto; bottom: 0;
    width: auto; height: 1px;
    transform: none;
  }
  .about { padding-top: 90px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .cta-panel-content { padding: 36px 24px; }
  .cta-panel-title { font-size: 1.6rem; }
  .cta-panel-desc { font-size: 0.92rem; }
  .cta-panel-actions { flex-direction: column; align-items: stretch; }
  .cta-panel-actions .btn { justify-content: center; }
  .cta-panel-trust { flex-direction: column; gap: 12px; }
  .cta-panel-visual { min-height: 190px; }
  .cta-panel-gate { width: 50%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section-title.light { text-align: center; }
  .section-title.light::after { left: 50%; transform: translateX(-50%); }
  .why-item { align-items: center; text-align: center; }
  .why-icon { margin-left: auto; margin-right: auto; }
}
