/* =========================================================
   MY HOME LANDING PAGE
   Self-contained styles
========================================================= */

:root {
  --blue: #1e62ff;
  --blue-dark: #1550dc;
  --teal: #2cd3c4;
  --yellow: #ffd93d;

  --text: #111827;
  --text-soft: #4b5563;
  --text-muted: #6b7280;

  --background: #f7f9fc;
  --white: #ffffff;

  --border: #e5e7eb;

  --gradient: linear-gradient(
    110deg,
    #1e62ff 0%,
    #2cd3c4 100%
  );

  --shadow-small:
    0 4px 16px rgba(15, 23, 42, 0.06);

  --shadow-medium:
    0 16px 45px rgba(15, 23, 42, 0.10);

  --shadow-large:
    0 30px 80px rgba(15, 23, 42, 0.16);
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: var(--text);
  background: var(--background);

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.landing-header {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  z-index: 100;
}

.header-inner {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;

  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 68px;

  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;

  color: #374151;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.desktop-nav .nav-login {
  margin-left: 8px;
}

.desktop-nav .nav-signup {
  color: white;

  background: var(--gradient);

  padding: 11px 18px;

  border-radius: 9px;

  box-shadow:
    0 5px 15px rgba(30, 98, 255, 0.20);
}

.desktop-nav .nav-signup:hover {
  color: white;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(30, 98, 255, 0.28);
}

.mobile-menu-button {
  display: none;

  border: none;
  background: transparent;

  font-size: 26px;

  cursor: pointer;

  color: var(--text);
}

.mobile-menu {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 730px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7faff 72%,
      #f4f8fc 100%
    );
}

.hero-background-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(5px);

  pointer-events: none;
}

.glow-one {
  width: 500px;
  height: 500px;

  right: -180px;
  top: 80px;

  background:
    rgba(44, 211, 196, 0.10);
}

.glow-two {
  width: 400px;
  height: 400px;

  left: -220px;
  bottom: -180px;

  background:
    rgba(30, 98, 255, 0.08);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;

  padding-top: 145px;
  padding-bottom: 70px;

  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(500px, 1.08fr);

  gap: 45px;

  align-items: center;
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-pill {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 7px 12px;

  border-radius: 999px;

  background:
    rgba(30, 98, 255, 0.07);

  border:
    1px solid rgba(30, 98, 255, 0.12);

  color: var(--blue);

  font-size: 12px;
  font-weight: 700;

  margin-bottom: 20px;
}

.pill-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--teal);

  box-shadow:
    0 0 0 4px rgba(44, 211, 196, 0.13);
}

.hero h1 {
  margin: 0;

  max-width: 620px;

  font-size: clamp(46px, 5vw, 70px);

  line-height: 1.02;

  letter-spacing: -3px;

  font-weight: 800;

  color: #101828;
}

.hero h1 span {
  display: inline;

  background: var(--gradient);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-subtitle {
  max-width: 560px;

  margin: 24px 0 0;

  font-size: 18px;

  line-height: 1.65;

  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 32px;
}

.primary-button,
.secondary-button,
.selling-button,
.final-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  border-radius: 10px;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-button {
  padding: 14px 21px;

  color: white;

  background: var(--gradient);

  box-shadow:
    0 10px 24px rgba(30, 98, 255, 0.20);
}

.primary-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 30px rgba(30, 98, 255, 0.27);
}

.primary-button span {
  font-size: 20px;

  line-height: 0;
}

.secondary-button {
  padding: 13px 19px;

  background: white;

  border:
    1px solid #dfe4ec;

  color: #374151;

  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.04);
}

.secondary-button:hover {
  transform: translateY(-2px);

  border-color: #cdd5e1;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;

  gap: 7px;

  color: #6b7280;

  font-size: 12px;
}

.trust-icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background:
    rgba(44, 211, 196, 0.13);

  color: #159e92;

  font-weight: 800;
}


/* =========================================================
   HERO PHONE
========================================================= */

.hero-visual {
  position: relative;

  height: 560px;

  display: flex;

  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      rgba(30, 98, 255, 0.10),
      rgba(44, 211, 196, 0.14)
    );

  filter: blur(20px);
}

.phone {
  position: relative;

  z-index: 3;

  width: 295px;
  height: 555px;

  padding: 9px;

  border-radius: 40px;

  background:
    linear-gradient(
      145deg,
      #222831,
      #0e1116
    );

  box-shadow:
    0 35px 70px rgba(15, 23, 42, 0.26),
    0 10px 25px rgba(15, 23, 42, 0.14);

  transform:
    rotate(2deg);
}

