/* ═══════════════════════════════════════════
   AGTi Water Guard — About Page Stylesheet
   Plain CSS · Unique class names (agti- prefix)
   No CSS variables / root values
   Google Fonts: Playfair Display + DM Sans
═══════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #f7f9fc;
  color: #1a2332;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ═══════════ HERO ═══════════ */

.agti-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f3c 0%, #0d3568 50%, #0a4fa8 100%);
}

.agti-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.agti-water-ripple {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
  animation: agtiRipple 8s ease-in-out infinite;
}

.agti-ripple-1 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -100px;
  animation-delay: 0s;
}

.agti-ripple-2 {
  width: 900px;
  height: 900px;
  bottom: -400px;
  right: -300px;
  animation-delay: 2s;
}

.agti-ripple-3 {
  width: 1200px;
  height: 1200px;
  bottom: -600px;
  right: -500px;
  animation-delay: 4s;
}

@keyframes agtiRipple {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.agti-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.agti-orb-a {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,140,255,0.3), transparent);
  top: -100px;
  left: -100px;
  animation: agtiFloat 10s ease-in-out infinite;
}

.agti-orb-b {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,200,180,0.2), transparent);
  bottom: 50px;
  right: 15%;
  animation: agtiFloat 13s ease-in-out infinite reverse;
}

@keyframes agtiFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-15px); }
}

.agti-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 120px 2rem 80px;
}

.agti-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(100,200,255,0.9);
  margin-bottom: 1.2rem;
}

.agti-hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.agti-hero-accent {
  color: #5bd6ff;
  font-style: italic;
}

.agti-hero-sub {
  font-size: 1.05rem;
  color: rgba(200,225,255,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.agti-hero-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.agti-stat-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.7rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 90px;
  transition: background 0.3s, transform 0.3s;
}

.agti-stat-pill:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.agti-stat-pill strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #5bd6ff;
  line-height: 1;
}

.agti-stat-pill span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(200,230,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agti-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(200,230,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agti-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(91,214,255,0.8), transparent);
  animation: agtiScrollPulse 2s ease-in-out infinite;
}

@keyframes agtiScrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ═══════════ SECTION COMMONS ═══════════ */

.agti-section {
  padding: 100px 2rem;
}

.agti-container {
  max-width: 1200px;
  margin: 0 auto;
}

.agti-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.agti-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0070c0;
  background: #e8f3ff;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.agti-tag-light {
  color: rgba(91,214,255,0.9);
  background: rgba(91,214,255,0.15);
}

.agti-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: #0a2540;
  line-height: 1.2;
}

.agti-heading-light {
  color: #fff;
}

.agti-underline-accent {
  position: relative;
  display: inline-block;
}

.agti-underline-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0070c0, #5bd6ff);
  border-radius: 2px;
}

.agti-body-text {
  font-size: 1rem;
  color: #3d5068;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ═══════════ REVEAL ANIMATIONS ═══════════ */

.agti-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.agti-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.agti-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.agti-reveal-delay-1 { transition-delay: 0.1s; }
.agti-reveal-delay-2 { transition-delay: 0.22s; }
.agti-reveal-delay-3 { transition-delay: 0.34s; }
.agti-reveal-delay-4 { transition-delay: 0.46s; }

.agti-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ═══════════ WHO WE ARE ═══════════ */

.agti-who {
  background: #fff;
}

.agti-who-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.agti-img-stack {
  position: relative;
  padding: 2rem 2rem 2rem 0;
}

.agti-img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,80,140,0.15);
}

.agti-img-main {
  width: 100%;
}

.agti-img-main img {
  width: 70%;
  margin: 0 auto;
  height: 490px;
  object-fit: cover;
}

.agti-img-accent {
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 55%;
  border: 4px solid #fff;
}

.agti-img-accent img {
  width: 100%;
  object-fit: cover;
  background-color: white;
}

.agti-img-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #0070c0, #003f8a);
  color: #fff;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,80,140,0.35);
}

.agti-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.agti-badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.3;
}

.agti-who-text {
  padding: 1rem 0;
}

