:root {
  --aurigen-gold: #D4AF37;
  --aurigen-black: #000000;
  --aurigen-white: #FFFFFF;
  --aurigen-navy: #0A1A2F;
  --aurigen-ivory: #F5F2E9;
  --aurigen-ink: #111827;
  --aurigen-muted: #6B7280;
}

/* RESET & GLOBAL */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--aurigen-ivory);
  color: var(--aurigen-ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 55%),
    radial-gradient(circle at bottom, rgba(10, 26, 47, 0.12), transparent 55%);
}

.max-w {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0 4.5rem;
}

/* HEADER / NAV */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(245, 242, 233, 0.96),
    rgba(245, 242, 233, 0.9),
    rgba(245, 242, 233, 0.4)
  );
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pyramid-icon {
  width: 32px;
  height: 32px;
  position: relative;
}

.pyramid-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: conic-gradient(from 210deg, #f7e29a, var(--aurigen-gold), #7f5b13, var(--aurigen-gold));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.55);
}

.brand-text-main {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--aurigen-gold);
}

.brand-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(17, 24, 39, 0.8);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--aurigen-gold), var(--aurigen-navy));
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--aurigen-black);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: 1rem;
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(to bottom, rgba(245, 242, 233, 0.98), rgba(245, 242, 233, 0.92));
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(17, 24, 39, 0.82);
}

.mobile-nav a:hover {
  color: var(--aurigen-black);
}

main {
  padding-top: 96px;
}

/* HERO */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  padding: 4rem 0 5rem;
  animation: fadeUp 1.2s ease both;
  max-width: 760px;
}

.hero-icon-wrap {
  display: inline-flex;
  padding: 1px;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(212,175,55,0.9), transparent 65%);
  margin-bottom: 1.75rem;
}

.hero-icon-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(10,26,47,0.9), rgba(0,0,0,0.98));
  border: 1px solid rgba(212,175,55,0.28);
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.hero-icon-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--aurigen-gold);
  box-shadow: 0 0 16px rgba(212,175,55,0.8);
}

/* Desktop hero image */
.hero-media-desktop {
  display: block;
  width: 100%;
  max-width: 880px;
  height: 260px;
  margin: 0 auto 2.25rem;
  border-radius: 1.75rem;
  overflow: hidden;
  background-image: linear-gradient(
      to top,
      rgba(10, 26, 47, 0.8),
      rgba(10, 26, 47, 0.2)
    ),
    url("https://images.pexels.com/photos/313782/pexels-photo-313782.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.35);
}

/* Mobile hero image – same image as desktop */
.hero-media-mobile {
  display: none;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 2rem;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-image: linear-gradient(
      to top,
      rgba(10, 26, 47, 0.8),
      rgba(10, 26, 47, 0.2)
    ),
    url("https://images.pexels.com/photos/313782/pexels-photo-313782.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.32);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  margin-bottom: 1.75rem;
  color: var(--aurigen-gold);
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--aurigen-muted);
}

.hero-subtitle-strong {
  font-weight: 600;
  color: #374151;
}

.hero-signature {
  margin-top: 1.75rem;
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: rgba(17, 24, 39, 0.85);
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

/* BUTTONS */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f1d37e, var(--aurigen-gold), #b3861e);
  color: #1a1205;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(212,175,55,0.55);
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--aurigen-navy), #f1d37e);
  box-shadow: 0 0 32px rgba(212,175,55,0.7);
  color: #fdf7e8;
}

.btn-secondary-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(17, 24, 39, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-secondary-link span {
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, rgba(212,175,55,0.6), transparent);
}

/* SECTION HEADINGS */

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aurigen-muted);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aurigen-gold);
}

/* VISUAL STRIP – INSTITUTIONAL-GRADE REAL ESTATE */

.visual-strip {
  padding: 3.5rem 0;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.09), transparent 55%);
}

.visual-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.visual-copy .section-title {
  text-align: left;
}

.visual-text {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--aurigen-muted);
  max-width: 520px;
}

/* Single hero-style city image on the right */

.visual-media {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.visual-photo {
  border-radius: 1.8rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35);
}

/* Drone shot over city skyline */
.single-city-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  background-image: linear-gradient(
      to top,
      rgba(10, 26, 47, 0.75),
      rgba(10, 26, 47, 0.25)
    ),
    url("https://images.pexels.com/photos/313782/pexels-photo-313782.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

/* THREE PILLARS / GENERIC CARD */

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.card {
  border-radius: 1.4rem;
  border: 1px solid rgba(212,175,55,0.24);
  background: radial-gradient(circle at top left, rgba(212,175,55,0.12), rgba(0,0,0,0.96));
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.02), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover::after {
  opacity: 1;
}

.card-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #f7e8c5;
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.card-pill {
  margin-top: 1rem;
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.65);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* AURIGEN METHOD */

.method-section {
  background: #f7f4ec;
}

.method-inner {
  text-align: center;
}

.method-subtitle {
  max-width: 720px;
  margin: 0.75rem auto 2.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--aurigen-muted);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.method-item {
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fdfbf7;
  padding: 1.5rem 1.1rem 1.4rem;
  text-align: left;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.method-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.26);
  background: #fffdf7;
}

.method-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.method-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 0.6rem;
}

.method-body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #4b5563;
}

