/* ============================================================
   ABOUT PAGE — PREMIUM EDITORIAL STYLES
   Merlin LLC — Inspired by organic shape reference designs
   ============================================================ */

/* ─── HERO SECTION ─── */
.abt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0F172A;
  overflow: hidden;
  padding: 140px 0 100px;
}

.abt-hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Large concentric circle accent — top right (inspired by fingerprint pattern) */
.abt-hero__shape--circles {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
}
.abt-hero__shape--circles circle {
  fill: none;
  stroke: rgba(37, 99, 235, 0.12);
  stroke-width: 1.2;
}

/* Colorful stacked arcs — bottom left */
.abt-hero__shape--arcs {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 340px;
  height: 340px;
}

/* Organic blob accent */
.abt-hero__shape--blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  opacity: 0.04;
}

.abt-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abt-hero__text {
  max-width: 600px;
}

.abt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-400);
  margin-bottom: 28px;
  opacity: 0;
  animation: abtFadeUp 0.8s ease forwards 0.2s;
}

.abt-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary-400);
  border-radius: 50%;
  animation: abtPulse 2s ease-in-out infinite;
}

.abt-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #F8FAFC;
  margin-bottom: 28px;
  opacity: 0;
  animation: abtFadeUp 0.8s ease forwards 0.4s;
}

.abt-hero__headline span {
  color: var(--color-primary-400);
}

.abt-hero__body {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.75;
  color: #94A3B8;
  max-width: 520px;
  opacity: 0;
  animation: abtFadeUp 0.8s ease forwards 0.6s;
}

.abt-hero__body + .abt-hero__body {
  margin-top: 16px;
}

/* Hero image composition — rounded container with accent shapes */
.abt-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: abtFadeUp 1s ease forwards 0.5s;
}

.abt-hero__img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.abt-hero__img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  position: relative;
  z-index: 2;
}

/* Outlined organic shape behind image */
.abt-hero__img-outline {
  position: absolute;
  top: -20px;
  right: -20px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px solid rgba(37, 99, 235, 0.25);
  border-radius: 38px;
  z-index: 1;
}

/* Small colored accent blob */
.abt-hero__accent-blob {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: 3;
}

.abt-hero__accent-blob--blue {
  background: var(--color-primary-500);
  opacity: 0.7;
  top: -20px;
  left: 30px;
  animation: abtFloat 6s ease-in-out infinite;
}

.abt-hero__accent-blob--light {
  background: #60A5FA;
  opacity: 0.5;
  bottom: -15px;
  right: 40px;
  width: 70px;
  height: 70px;
  animation: abtFloat 6s ease-in-out infinite 1.5s;
}

/* Decorative wavy lines */
.abt-hero__wave-accent {
  position: absolute;
  bottom: 30px;
  left: -30px;
  width: 120px;
  height: 80px;
  z-index: 3;
  opacity: 0.6;
}

/* Scroll indicator */
.abt-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: abtBounce 2s ease-in-out infinite;
}

.abt-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #475569, transparent);
}


/* ─── MISSION SECTION ─── */
.abt-mission {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: #F8FAFC;
  overflow: hidden;
}

.abt-mission__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abt-mission__shape--dots {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
}

.abt-mission__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abt-mission__content {
  max-width: 540px;
}

.abt-mission__overline {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-500);
  margin-bottom: 20px;
}

.abt-mission__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 24px;
}

.abt-mission__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
}

.abt-mission__visual {
  position: relative;
}

.abt-mission__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  position: relative;
  z-index: 2;
}

.abt-mission__img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-primary-100);
  border-radius: 50%;
  z-index: 1;
}

.abt-mission__img-ring {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-primary-300);
  border-radius: 50%;
  z-index: 3;
}


/* ─── VISION SECTION ─── */
.abt-vision {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: #0F172A;
  overflow: hidden;
}

.abt-vision__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.04) 0%, transparent 50%);
}

.abt-vision__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abt-vision__visual {
  position: relative;
  order: -1;
}

.abt-vision__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  position: relative;
  z-index: 2;
}

/* Outlined organic frame */
.abt-vision__frame {
  position: absolute;
  inset: -16px;
  border: 1.5px solid rgba(96, 165, 250, 0.2);
  border-radius: 36px;
  z-index: 1;
}