.phone::before {
  content: "";

  position: absolute;

  left: -3px;
  top: 105px;

  width: 3px;
  height: 70px;

  border-radius: 3px;

  background: #2e343c;
}

.phone::after {
  content: "";

  position: absolute;

  right: -3px;
  top: 120px;

  width: 3px;
  height: 90px;

  border-radius: 3px;

  background: #2e343c;
}

.phone-speaker {
  position: absolute;

  z-index: 10;

  top: 16px;
  left: 50%;

  width: 72px;
  height: 20px;

  transform: translateX(-50%);

  border-radius: 20px;

  background: #090b0e;
}

.phone-screen {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 32px;

  background: #f7f9fc;

  padding: 29px 15px 15px;
}

.demo-status {
  display: flex;
  align-items: center;

  justify-content: center;

  gap: 7px;

  padding: 6px 9px;

  margin-bottom: 13px;

  border-radius: 8px;

  background:
    rgba(44, 211, 196, 0.10);

  color: #168d83;

  font-size: 10px;
  font-weight: 700;
}

.status-live {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #2cd3c4;
}

.demo-header {
  display: flex;
  justify-content: space-between;

  align-items: center;

  margin-bottom: 12px;
}

.demo-eyebrow {
  display: block;

  color: var(--blue);

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 1.1px;

  margin-bottom: 2px;
}

.demo-header h3 {
  margin: 0;

  font-size: 17px;

  letter-spacing: -0.4px;
}

.demo-avatar {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gradient);

  color: white;

  font-size: 9px;
  font-weight: 800;
}

.demo-summary {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 7px;

  margin-bottom: 15px;
}

.summary-box {
  padding: 10px;

  background: white;

  border:
    1px solid #e8ebf0;

  border-radius: 9px;
}

.summary-box strong {
  display: block;

  font-size: 17px;

  color: #111827;
}

.summary-box span {
  display: block;

  margin-top: 2px;

  font-size: 8px;

  color: #7b8491;
}

.demo-section-title {
  margin-bottom: 7px;

  font-size: 9px;
  font-weight: 800;

  color: #374151;
}

.demo-item {
  position: relative;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 7px;

  margin-bottom: 6px;

  background: white;

  border:
    1px solid #e9edf2;

  border-radius: 9px;

  box-shadow:
    0 2px 5px rgba(15, 23, 42, 0.025);
}

.demo-item-image {
  width: 43px;
  height: 43px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 7px;

  font-size: 20px;
}

.item-image-one {
  background:
    linear-gradient(
      145deg,
      #e9eef4,
      #d9e1eb
    );
}

.item-image-two {
  background:
    linear-gradient(
      145deg,
      #eef2f5,
      #dfe5ea
    );
}

.item-image-three {
  background:
    linear-gradient(
      145deg,
      #eee8df,
      #ddd3c5
    );
}

.demo-item-info {
  min-width: 0;

  padding-right: 17px;
}

.demo-item-info strong {
  display: block;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  font-size: 9px;

  color: #1f2937;
}

.demo-item-info span {
  display: block;

  margin-top: 2px;

  font-size: 7px;

  color: #7b8491;
}

.demo-item-info b {
  display: block;

  margin-top: 4px;

  font-size: 9px;

  color: var(--blue);
}

.ai-check {
  position: absolute;

  right: 7px;
  top: 7px;

  width: 15px;
  height: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e4f8f5;

  color: #159e92;

  font-size: 8px;
  font-weight: 800;
}

.demo-bottom-button {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 5px;

  margin-top: 9px;

  padding: 9px;

  border-radius: 8px;

  background: var(--gradient);

  color: white;

  font-size: 9px;
  font-weight: 700;
}

.demo-bottom-button span {
  font-size: 12px;
}

.floating-card {
  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 9px;

  background: white;

  border: 1px solid #edf0f4;

  border-radius: 12px;

  padding: 11px 13px;

  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.12);
}

.floating-card strong {
  display: block;

  font-size: 11px;
}

.floating-card small {
  display: block;

  margin-top: 3px;

  color: #7b8491;

  font-size: 9px;
}

.floating-card-top {
  top: 78px;
  left: 10px;
}

.floating-icon {
  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background:
    #eef2ff;

  font-size: 15px;
}

.floating-card-bottom {
  bottom: 55px;
  right: 0;

  min-width: 205px;
}

.sale-mini-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background:
    rgba(255, 217, 61, 0.25);

  color: #9b7700;

  font-size: 15px;
  font-weight: 800;
}

.up-arrow {
  margin-left: auto;

  color: #16a34a;

  font-size: 18px;
}


