/* TAXIFLOW-STYLE HOMEPAGE FOR LINKOPINGSLIVS.SE */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #02060c;
  color: #fff;
  overflow-x: hidden;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 40px 100px;
  background:
    radial-gradient(circle at 20% 30%, #0b1c2c, transparent 60%),
    radial-gradient(circle at 80% 70%, #0f2436, transparent 60%),
    #02060c;
}

.hero-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  max-width: 620px;
}

.hero-insight {
  font-size: 14px;
  opacity: 0.55;
  margin-bottom: 14px;
}

.hero-left h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-left h1 span {
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.78;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
  font-size: 16px;
}

.hero-benefits div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  transition: all 0.28s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,122,0,0.30);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.btn-large {
  min-height: 56px;
  padding: 16px 30px;
}

.hero-proof {
  font-size: 13px;
  opacity: 0.5;
}

/* RIGHT */
.hero-right {
  position: relative;
}

.phone-stack {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 520px;
  margin: auto;
}

.phone-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.92) translateY(80px);
  transition: all 0.7s ease;
}

.phone-item.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 3;
}

.phone-item.prev {
  opacity: 0.18;
  transform: translateX(-120px) scale(0.9);
  z-index: 1;
}

.phone-item.next {
  opacity: 0.18;
  transform: translateX(120px) scale(0.9);
  z-index: 1;
}

.phone {
  width: 100%;
  min-height: 440px;
  border-radius: 30px;
  box-shadow:
    0 40px 120px rgba(0,0,0,0.9),
    0 0 60px rgba(255,122,0,0.15);
}

.mock-phone {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(255,122,0,0.14), transparent 28%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.mock-screen-label,
.mock-preview-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,122,0,0.14);
  border: 1px solid rgba(255,122,0,0.28);
  color: #ffb26a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mock-phone h3 {
  margin: 16px 0 16px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.mock-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.mock-chip-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.84);
}

.mock-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 12px;
}

.w-95 { width: 95%; }
.w-90 { width: 90%; }
.w-88 { width: 88%; }
.w-78 { width: 78%; }
.w-72 { width: 72%; }

.mock-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.mock-card-cell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 700;
}

.mock-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mock-list div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.mock-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.mock-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.mock-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.mock-stat span {
  display: block;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  font-size: 14px;
}

.feature-display {
  margin-top: 20px;
  min-height: 120px;
  position: relative;
}

.feature-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  text-align: center;
}

.feature-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-slide h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.feature-slide p {
  font-size: 15px;
  opacity: 0.7;
  max-width: 420px;
  margin: auto;
  line-height: 1.6;
}

/* SYSTEM OVERVIEW */
.system-overview {
  padding: 120px 40px;
  background: radial-gradient(circle at 50% 20%, #081421, #02060c);
}

.section-container {
  max-width: 1300px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: clamp(34px, 4vw, 42px);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-header p {
  opacity: 0.72;
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
  margin: auto;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.system-card {
  display: block;
  color: #fff;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  backdrop-filter: blur(20px);
}

.system-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,0,0.4);
}

.system-image {
  background: #000;
  padding: 20px;
}

.mock-preview,
.step-mock {
  border-radius: 18px;
  padding: 22px;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(255,122,0,0.12), transparent 30%);
  border: 1px solid rgba(255,255,255,0.08);
}

.mock-preview h4,
.step-mock h4 {
  font-size: 28px;
  margin: 18px 0 16px;
  letter-spacing: -0.03em;
}

.system-content {
  padding: 22px;
}

.system-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.system-content p {
  font-size: 14px;
  opacity: 0.72;
  margin-bottom: 10px;
  line-height: 1.7;
}

.system-content span {
  font-size: 13px;
  color: #ff7a00;
}

