* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #C41057;
  --pink-glow: #c50f56;
  --card-bg: #1A1A1A;
  --card-border: rgba(255, 255, 255, 0.07);
  --purple: #8b1aad;
  --orb1: #6b0f8e;
  --orb2: #3a0550;
  --dark: #000;
  --light: #fff;
  --dark-text: #1A1A1A;
  --medium-text: #333;
  --btn-bg: url("../images/background/cta.png");
}

body {
  font-family: "Google Sans Flex", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-image: url("../images/background/hero_banner.png");
  /* ← YOUR BG image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* Fallback gradient matching the pink-peach palette */
  display: flex;
  flex-direction: column;
}

/* ── Navbar / Logo bar ── */
.hero-nav {
  padding: 28px 0 0;
  position: relative;
  z-index: 10;
}

.hero-logo {
  height: 42px;
  width: auto;
}

/* ── Hero Body ── */
.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
  min-height: 100vh;
}

/* ── Left: Copy ── */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 1.5rem; */
}

@media (max-width: 767px) {

  .hero-illustration {
    position: relative;
  }

  .hero-copy .cta-btn {
    position: absolute;
    bottom: 62px;
    margin-top: 0;
    z-index: 10;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark-text);
}

.hero-heading .accent {
  color: var(--pink);
  font-weight: 900;
}

.hero-subtext {
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  margin-top: 20px;
  max-width: 500px;
  color: var(--medium-text);
  line-height: 1;
  font-weight: 500;
}

.hero-subtext em {
  font-style: italic;
  font-weight: 500;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 12px 28px;
  background: var(--btn-bg);
  color: var(--light);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: max-content;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: var(--pink);
  /* slightly darker pink on hover */
}

.arrow {
  background-color: var(--light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

/* ── Right: Illustration image ── */
.hero-illustration {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-illustration img {
  width: 100%;
  max-width: auto;
  height: auto;
  object-fit: contain;
  /* Gentle float animation */
  animation: heroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(180, 60, 120, 0.15));
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* ── Responsive ── */

/* Tablet */
@media (max-width: 991.98px) {
  .hero-body {
    padding: 40px 0 60px;
  }

  .hero-illustration {
    justify-content: center;
    margin-top: 2rem;
  }

  .hero-illustration img {
    max-width: 90%;
  }

  .hero-copy {
    text-align: center;
    align-items: center;
  }

  .hero-subtext {
    max-width: 500px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .hero-nav {
    padding: 20px 0 0;
  }

  .hero-logo {
    height: 34px;
  }

  .hero-heading {
    font-size: 2.3rem;
  }

  .hero-body {
    padding: 30px 0 50px;
  }

  .hero-illustration img {
    max-width: 100%;
  }
}

.systems-section {
  overflow: hidden;
  background-image: url("../images/merge_section_BG-1.png");
  background-size: cover;
  /* Makes it fill entire section */
  background-position: center;
  /* Keeps it centered */
  background-repeat: no-repeat;
}

/* Headings */
.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  max-width: 450px;
  /* margin-bottom: 30px; */
  color: #333;
  line-height: 1.4;
  text-align: center;
}

.section-subtitle {
  font-size: 0.9rem;
  max-width: 450px;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

/* TEXT CARD with corner glow image */
.glass-card {
  position: relative;
  /* background: rgba(255, 255, 255, 0.6); */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
  border-radius: 20px;
  padding: 30px;
  max-width: 520px;
  overflow: hidden;
}

.glass-card.inner {
  padding: 20px;
  box-shadow: 0 20px 50px rgba(255, 0, 120, 0.15);
  background: #f1cddb;
}

/* Top-right glow */
.glass-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: url("../images/icons/asset\ 2.png");
  /* filter: blur(15px); */
}

/* Bottom-left glow */
.glass-card::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: url("../images/icons/asset\ 1.png");
  /* filter: blur(15px); */
}

/* Explore Button */
.explore-btn {
  background: #000;
  color: var(--light);
  padding: 10px 15px 10px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-weight: 600;
}

.explore-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

img.merge_banner {
  max-width: 500px;
  /* height: 30rem; */
}

/* ── SECTION ── */
.why-section {
  position: relative;
  padding: 90px 24px 50px;
  overflow: hidden;
  background: #0a0a0a;
  padding-top: 70px !important;
}

/* Radial glow blobs */
.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Left card red glow */
.why-section::before {
  width: 500px;
  height: 400px;
  bottom: 60px;
  left: -80px;
}

/* Right card red glow */
.why-section::after {
  width: 500px;
  height: 400px;
  bottom: 60px;
  right: -80px;
}

/* ── HEADING ── */
.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  margin-bottom: 28px;
  color: var(--light);
}

.section-heading .highlight {
  color: var(--pink);
}

/* ── SUBTEXT ── */
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.3;
}