/* AURIGEN ASCENSION LADDER */

.ascension {
  background: radial-gradient(circle at top, rgba(10, 26, 47, 0.95), #020617);
  color: #e5e7eb;
}

.ascension .section-title,
.ascension .section-kicker {
  color: var(--aurigen-gold);
}

.ascension-subtitle,
.ascension-microcopy,
.ascension-connector {
  max-width: 720px;
  margin: 0.75rem auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.9);
}

.ascension-ladder {
  position: relative;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ascension-spine {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.7));
}

.tier-card {
  position: relative;
  margin-left: 32px;
  border-radius: 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.36);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  padding: 1.8rem 1.6rem 1.9rem 2.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: visible;
}

.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
  border-color: rgba(212, 175, 55, 0.7);
}

.tier-node {
  position: absolute;
  left: -23px;
  top: 24px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 1);
  background: radial-gradient(circle, var(--aurigen-gold), #fef3c7);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.9);
}

.tier-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 0.4rem;
}

.tier-title {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  color: #fefce8;
  margin-bottom: 0.3rem;
}

.tier-subtitle {
  font-size: 0.88rem;
  color: rgba(229, 231, 235, 0.9);
  margin-bottom: 0.8rem;
}

.tier-description,
.tier-outcome,
.tier-note {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(209, 213, 219, 0.96);
  margin-bottom: 0.8rem;
}

.tier-list {
  margin: 0.75rem 0 0.8rem;
  padding-left: 1.1rem;
  list-style: disc;
  color: rgba(229, 231, 235, 0.95);
  font-size: 0.9rem;
  line-height: 1.7;
}

.tier-cta {
  margin-top: 0.6rem;
}

/* WHY AURIGEN */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-item {
  text-align: center;
  padding: 1.6rem 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(212,175,55,0.24);
  background: radial-gradient(circle at top, rgba(10,26,47,0.8), rgba(0,0,0,0.96));
}

.why-title {
  font-family: 'Cinzel', serif;
  font-size: 0.98rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aurigen-gold);
  margin-bottom: 0.7rem;
}

.why-body {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}

/* TEAM */

.team-section {
  background: #f5f2e9;
}

.team-grid {
  align-items: flex-start;
}

.team-card {
  background: radial-gradient(circle at top left, rgba(212,175,55,0.08), rgba(0,0,0,0.96));
}

.team-photo {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* TESTIMONIALS */

.testimonials {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  color: #e5e7eb;
}

.testimonials .section-title,
.testimonials .section-kicker {
  color: var(--aurigen-gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  position: relative;
  border-radius: 1.4rem;
  padding: 1.9rem 1.6rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(17, 24, 39, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.7);
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -26px;
  left: -6px;
  font-family: "Cinzel", serif;
  font-size: 5rem;
  color: rgba(55, 65, 81, 0.35);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(243, 244, 246, 0.96);
  margin-bottom: 1.1rem;
}

.testimonial-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(209, 213, 219, 0.9);
}

.testimonial-role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 0.2rem;
}

/* DEALS */

.deals {
  background: linear-gradient(to bottom, #f6f3ea, #e9e4d5);
  color: var(--aurigen-ink);
}

.deals .section-title {
  color: var(--aurigen-ink);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.deal-card {
  border-radius: 1.4rem;
  padding: 1.8rem 1.5rem 1.6rem;
  background: #fdfbf5;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 36%;
  background: linear-gradient(to right, var(--aurigen-gold), rgba(212, 175, 55, 0));
}

.deal-badge {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.deal-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 0.7rem;
}

.deal-list {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #374151;
  padding-left: 1.1rem;
  list-style: disc;
}

.deals-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* GUARANTEE */

.guarantee-section {
  background: var(--aurigen-ivory);
}

.guarantee-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.guarantee-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--aurigen-ink);
  margin-top: 1rem;
}

/* FOOTER CTA / FORM */

.footer-cta {
  border-top: 1px solid rgba(212,175,55,0.22);
  background: radial-gradient(circle at bottom, rgba(10,26,47,0.9), rgba(0,0,0,0.98));
  padding: 3.5rem 0 3rem;
}

.footer-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.footer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aurigen-gold);
  margin-bottom: 1.2rem;
}

.footer-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
}

.footer-meta {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.contact-form {
  margin: 0 auto;
  max-width: 520px;
  text-align: left;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-row-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249,250,251,0.8);
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.85);
  color: #f9fafb;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-textarea {
  border-radius: 1rem;
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(148,163,184,0.9);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--aurigen-gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.35);
  background: rgba(15,23,42,0.96);
}

.form-hint {
  font-size: 0.75rem;
  color: rgba(148,163,184,0.9);
  margin-top: -0.3rem;
  margin-bottom: 0.4rem;
}

.form-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-small {
  font-size: 0.7rem;
  color: rgba(148,163,184,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 900px) {
  .visual-inner {
    grid-template-columns: 1fr;
  }

  .visual-media {
    justify-content: flex-start;
  }

  .testimonials-grid,
  .deals-grid {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ascension-inner {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-media-desktop {
    display: none;
  }

  .hero-media-mobile {
    display: block;
  }

  .three-columns,
  .why-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .visual-strip {
    padding-top: 3rem;
  }

  .visual-inner {
    gap: 1.8rem;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }
}