/* CUSTOMER GROWTH / TASTE OF HOME */
.customer-growth {
  padding: 120px 40px;
  background: radial-gradient(circle at 30% 20%, #091726, #02060c);
}

.growth-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.growth-left h2 {
  font-size: clamp(36px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.growth-left h2 span {
  color: #ff7a00;
}

.growth-sub {
  font-size: 17px;
  opacity: 0.75;
  margin-bottom: 30px;
  line-height: 1.75;
}

.growth-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 15px;
  opacity: 0.74;
}

.growth-points div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.growth-points.good {
  opacity: 1;
}

.growth-points.good div {
  color: #ffb26a;
}

.growth-visual {
  border-radius: 24px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(255,122,0,0.12), transparent 30%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
}

.growth-visual-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.growth-visual-tag {
  display: inline-flex;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,122,0,0.14);
  border: 1px solid rgba(255,122,0,0.28);
  color: #ffb26a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.growth-visual-card h3 {
  margin: 16px 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.growth-visual-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.growth-meter {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.growth-meter-row {
  display: grid;
  gap: 8px;
}

.growth-meter-row span {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.growth-meter-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.growth-meter-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
}

.growth-caption {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.5;
  text-align: center;
}

/* HOW */
.how-it-works {
  padding: 120px 40px;
  background: radial-gradient(circle at 50% 10%, #0b1c2c, #02060c);
}

.how-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.how-header {
  margin-bottom: 70px;
}

.how-header h2 {
  font-size: clamp(34px, 4vw, 42px);
  margin-bottom: 10px;
}

.how-header p {
  font-size: 16px;
  opacity: 0.72;
  line-height: 1.7;
  max-width: 760px;
  margin: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,0,0.4);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 20px;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
}

.step-image {
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  opacity: 0.72;
  line-height: 1.7;
}

/* BEFORE/AFTER */
.before-after {
  padding: 120px 40px;
  background: radial-gradient(circle at 50% 20%, #081421, #02060c);
}

.ba-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ba-header {
  margin-bottom: 60px;
}

.ba-header h2 {
  font-size: clamp(34px, 4vw, 42px);
  margin-bottom: 10px;
}

.ba-header p {
  font-size: 16px;
  opacity: 0.72;
  line-height: 1.7;
  max-width: 780px;
  margin: auto;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ba-card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}

.ba-card.before {
  border-color: rgba(255, 80, 80, 0.22);
}

.ba-card.before h3 {
  color: #ff5c5c;
}

.ba-card.after {
  border-color: rgba(255,122,0,0.30);
}

.ba-card.after h3 {
  color: #ff7a00;
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.ba-highlight {
  margin-top: 50px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.7;
}

.ba-highlight strong {
  color: #ff7a00;
}

/* PRICING STYLE */
.pricing-section {
  padding: 120px 40px;
  background:
    radial-gradient(circle at top center, rgba(255, 122, 0, 0.10), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #07111d 0%, #04080f 100%);
  position: relative;
  overflow: hidden;
}

.pricing-shell {
  max-width: 1320px;
  margin: 0 auto;
}

.pricing-top {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #ff9a3d;
  margin-bottom: 18px;
}

.pricing-top h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.pricing-intro {
  max-width: 760px;
  margin: 0 auto 12px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

.pricing-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}

.pricing-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.pricing-launch {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  margin: 0 auto 42px;
}

.pricing-launch-left,
.pricing-launch-right {
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.pricing-launch-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ff9a3d;
}

.pricing-launch-left h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 42px);
  color: #ffffff;
  letter-spacing: -0.03em;
}

.pricing-launch-left p,
.pricing-launch-right p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

.pricing-launch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.14);
  border: 1px solid rgba(255, 122, 0, 0.30);
  color: #ffb26a;
  font-size: 13px;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pricing-plan:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 28px 70px rgba(0,0,0,0.30);
}

.pricing-plan-featured {
  background:
    radial-gradient(circle at top, rgba(255,122,0,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255, 140, 45, 0.50);
  transform: translateY(-8px);
}

.pricing-plan-featured:hover {
  transform: translateY(-14px);
  border-color: rgba(255, 140, 45, 0.68);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a00, #ff9d2f);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(255,122,0,0.35);
}

.pricing-plan-head {
  margin-bottom: 20px;
}

.pricing-plan-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 700;
}

.pricing-plan h3 {
  margin: 0 0 12px;
  font-size: 25px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.pricing-price.pricing-word {
  font-size: 30px;
}

.pricing-period {
  font-size: 15px;
  color: rgba(255,255,255,0.56);
  padding-bottom: 4px;
}

.pricing-plan-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.pricing-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9a3d;
  font-weight: 700;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
}

.pricing-btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ff9e33);
  color: #ffffff;
  border: none;
  box-shadow: 0 16px 36px rgba(255,122,0,0.28);
}

.pricing-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.pricing-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-top: 40px;
}

.pricing-bottom-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-bottom-card-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

.pricing-bottom-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  color: #ffffff;
}

.pricing-bottom-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.pricing-bottom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-bottom-list span {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.84);
}

.pricing-final-line {
  margin-top: 28px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.80);
}

.pricing-final-line strong {
  color: #ffffff;
}

/* FINAL CTA */
.final-cta {
  padding: 140px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,122,0,0.15), transparent 60%),
    radial-gradient(circle at 50% 80%, #081421, #02060c);
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.final-cta h2 {
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 35px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.cta-trust {
  font-size: 14px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-launch,
  .pricing-bottom {
    grid-template-columns: 1fr;
  }

  .pricing-plan-featured {
    transform: none;
  }

  .pricing-plan-featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .hero-container,
  .growth-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left,
  .growth-left {
    max-width: none;
  }

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

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

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

@media (max-width: 900px) {
  .hero {
    padding: 96px 20px 72px;
  }

  .system-overview,
  .customer-growth,
  .how-it-works,
  .before-after,
  .pricing-section,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .phone-stack {
    height: 460px;
  }

  .feature-slide h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 92px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-subtitle,
  .cta-sub,
  .pricing-intro,
  .growth-sub {
    font-size: 16px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .hero-buttons a,
  .cta-buttons a {
    width: 100%;
  }

  .mock-card-grid,
  .mock-stat-row {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    height: 430px;
  }

  .mock-phone {
    padding: 20px;
    min-height: 390px;
  }

  .pricing-section {
    padding: 90px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-launch-left,
  .pricing-launch-right,
  .pricing-plan,
  .pricing-bottom-card,
  .step-card,
  .system-card,
  .ba-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .pricing-price {
    font-size: 34px;
  }

  .pricing-final-line {
    font-size: 16px;
  }

  .final-cta {
    padding: 90px 20px;
  }
}