.agti-who-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.agti-chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: #f0f7ff;
  color: #0070c0;
  border: 1px solid #c5dff8;
}

/* ═══════════ MISSION / VISION ═══════════ */

.agti-mv {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f3ff 100%);
  position: relative;
  overflow: hidden;
}

.agti-mv-bg-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,112,192,0.1);
}

.agti-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.agti-mv-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,80,140,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}



.agti-mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,80,140,0.14);
}

.agti-mv-card-accent {
  background: linear-gradient(135deg, #0a2540, #0d3568);
  color: #fff;
}

.agti-mv-card-accent .agti-mv-title {
  color: #fff;
}

.agti-mv-card-accent .agti-mv-desc {
  color: rgba(200,225,255,0.85);
}

.agti-mv-card-accent .agti-mv-quote {
  border-color: rgba(91,214,255,0.3);
  color: #5bd6ff;
}

.agti-mv-card-accent::before {
  background: linear-gradient(90deg, #5bd6ff, #00c8b4);
}

.agti-mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.agti-mv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 0.8rem;
}

.agti-mv-desc {
  font-size: 0.94rem;
  color: #4a6080;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.agti-mv-quote {
  font-style: italic;
  font-size: 0.88rem;
  color: #0070c0;
  border-left: 3px solid #0070c0;
  padding-left: 0.75rem;
  line-height: 1.5;
}

.agti-values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.agti-values-list li {
  font-size: 0.92rem;
  color: #3d5068;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}


.agti-values-list li span {
  font-weight: 700;
  color: #0a2540;
}

/* ═══════════ TIMELINE ═══════════ */

.agti-timeline-section {
  background: #fff;
}

.agti-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.agti-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #c5dff8 10%, #c5dff8 90%, transparent);
  transform: translateX(-50%);
}

.agti-tl-item {
  display: flex;
  width: 50%;
  padding-bottom: 3.5rem;
  position: relative;
}

.agti-tl-left {
  justify-content: flex-end;
  padding-right: 3.5rem;
  left: 0;
}

.agti-tl-right {
  justify-content: flex-start;
  padding-left: 3.5rem;
  left: 50%;
}

.agti-tl-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #0070c0;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #c5dff8;
  top: 8px;
  z-index: 2;
}

.agti-tl-left .agti-tl-dot {
  right: -7px;
}

.agti-tl-right .agti-tl-dot {
  left: -7px;
}

.agti-tl-dot-active {
  background: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255,140,0,0.25);
  animation: agtiPulse 2s ease-in-out infinite;
}

@keyframes agtiPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,140,0,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255,140,0,0.1); }
}

.agti-tl-card {
  background: #f7f9fc;
  border-radius: 14px;
  padding: 1.5rem;
  max-width: 340px;
  border: 1px solid #e2eaf4;
  transition: transform 0.3s, box-shadow 0.3s;
}

.agti-tl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,80,140,0.1);
}

.agti-tl-card-active {
  background: linear-gradient(135deg, #fff8f0, #fff);
  border-color: #ffcc88;
}

.agti-tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #0070c0;
  display: block;
  margin-bottom: 0.4rem;
}

.agti-tl-card-active .agti-tl-year {
  color: #e07000;
}

.agti-tl-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.agti-tl-card p {
  font-size: 0.88rem;
  color: #5a6e84;
  line-height: 1.65;
}

/* ═══════════ TECHNOLOGY ═══════════ */

.agti-tech {
  position: relative;
  overflow: hidden;
}

.agti-tech-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1f3c 0%, #0d3568 60%, #0a4080 100%);
}

.agti-tech .agti-container {
  position: relative;
  z-index: 2;
}

.agti-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.agti-tech-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.agti-tech-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #5bd6ff, #00c8b4);
  opacity: 0;
  transition: opacity 0.3s;
}

.agti-tech-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.agti-tech-card:hover::after {
  opacity: 1;
}