/* =========================================================
   VALUE STRIP
========================================================= */

.value-strip {
  position: relative;

  z-index: 10;

  background: white;

  border-top:
    1px solid #edf0f4;

  border-bottom:
    1px solid #edf0f4;

  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.035);
}

.value-strip-inner {
  width: min(1050px, calc(100% - 40px));

  margin: 0 auto;

  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.value-point {
  display: flex;

  align-items: center;

  gap: 10px;
}

.value-point > span {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #f3f6fa;

  font-size: 18px;
}

.value-point strong {
  display: block;

  font-size: 13px;
}

.value-point small {
  display: block;

  margin-top: 3px;

  font-size: 10px;

  color: #7b8491;
}

.value-arrow {
  color: #c5cbd4;

  font-size: 20px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 100px 0;
}

.section-inner {
  width: min(1080px, calc(100% - 40px));

  margin: 0 auto;
}

.section-heading {
  max-width: 620px;

  margin-bottom: 55px;
}

.section-heading.centered {
  max-width: 700px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-label {
  display: inline-block;

  margin-bottom: 13px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.section-heading h2 {
  margin: 0;

  font-size: clamp(34px, 4vw, 48px);

  line-height: 1.08;

  letter-spacing: -1.8px;
}

.section-heading h2 span {
  color: var(--blue);
}

.section-heading p {
  margin: 18px auto 0;

  max-width: 650px;

  color: var(--text-soft);

  font-size: 16px;

  line-height: 1.65;
}


/* =========================================================
   PROBLEM / FEATURES
========================================================= */

.problem-section {
  background: #ffffff;
}

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.feature-card {
  padding: 30px;

  background: #ffffff;

  border:
    1px solid #e8ecf2;

  border-radius: 16px;

  box-shadow:
    0 5px 18px rgba(15, 23, 42, 0.04);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 15px 35px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  margin-bottom: 21px;

  font-size: 23px;
}

.blue-icon {
  background: rgba(30, 98, 255, 0.09);
}

.teal-icon {
  background: rgba(44, 211, 196, 0.12);
}

.yellow-icon {
  background: rgba(255, 217, 61, 0.20);
}

.feature-card h3 {
  margin: 0;

  font-size: 18px;
}

.feature-card p {
  margin: 11px 0 0;

  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.65;
}

.featured-feature {
  border-color:
    rgba(44, 211, 196, 0.30);

  box-shadow:
    0 10px 35px rgba(44, 211, 196, 0.07);
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
  background:
    #f6f9fc;
}

.steps {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 16px;
}

.step {
  display: flex;

  gap: 20px;

  padding: 25px;

  background: white;

  border:
    1px solid #e7ebf1;

  border-radius: 14px;
}

.step-number {
  flex-shrink: 0;

  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background:
    rgba(30, 98, 255, 0.08);

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;
}

.step-content h3 {
  margin: 2px 0 7px;

  font-size: 16px;
}

.step-content p {
  margin: 0;

  color: var(--text-soft);

  font-size: 13px;

  line-height: 1.6;
}


/* =========================================================
   SELLING SECTION
========================================================= */

.selling-section {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #142b68 0%,
      #174a93 48%,
      #137c83 100%
    );

  color: white;
}

.selling-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;
  top: -200px;

  border-radius: 50%;

  background:
    rgba(44, 211, 196, 0.16);

  filter: blur(20px);
}

.selling-inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    0.95fr
    1.05fr;

  gap: 70px;

  align-items: center;
}

.light-label {
  color: #73e6dc;
}

.selling-copy h2 {
  margin: 0;

  font-size: clamp(35px, 4vw, 52px);

  line-height: 1.06;

  letter-spacing: -2px;
}

.selling-copy h2 span {
  color: #73e6dc;
}

.selling-big-copy {
  margin: 22px 0 8px;

  font-size: 20px;

  line-height: 1.4;
}

.selling-copy > p:not(.selling-big-copy) {
  margin: 0 0 20px;

  max-width: 510px;

  color: rgba(255,255,255,0.76);

  font-size: 14px;

  line-height: 1.7;
}

.selling-button {
  margin-top: 13px;

  padding: 14px 20px;

  background: white;

  color: #174b91;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.16);
}

.selling-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 30px rgba(0,0,0,0.22);
}


/* =========================================================
   SALE WINDOW
========================================================= */

.selling-visual {
  display: flex;

  justify-content: center;
}

.sale-window {
  width: 100%;
  max-width: 475px;

  overflow: hidden;

  border-radius: 15px;

  background: white;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.25);

  color: #111827;

  transform:
    rotate(-1.5deg);
}