.abt-vision__accent-orb {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-700));
  opacity: 0.3;
  bottom: -25px;
  right: -25px;
  z-index: 3;
  filter: blur(20px);
}

.abt-vision__content {
  max-width: 540px;
}

.abt-vision__overline {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-400);
  margin-bottom: 20px;
}

.abt-vision__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #F8FAFC;
  margin-bottom: 24px;
}

.abt-vision__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #94A3B8;
}


/* ─── WHAT MAKES US DIFFERENT (ALTERNATING) ─── */
.abt-different {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  background: #FDFBFA;
  overflow: hidden;
}

.abt-different__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.abt-different__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.abt-different__overline {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-500);
  margin-bottom: 16px;
}

.abt-different__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0F172A;
  margin-bottom: 24px;
}

.abt-different__intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #64748B;
}

.abt-different__panels {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 120px);
}

.abt-diff-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Zigzag Pattern */
/* Point 1 (and odd ones): Image on Right, Text on Left */
.abt-diff-panel:nth-child(odd) .abt-diff-panel__visual {
  grid-column: 2;
}
.abt-diff-panel:nth-child(odd) .abt-diff-panel__content {
  grid-column: 1;
  grid-row: 1;
}

/* Point 2 (and even ones): Image on Left, Text on Right */
.abt-diff-panel:nth-child(even) .abt-diff-panel__visual {
  grid-column: 1;
}
.abt-diff-panel:nth-child(even) .abt-diff-panel__content {
  grid-column: 2;
  grid-row: 1;
}

.abt-diff-panel__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.abt-diff-panel__visual--no-img {
  background: linear-gradient(135deg, var(--color-primary-50) 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-diff-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.abt-diff-panel:hover .abt-diff-panel__img {
  transform: scale(1.08);
}

.abt-diff-panel__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  opacity: 0.15;
}

.abt-diff-panel__content {
  max-width: 520px;
}

.abt-diff-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abt-diff-panel__desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
}

/* Responsive Zigzag */
@media (max-width: 1024px) {
  .abt-diff-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .abt-diff-panel:nth-child(odd) .abt-diff-panel__visual,
  .abt-diff-panel:nth-child(even) .abt-diff-panel__visual {
    grid-column: 1;
    order: 1; /* Image always on top for mobile */
  }

  .abt-diff-panel:nth-child(odd) .abt-diff-panel__content,
  .abt-diff-panel:nth-child(even) .abt-diff-panel__content {
    grid-column: 1;
    order: 2;
    max-width: 100%;
    margin: 0 auto;
  }
}


/* Stagger animation for cards */
.abt-diff-card:nth-child(1) { transition-delay: 0s; }
.abt-diff-card:nth-child(2) { transition-delay: 0.05s; }
.abt-diff-card:nth-child(3) { transition-delay: 0.1s; }
.abt-diff-card:nth-child(4) { transition-delay: 0.15s; }
.abt-diff-card:nth-child(5) { transition-delay: 0.2s; }


/* ─── HOW WE WORK (PROCESS) ─── */
.abt-process {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  background-color: #0F172A; /* Fallback */
  background-image: url('assets/our%20process.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect for premium feel */
  background-repeat: no-repeat;
  overflow: hidden;
  color: #F8FAFC;
}

/* Background Overlay Layer */
.abt-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.75) 50%,
    rgba(15, 23, 42, 0.95) 100%
  );
  backdrop-filter: blur(4px); /* Subtle blur for depth */
  z-index: 0;
}

/* Texture Overlay (Grid) */
.abt-process::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}

.abt-process__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.abt-process__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.abt-process__overline {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-400);
  margin-bottom: 20px;
}

.abt-process__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #F8FAFC;
}

/* Timeline layout */
.abt-process__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Vertical connecting line */
.abt-process__timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(37, 99, 235, 0.2),
    rgba(96, 165, 250, 0.8),
    rgba(37, 99, 235, 0.2)
  );
}

.abt-process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 0 0 48px 0;
}

.abt-process-step:last-child {
  padding-bottom: 0;
}