.section-sub strong {
  color: var(--light);
  font-weight: 700;
}

/* ── CARDS ROW ── */
.why-cards-row {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
}

/* ── CARD ── */
.pain-card {
  position: relative;
  width: 330px;
  max-height: 185px;
  padding: 60px 0px 60px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 10px;
}

/* Background glow image */
.pain-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../images/icons/Box.png") no-repeat center;
  background-size: 100% 100%;

  opacity: 0.9;
  z-index: 0;
}

/* Content stays above effects */
.pain-card>* {
  position: relative;
  z-index: 2;
}

.pain-card:hover {
  transform: scale(1.05);
}

/* ── ICON ── */
.card-icon {
  width: 55px;
  height: 55px;
  /* margin-bottom: 28px; */
  position: relative;
  z-index: 1;
}

/* ── CARD TEXT ── */
.card-body-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.card-body-text-accent {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: normal;
  color: var(--light);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ── FOOTER TEXT ── */
.section-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cards-row {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .why-section::before,
  .why-section::after {
    display: none;
  }

  .pain-card {
    padding: 36px 28px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .cards-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .pain-card {
    padding: 36px 20px;
  }
}

section.section {
  background-image: url("../images/merge_section_BG-1.png");
  background-size: cover;
  /* Makes it fill entire section */
  background-position: center;
  /* Keeps it centered */
  background-repeat: no-repeat;

  width: 100%;
  min-height: 100vh;
  overflow: hidden !important;
  /* Ensures it covers full viewport height */
}

/* ════════════════════════════════════════
       SECTION 1 — The Real Problem
    ════════════════════════════════════════ */
.sec-problem {
  padding: 35px 0;
}

.problem-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Placeholder when no real image */
.img-placeholder {
  width: 100%;
  max-width: 800px;
  /* control max size */
  margin: 0 auto;
  /* center horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-placeholder img {
  width: 100%;
  height: auto;
  /* keeps aspect ratio */
  display: block;
  /* removes inline spacing */
  object-fit: contain;
  /* ensures full image is visible */
}

@media (max-width: 768px) {
  .img-placeholder {
    max-width: 90%;
  }
}

.problem-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.check-list li .ci {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-list li .ci::after {
  content: "✕";
  font-size: 0.55rem;
  color: var(--pink);
  font-weight: 900;
  line-height: 1;
}

.problem-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 20px;
}

.pink-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink);
}

/* ════════════════════════════════════════
       SECTION 2 — Why DLM Became Ascenda
    ════════════════════════════════════════ */
/* .sec-why {
  padding: 90px 0;
} */

.why-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.why-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.3;
}

.puzzle-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ════════════════════════════════════════
       SECTION 3 — Introducing Ascenda
    ════════════════════════════════════════ */
.sec-intro {
  padding: 90px 0 50px;
  text-align: center;
}

.intro-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 40px;
  color: var(--text-dark);
}

/* Ascenda logo lockup */
.ascenda-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
}

.ascenda-logo-text {
  line-height: 1;
  text-align: left;
}

.ascenda-logo-text .aname {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: #111;
  letter-spacing: -0.01em;
}

.ascenda-logo-text .asub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
  margin-top: 4px;
}

/* Not-a pills */
.not-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.not-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(180, 80, 140, 0.18);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  backdrop-filter: blur(6px);
}