.agti-tech-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(91,214,255,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.agti-tech-icon-wrap {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.agti-tech-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.agti-tech-card p {
  font-size: 0.88rem;
  color: rgba(200,225,255,0.75);
  line-height: 1.65;
}

/* ═══════════ NUMBERS ═══════════ */

.agti-numbers {
  background: linear-gradient(135deg, #f0f6ff, #e4effe);
}

.agti-numbers-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.agti-num-block {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.agti-num-block p {
  font-size: 0.88rem;
  color: #5a6e84;
  margin-top: 0.4rem;
  line-height: 1.4;
}

.agti-big-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #0070c0;
  line-height: 1;
}

.agti-big-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #5bd6ff;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.agti-big-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #5bd6ff;
  vertical-align: middle;
  margin-left: 4px;
}

.agti-num-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #b0ccea, transparent);
}

/* ═══════════ TRUST ═══════════ */

.agti-trust {
  background: #fff;
}

.agti-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.agti-trust-item {
  padding: 2rem;
  border-radius: 16px;
  background: #f7f9fc;
  border: 1px solid #e2eaf4;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.agti-trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,80,140,0.1);
  background: #fff;
}

.agti-trust-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.agti-trust-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 0.5rem;
}

.agti-trust-item p {
  font-size: 0.9rem;
  color: #4a6080;
  line-height: 1.65;
}

/* ═══════════ CTA SECTION ═══════════ */

.agti-cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 2rem;
  background: linear-gradient(135deg, #061428 0%, #0a2540 50%, #0d3568 100%);
}

.agti-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.agti-cta-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,140,255,0.2), transparent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.agti-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.agti-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0.8rem 0 1.2rem;
  line-height: 1.15;
}

.agti-cta-sub {
  font-size: 1.05rem;
  color: rgba(200,225,255,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.agti-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.agti-btn-primary {
  display: inline-block;
  background: #0070c0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,112,192,0.4);
}

.agti-btn-primary:hover {
  background: #0060a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,112,192,0.5);
}

.agti-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.agti-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.agti-cta-note {
  font-size: 0.82rem;
  color: rgba(180,210,255,0.6);
}

/* ═══════════ FOOTER ═══════════ */

.agti-footer {
  background: #060f1e;
  color: rgba(200,220,255,0.7);
  padding: 60px 2rem 0;
}

.agti-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.agti-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 240px;
}

.agti-footer-logo {
  height: 48px;
  width: auto;
}

.agti-footer-brand strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.agti-footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(180,200,240,0.65);
}

.agti-footer-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.agti-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 130px;
}

.agti-footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200,225,255,0.9);
  margin-bottom: 0.4rem;
}

.agti-footer-col a {
  font-size: 0.88rem;
  color: rgba(180,200,240,0.6);
  transition: color 0.2s;
}

.agti-footer-col a:hover {
  color: #5bd6ff;
}

.agti-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(160,185,220,0.45);
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1024px) {
  .agti-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .agti-mv-grid {
    grid-template-columns: 1fr;
  }

  .agti-who-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .agti-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agti-timeline-line {
    left: 24px;
  }

  .agti-tl-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
    left: 0 !important;
  }

  .agti-tl-left {
    padding-right: 0;
    padding-left: 60px;
    justify-content: flex-start;
  }

  .agti-tl-left .agti-tl-dot,
  .agti-tl-right .agti-tl-dot {
    left: 17px;
    right: auto;
  }

  .agti-tl-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .agti-nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,40,100,0.12);
    gap: 0;
  }

  .agti-nav-open {
    display: flex;
  }

  .agti-nav-links li a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .agti-nav-cta {
    display: none;
  }

  .agti-burger {
    display: flex;
  }

  .agti-section {
    padding: 70px 1.25rem;
  }

  .agti-tech-grid,
  .agti-trust-grid {
    grid-template-columns: 1fr;
  }

  .agti-numbers-grid {
    flex-direction: column;
  }

  .agti-num-divider {
    width: 80px;
    height: 1px;
  }

  .agti-footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .agti-footer-cols {
    gap: 1.5rem;
  }

  .agti-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .agti-hero-stats {
    gap: 0.6rem;
  }

  .agti-stat-pill {
    min-width: 75px;
    padding: 0.55rem 0.9rem;
  }
}