.abt-process-step__number {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(15, 23, 42, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #F8FAFC;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.abt-process-step:hover .abt-process-step__number {
  background: var(--color-primary-600);
  color: #FFFFFF;
  border-color: var(--color-primary-500);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
}

.abt-process-step__content {
  padding-top: 18px;
  flex: 1;
}

.abt-process-step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.abt-process-step:hover .abt-process-step__title {
  color: var(--color-primary-400);
}

.abt-process-step__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 520px;
}

/* Arrow connector between steps */
.abt-process-step__arrow {
  position: absolute;
  left: 33px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  z-index: 3;
}

.abt-process-step__arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary-400);
  fill: none;
  stroke-width: 2;
}

/* ─── CLOSING SECTION (OUR PHILOSOPHY) ─── */
.abt-closing {
  position: relative;
  padding: clamp(120px, 15vw, 200px) 0;
  background-color: #0F172A;
  background-image: url('assets/phylosophy.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Overlay Layer - Multi-stop gradient for maximum readability */
.abt-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.65) 50%,
    rgba(15, 23, 42, 0.92) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Premium Grid Texture */
.abt-closing::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.abt-closing__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2; /* Still below container but above background layers */
}

/* Large outlined circle accent */
.abt-closing__circle {
  position: absolute;
  border: 1.5px solid rgba(96, 165, 250, 0.1);
  border-radius: 50%;
}

.abt-closing__circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.abt-closing__circle--2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

/* Wavy hand-drawn line separator */
.abt-closing__wave {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 60px;
  opacity: 0.15;
}

.abt-closing__container {
  position: relative;
  z-index: 3; /* Top level for content */
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.abt-closing__overline {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-400);
  margin-bottom: 20px;
}

.abt-closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #F8FAFC;
  margin-bottom: 28px;
}

.abt-closing__body {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 40px;
}

.abt-closing__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--color-primary-500);
  color: #FFFFFF;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.abt-closing__cta:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.abt-closing__cta svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}


/* ─── ANIMATIONS ─── */
@keyframes abtFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abtFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes abtPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes abtBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Scroll reveal helper classes */
.abt-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.abt-reveal--delay-1 { transition-delay: 0.1s; }
.abt-reveal--delay-2 { transition-delay: 0.2s; }
.abt-reveal--delay-3 { transition-delay: 0.3s; }
.abt-reveal--delay-4 { transition-delay: 0.4s; }

.abt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .abt-hero__container,
  .abt-mission__container,
  .abt-vision__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .abt-hero__text,
  .abt-mission__content,
  .abt-vision__content {
    margin: 0 auto;
  }
  
  .abt-hero__visual {
    order: -1;
  }
}
.abt-process-step__arrow {
  position: absolute;
  left: 33px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  z-index: 3;
}

/* Premium Grid Texture */
.abt-closing::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.abt-closing__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2; /* Still below container but above background layers */
}

/* Large outlined circle accent */
.abt-closing__circle {
  position: absolute;
  border: 1.5px solid rgba(96, 165, 250, 0.1);
  border-radius: 50%;
}

.abt-closing__circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.abt-closing__circle--2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

/* Wavy hand-drawn line separator */
.abt-closing__wave {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 60px;
  opacity: 0.15;
}

.abt-closing__container {
  position: relative;
  z-index: 3; /* Top level for content */
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.abt-closing__overline {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-400);
  margin-bottom: 20px;
}

.abt-closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #F8FAFC;
  margin-bottom: 28px;
}

.abt-closing__body {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 40px;
}

.abt-closing__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--color-primary-500);
  color: #FFFFFF;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.abt-closing__cta:hover {
  background: var(--color-primary-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.abt-closing__cta svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}


/* ─── ANIMATIONS ─── */
@keyframes abtFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abtFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes abtPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes abtBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Scroll reveal helper classes */
.abt-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.abt-reveal--delay-1 { transition-delay: 0.1s; }
.abt-reveal--delay-2 { transition-delay: 0.2s; }
.abt-reveal--delay-3 { transition-delay: 0.3s; }
.abt-reveal--delay-4 { transition-delay: 0.4s; }

.abt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .abt-hero__container,
  .abt-mission__container,
  .abt-vision__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .abt-hero__text,
  .abt-mission__content,
  .abt-vision__content {
    margin: 0 auto;
  }
  
  .abt-hero__visual {
    order: -1;
  }
}
