/* ===========================
   CRIB — style.css
   =========================== */

:root {
  --teal-dark: #004e4c;
  --teal: #007f79;
  --teal-mid: #009e97;
  --teal-light: #00c4bb;
  --teal-pale: #e6f7f6;
  --white: #ffffff;
  --off-white: #f5f7f8;
  --text-dark: #0d1c1c;
  --text-mid: #3a4a4a;
  --text-light: #6b7b7b;
  --border: #e2ecec;
  --shadow-sm: 0 4px 16px rgba(0, 78, 76, .07);
  --shadow-md: 0 12px 40px rgba(0, 78, 76, .12);
  --shadow-lg: 0 24px 64px rgba(0, 78, 76, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}


/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: transparent;
  transition: background .35s, box-shadow .35s, padding .35s;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0, 78, 76, .96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .15);
  padding: 14px 6%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: .65;
}

.nav-cta {
  background: white;
  color: var(--teal-dark);
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--teal-dark);
  z-index: 999;
  padding: 16px 6%;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: .3s;
  pointer-events: none;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}


/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
}

.hero-bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--teal-light);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: #00e8dd;
  bottom: -50px;
  left: 10%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: white;
  top: 40%;
  right: 30%;
  animation: blobFloat 7s ease-in-out infinite 2s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(.97);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp .6s ease both;
}

.hero-text h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp .7s ease .1s both;
}

/* 
 .gradient-text {
  background: linear-gradient(90deg, #a8fffa, #ffffff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}  */

.gradient-text {
  background: linear-gradient(90deg,
      #00a79d 0%,
      #008c85 50%,
      #006b66 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

.hero-gradient-text {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #bffffc 45%,
    #5cf2ea 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp .7s ease .2s both;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .3s both;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}

.btn-apple {
  background: #1a1a1a;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.btn-google {
  background: var(--teal-dark);
  color: white;
  border: 2px solid rgba(255, 255, 255, .3);
  box-shadow: 0 4px 20px rgba(0, 78, 76, .4);
}

.btn-store:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

.store-sub {
  display: block;
  font-size: 11px;
  opacity: .8;
  font-weight: 500;
}

.store-main {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .3px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  animation: fadeInUp .7s ease .4s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .25);
}

/* Phone mockups */
.hero-phones {
  position: relative;
  height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp .8s ease .2s both;
}

.phone-mockup {
  position: absolute;
  background: #111;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5), 0 0 0 2px rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .12);
}

.phone-mockup img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-front {
  width: 240px;
  height: 510px;
  z-index: 2;
  right: 10%;
  animation: phoneBob 6s ease-in-out infinite;
}

.phone-back {
  width: 210px;
  height: 450px;
  z-index: 1;
  left: 10%;
  top: 40px;
  opacity: .85;
  animation: phoneBob 6s ease-in-out infinite 1.5s;
}

@keyframes phoneBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--teal-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 6%;
}

.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-inner>span {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 14px;
  white-space: nowrap;
}

.trust-cities {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-cities span {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}


/* ===========================
   SECTION COMMON
   =========================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.label-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}


/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 100px 0;
  background: var(--off-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* .fc-wide { grid-column: span 2; } */

.feature-icon-wrap {
  font-size: 36px;
  margin-bottom: 18px;
  width: 64px;
  height: 64px;
  background: var(--teal-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

.feature-chip {
  display: inline-block;
  margin-top: 18px;
  background: var(--teal-pale);
  color: var(--teal);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}


/* ===========================
   SCREENSHOTS
   =========================== */
.screenshots {
  padding: 100px 0;
}

.screenshots-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 16px;
  align-items: end;
}

.screenshot-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.screenshot-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.screenshot-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.sc-featured {
  border-radius: var(--radius-lg);
}

.sc-featured-right {
  border-radius: var(--radius-lg);
}

.sc-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 78, 76, .85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}


/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}

.steps-wrapper {
  display: flex;
  gap: 0;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-num-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(0, 78, 76, .25);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-pale));
  margin-top: 36px;
  align-self: flex-start;
}


/* ===========================
   FOR AGENTS
   =========================== */
.for-agents {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}

.for-agents::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.agents-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.agents-text .label-light {
  background: rgba(255, 255, 255, .15);
  color: white;
  border: 1px solid rgba(255, 255, 255, .2);
}

.agents-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin: 16px 0 20px;
}

.gradient-text-light {
  background: linear-gradient(90deg, #a8fffa, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agents-text p {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.agents-list {
  list-style: none;
  margin-bottom: 36px;
}

.agents-list li {
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.btn-agents {
  display: inline-block;
  background: white;
  color: var(--teal-dark);
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}

.btn-agents:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.agents-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
  border: 2px solid rgba(255, 255, 255, .15);
  max-width: 280px;
  margin: 0 auto;
}

.agents-visual img {
  width: 100%;
  display: block;
}


/* ===========================
   FAQ
   =========================== */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open {
  border-color: var(--teal-mid);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Manrope', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  transition: background .2s;
}

.faq-q:hover {
  background: var(--teal-pale);
}

.faq-icon {
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}


/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-blobs {
  position: absolute;
  inset: 0;
}

.cta-section .blob-1 {
  width: 400px;
  height: 400px;
  background: var(--teal-light);
  top: -150px;
  left: -100px;
}

.cta-section .blob-2 {
  width: 300px;
  height: 300px;
  background: white;
  bottom: -100px;
  right: 5%;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, .85);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-section .download-buttons {
  justify-content: center;
}


/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--teal-dark);
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo span {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: 3px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-col a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 5%;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
}


/* ===========================
   LEGAL PAGES
   =========================== */
.legal-page {
  background: #f5f7f8;
  min-height: 100vh;
  padding: 120px 20px 60px;
}

.legal-container {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.legal-container h1 {
  color: #004e4c;
  margin-bottom: 20px;
  font-size: 42px;
}

.legal-container h2 {
  color: #004e4c;
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 28px;
}

.legal-container h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #222;
}

.legal-container p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-container ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.legal-container li {
  margin-bottom: 10px;
  color: #444;
}

.legal-topbar {
  width: 100%;
  background: #004e4c;
  padding: 22px 8%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.legal-topbar a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

/* .agent-dashboard-image{
  width:100%;
  max-width:420px;
  display:block;
  border-radius:32px;
  object-fit:cover;
} */


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .screenshots-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .sc-featured,
  .sc-featured-right {
    grid-column: span 1;
  }

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

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-text p {
    margin: 0 auto 40px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-phones {
    height: 420px;
  }

  .phone-front {
    width: 190px;
    height: 400px;
    right: 20%;
  }

  .phone-back {
    width: 165px;
    height: 350px;
    left: 20%;
  }

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

  .fc-wide {
    grid-column: span 1;
  }

  .steps-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    margin: 0 0 0 36px;
    background: linear-gradient(180deg, var(--teal-mid), var(--teal-pale));
    align-self: auto;
  }

  .agents-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .agents-visual {
    max-width: 220px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .screenshots-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: 36px;
  }

  .screenshots-showcase {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links-group {
    gap: 28px;
  }

  .legal-container {
    padding: 30px 20px;
  }

  .legal-container h1 {
    font-size: 30px;
  }

  .hero-phones {
    display: none;
  }

  .download-buttons {
    justify-content: center;
  }
}