.not-pill .pi {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-pill .pi::after {
  content: "✕";
  font-size: 0.48rem;
  color: var(--pink);
  font-weight: 900;
}

.intro-desc {
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.intro-desc strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Divider between sections */
.sec-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(180, 80, 140, 0.2),
      transparent);
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {

  .sec-problem,
  .sec-why {
    /*padding: 60px 0;*/
  }

  .problem-img-placeholder,
  .puzzle-img-placeholder {
    height: 220px;
    margin-bottom: 32px;
  }

  .sec-intro {
    padding: 60px 0 72px;
  }

  .not-pills {
    flex-direction: column;
    align-items: center;
  }
}

/* ══════════════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════════════ */
.ssd-section {
  position: relative;
  background: var(--dark);
  padding: 72px 0 80px;
  overflow: hidden;
}

/* ── Subtle outer glow blobs ── */

/* ══════════════════════════════════════
       HEADING
    ══════════════════════════════════════ */
.ssd-heading {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  line-height: 1;
  position: relative;
  z-index: 2;
  color: var(--light);
}

.ssd-heading .accent {
  color: var(--pink);
}

/* Wrapper */
.ssd360-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Circle container */
.ssd360-circle {
  width: 100%;
  max-width: 900px;
  /* control desktop size */
}

@media (max-width: 600px) {
  .ssd360-circle {
    min-width: 600px;
  }
}

/* img {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

img.loaded {
  opacity: 1;
} */

/* Image */
.circle-img {
  width: 100%;
  height: auto;
  display: block;
  /* removes bottom spacing */
  object-fit: contain;
}

/* ══════════════════════════════════════
       BOTTOM CARDS
    ══════════════════════════════════════ */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.engine-card {
  background: #111118;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px 22px 26px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.engine-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 55%);
  pointer-events: none;
}

/* Bottom glow per card */
.engine-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50px;
  background: radial-gradient(ellipse,
      rgba(200, 20, 80, 0.2) 0%,
      transparent 70%);
  pointer-events: none;
}

.engine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(180, 20, 80, 0.2);
  border-color: rgba(200, 30, 100, 0.25);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 5px;
}

.card-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .cards-row {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .orb-wrap {
    width: 280px;
    height: 280px;
  }

  .float-icon {
    width: 36px;
    height: 36px;
  }

  .float-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 601px) and (max-width: 860px) {
  .cards-row {
    max-width: 100%;
    gap: 12px;
  }

  .orb-wrap {
    width: 340px;
    height: 340px;
  }
}

/* ══════════════════════════════════
       SECTION
    ══════════════════════════════════ */
.built-section {
  background: #f8f8fb;
  padding: 80px 24px 100px;
}

.built-heading {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 52px;
}

/* ══════════════════════════════════
       CARDS GRID
    ══════════════════════════════════ */
.built-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

/* ══════════════════════════════════
       CARD
    ══════════════════════════════════ */
.built-card {
  background: var(--light);
  border-radius: 18px;
  padding: 15px 0px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Pink bottom glow bleed */
.built-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70px;
  background: radial-gradient(ellipse,
      rgba(225, 15, 90, 0.12) 0%,
      transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Left card pink side shadow */
.built-card:first-child {
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.05),
    -6px 0 24px rgba(220, 15, 80, 0.08);
}

/* Right card pink side shadow */
.built-card:last-child {
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.05),
    6px 0 24px rgba(220, 15, 80, 0.08);
}

.built-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(220, 15, 80, 0.14);
}

.built-card:hover::after {
  opacity: 1.5;
}

/* ── Icon circle ── */
.built-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8185a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(220, 15, 80, 0.35);
}

.built-icon svg {
  width: 30px;
  height: 30px;
}

/* ── Card text ── */
.built-card-text {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 700;
  color: #111;
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .built-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .built-card:first-child,
  .built-card:last-child {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .built-grid {
    gap: 14px;
  }

  .built-card {
    padding: 32px 20px;
  }
}

/* ═══════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 24px 100px;
  background: url("../images/background/cta.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

/* Ascenda arrow watermark */
.cta-arrow-mark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-arrow-mark svg {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  width: 42%;
  opacity: 0.13;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
}

.cta-headline {
  font-size: clamp(2rem, 6vw, 3.9rem);
  font-weight: 900;
  line-height: 1;
  color: var(--light);
  margin-bottom: 26px;
  letter-spacing: -0.025em;
}

.cta-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  /* margin-bottom: 44px; */
}

.cta-sub strong {
  color: var(--light);
  font-weight: 700;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: var(--light);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  /* padding: 15px 22px 15px 30px; */
  border-radius: 60px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.25s,
    box-shadow 0.3s;
  background-color: var(--pink);
}

.main-btn:hover {
  /* background: rgba(255, 255, 255, 0.24); */
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  color: var(--light);
}

.btn-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.cta-btn:hover .btn-arrow {
  transform: rotate(45deg);
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════
       FOOTER
    ═══════════════════════════════════ */
.site-footer {
  background: var(--light);
  /* padding: 44px 24px 36px; */
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  /* margin-bottom: 14px; */
  /* margin-top: 14px; */
  text-decoration: none;
  width: 7rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: #bbb;
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .cta-section {
    padding: 70px 20px 80px;
  }

  .cta-headline {
    letter-spacing: -0.015em;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 13px 18px 13px 26px;
    gap: 10px;
  }

  .btn-arrow {
    width: 34px;
    height: 34px;
  }
}