.sale-window-header {
  height: 36px;

  display: flex;
  align-items: center;

  gap: 5px;

  padding: 0 14px;

  background: #f0f3f7;

  border-bottom:
    1px solid #e1e6ec;
}

.window-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #cbd1d8;
}

.window-title {
  margin-left: 8px;

  color: #89919c;

  font-size: 9px;
}

.sale-content {
  padding: 23px;
}

.sale-title-row {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;
}

.sale-title-row small {
  color: var(--blue);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1px;
}

.sale-title-row h3 {
  margin: 4px 0 0;

  font-size: 21px;
}

.sale-total {
  padding: 6px 9px;

  border-radius: 7px;

  background:
    #eef3ff;

  color: var(--blue);

  font-size: 9px;
  font-weight: 700;
}

.sale-progress {
  margin-top: 22px;
}

.progress-label {
  display: flex;

  justify-content: space-between;

  margin-bottom: 7px;

  font-size: 9px;

  color: #6b7280;
}

.progress-label strong {
  color: #374151;
}

.progress-bar {
  width: 100%;
  height: 7px;

  overflow: hidden;

  border-radius: 999px;

  background: #e8edf3;
}

.progress-fill {
  width: 63%;
  height: 100%;

  border-radius: inherit;

  background: var(--gradient);
}

.sale-items {
  margin-top: 19px;
}

.sale-item {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 9px 0;

  border-bottom:
    1px solid #edf0f4;

  font-size: 10px;
}

.sale-thumb {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 7px;

  background: #f3f5f8;

  font-size: 15px;
}

.sale-item strong {
  margin-left: auto;

  color: var(--blue);
}

.sale-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-top: 17px;

  padding-top: 14px;

  border-top:
    1px solid #e5e9ef;
}

.sale-footer span {
  color: #7b8491;

  font-size: 10px;
}

.sale-footer strong {
  font-size: 19px;

  color: #111827;
}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {
  background: white;
}

.audience-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;
}

.audience-card {
  padding: 24px;

  border:
    1px solid #e7ebf0;

  border-radius: 14px;

  background: #ffffff;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(15,23,42,0.07);
}

.audience-emoji {
  margin-bottom: 18px;

  font-size: 28px;
}

.audience-card h3 {
  margin: 0;

  font-size: 16px;
}

.audience-card p {
  margin: 9px 0 0;

  color: var(--text-soft);

  font-size: 12px;

  line-height: 1.6;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-section {
  background: #f5f8fc;
}

.pricing-card {
  display: grid;

  grid-template-columns:
    1fr
    300px;

  gap: 40px;

  align-items: center;

  padding: 45px;

  border:
    1px solid #e2e8f0;

  border-radius: 20px;

  background: white;

  box-shadow:
    0 15px 40px rgba(15,23,42,0.06);
}

.pricing-copy h2 {
  margin: 0;

  font-size: 38px;

  letter-spacing: -1.5px;

  line-height: 1.1;
}

.pricing-copy p {
  max-width: 580px;

  margin: 14px 0 0;

  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.65;
}

.pricing-offer {
  text-align: center;

  padding: 25px;

  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      #f4f8ff,
      #f0fbfa
    );

  border:
    1px solid #e2ebf4;
}

.offer-badge {
  display: inline-block;

  padding: 5px 9px;

  border-radius: 999px;

  background:
    rgba(255, 217, 61, 0.30);

  color: #856900;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 0.7px;
}

.offer-price {
  margin-top: 8px;

  font-size: 48px;
  font-weight: 800;

  letter-spacing: -2px;
}

.offer-description {
  margin-top: -4px;

  color: #6b7280;

  font-size: 10px;
}

.pricing-button {
  width: 100%;

  margin-top: 17px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #edf5ff,
      #effcfb
    );

  text-align: center;

  padding: 110px 20px;
}

.final-glow {
  position: absolute;

  width: 400px;
  height: 400px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    rgba(44,211,196,0.12);

  filter: blur(30px);
}

.final-inner {
  position: relative;
  z-index: 2;

  max-width: 650px;

  margin: 0 auto;
}

.final-icon {
  width: 50px;
  height: 50px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: white;

  box-shadow:
    0 8px 20px rgba(15,23,42,0.08);

  font-size: 22px;
}

.final-inner h2 {
  margin: 0;

  font-size: clamp(37px, 5vw, 55px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.final-inner h2 span {
  color: var(--blue);
}

.final-inner p {
  margin: 17px auto 27px;

  max-width: 540px;

  color: var(--text-soft);

  font-size: 16px;

  line-height: 1.65;
}

.final-button {
  padding: 15px 23px;

  color: white;

  background: var(--gradient);

  box-shadow:
    0 12px 28px rgba(30,98,255,0.20);
}

.final-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 17px 35px rgba(30,98,255,0.27);
}

.final-inner small {
  display: block;

  margin-top: 13px;

  color: #7b8491;

  font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

.landing-footer {
  background: white;

  border-top:
    1px solid #e7ebf0;
}

.footer-inner {
  width: min(1080px, calc(100% - 40px));

  min-height: 110px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}

.footer-brand {
  display: flex;
  align-items: center;

  gap: 12px;
}

.footer-brand img {
  width: auto;
  height: 45px;
}

.footer-brand p {
  margin: 0;

  color: #7b8491;

  font-size: 11px;
}

.footer-links {
  display: flex;

  gap: 20px;
}

.footer-links a {
  color: #687384;

  font-size: 11px;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-copy {
  color: #9aa2ad;

  font-size: 10px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes phoneFloat {

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

  50% {
    transform:
      rotate(2deg)
      translateY(-7px);
  }

}

.phone {
  animation:
    phoneFloat 5s ease-in-out infinite;
}

.floating-card-top {
  animation:
    floatTop 4s ease-in-out infinite;
}

@keyframes floatTop {

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

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

}

.floating-card-bottom {
  animation:
    floatBottom 4.5s ease-in-out infinite;
}

@keyframes floatBottom {

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

  50% {
    transform: translateY(6px);
  }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .hero-inner {
    grid-template-columns:
      1fr
      1fr;

    gap: 20px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-visual {
    transform: scale(0.9);
  }

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

  .selling-inner {
    gap: 35px;
  }

}


@media (max-width: 780px) {

  .header-inner {
    height: 70px;

    width: min(
      100% - 28px,
      600px
    );
  }

  .brand-logo {
    height: 56px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;

    top: 70px;
    left: 14px;
    right: 14px;

    display: none;

    flex-direction: column;

    padding: 8px;

    background: white;

    border:
      1px solid #e3e7ed;

    border-radius: 12px;

    box-shadow:
      0 15px 35px rgba(15,23,42,0.12);
  }

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

  .mobile-menu a {
    padding: 13px 14px;

    border-radius: 8px;

    color: #374151;

    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: #f4f7fa;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: 5px;

    color: white;

    text-align: center;

    background: var(--gradient);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(
      100% - 30px,
      600px
    );

    padding-top: 115px;
    padding-bottom: 45px;

    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-pill {
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 57px);

    letter-spacing: -2px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;

    font-size: 16px;
  }

  .hero-actions {
    justify-content: center;

    flex-wrap: wrap;
  }

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

  .hero-visual {
    height: 520px;

    transform: none;

    margin-top: 15px;
  }

  .phone {
    width: 275px;
    height: 515px;
  }

  .floating-card-top {
    left: 3%;
    top: 55px;
  }

  .floating-card-bottom {
    right: 1%;
    bottom: 35px;
  }

  .value-strip-inner {
    overflow-x: auto;

    justify-content: flex-start;

    gap: 20px;

    padding: 15px 0;

    min-height: auto;
  }

  .value-point {
    flex-shrink: 0;
  }

  .value-arrow {
    flex-shrink: 0;
  }

  .section {
    padding: 75px 0;
  }

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

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

  .selling-inner {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .selling-copy > p:not(.selling-big-copy) {
    margin-left: auto;
    margin-right: auto;
  }

  .selling-button {
    margin-left: auto;
    margin-right: auto;
  }

  .selling-visual {
    margin-top: 10px;
  }

  .pricing-card {
    grid-template-columns: 1fr;

    padding: 30px;

    text-align: center;
  }

  .pricing-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-offer {
    max-width: 340px;

    width: 100%;

    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;

    justify-content: center;

    padding: 30px 0;

    text-align: center;
  }

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

}


@media (max-width: 500px) {

  .hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-visual {
    height: 485px;
  }

  .phone {
    width: 250px;
    height: 470px;

    border-radius: 35px;
  }

  .phone-screen {
    border-radius: 28px;

    padding-top: 27px;
  }

  .floating-card {
    transform: scale(0.88);
  }

  .floating-card-top {
    left: -7px;
  }

  .floating-card-bottom {
    right: -12px;
  }

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

  .section-inner {
    width: min(
      100% - 30px,
      600px
    );
  }

  .pricing-card {
    padding: 25px 18px;
  }

  .pricing-copy h2 {
    font-size: 32px;
  }

}