:root {
  --navy: #0b1e39;
  --navy-light: #173756;
  --orange: #ff671d;
  --orange-dark: #e85006;
  --ink: #13243d;
  --text: #68778b;
  --line: #e1e8f0;
  --cloud: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(9, 29, 53, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(225, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 38px rgba(15, 35, 60, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 9px;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 48px;
  height: 43px;
  overflow: hidden;
}

.brand-symbol img {
  position: absolute;
  top: -5px;
  left: -51px;
  width: 171px;
  max-width: none;
}

.brand-name {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-name span {
  color: var(--orange);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a,
.login-link {
  position: relative;
  color: #42536a;
  font-size: 0.86rem;
  font-weight: 500;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 20px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.login-link:hover {
  color: var(--navy);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions {
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--orange);
  padding: 0 24px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(255, 103, 29, 0.25);
  transition: 0.2s ease;
}

.button:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 32px rgba(255, 103, 29, 0.3);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 46px;
  border-radius: 12px;
  padding-inline: 20px;
  font-size: 0.82rem;
}

.button-outline {
  border-color: #d9e1ea;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(17, 39, 66, 0.07);
}

.button-outline:hover {
  border-color: #bdc9d6;
  background: #f8fafc;
  box-shadow: 0 14px 28px rgba(17, 39, 66, 0.1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: var(--cloud);
  color: var(--navy);
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
  margin: auto;
}

.icon-close {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 92px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 103, 29, 0.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 64%, #f6f8fb 100%);
}

.hero::after {
  position: absolute;
  right: -210px;
  bottom: -340px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 103, 29, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-ring {
  position: absolute;
  border: 1px dashed rgba(255, 103, 29, 0.16);
  border-radius: 50%;
}

.hero-ring-one {
  top: 160px;
  right: 8vw;
  width: 520px;
  height: 520px;
}

.hero-ring-two {
  top: 235px;
  right: 13vw;
  width: 360px;
  height: 360px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.83fr) minmax(600px, 1.17fr);
  align-items: center;
  gap: 54px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
}

.hero h1 {
  max-width: 660px;
  margin: 20px 0 24px;
  color: var(--navy);
  font-size: clamp(3rem, 4.6vw, 4.65rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 span {
  position: relative;
  color: var(--orange);
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 4px;
  height: 8px;
  border-radius: 20px;
  background: var(--orange);
  content: "";
  opacity: 0.14;
}

.hero-description {
  max-width: 585px;
  margin: 0;
  color: var(--text);
  font-size: 1.03rem;
  line-height: 1.78;
}

.hero-actions {
  margin-top: 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
  color: #718095;
  font-size: 0.74rem;
  font-weight: 500;
}

.trust-list span::first-letter {
  color: var(--orange);
}

.product-stage {
  position: relative;
  height: 595px;
  margin-right: -140px;
  perspective: 1400px;
}

.product-stage::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 590px;
  height: 500px;
  border-radius: 42%;
  background: radial-gradient(circle, rgba(255, 103, 29, 0.18), transparent 68%);
  content: "";
  filter: blur(30px);
}

.dashboard-window {
  position: absolute;
  top: 44px;
  right: 10px;
  width: 765px;
  overflow: hidden;
  border: 7px solid #122a47;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 40px 80px rgba(9, 29, 53, 0.2), 0 12px 28px rgba(9, 29, 53, 0.13);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center right;
}

.browser-bar {
  display: grid;
  height: 42px;
  grid-template-columns: 86px 1fr 64px;
  align-items: center;
  border-bottom: 1px solid #e6ebf1;
  background: #f9fbfd;
  padding: 0 15px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9e0e9;
}

.browser-dots i:first-child {
  background: var(--orange);
}

.browser-address {
  justify-self: center;
  width: 260px;
  border-radius: 7px;
  background: #edf2f7;
  padding: 5px 10px;
  color: #8b98a9;
  font-size: 0.52rem;
  text-align: center;
}

.avatar {
  display: grid;
  width: 24px;
  height: 24px;
  justify-self: end;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 0.48rem;
  font-weight: 700;
}

.dashboard-layout {
  display: grid;
  height: 449px;
  grid-template-columns: 126px 1fr;
  background: var(--cloud);
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--navy);
  padding: 20px 12px 15px;
  color: white;
}

.dashboard-sidebar strong {
  margin: 0 5px 20px;
  font-size: 0.7rem;
}

.dashboard-sidebar strong span {
  color: var(--orange);
}

.dashboard-sidebar a {
  border-radius: 7px;
  padding: 8px 9px;
  color: #aab8c8;
  font-size: 0.52rem;
}

.dashboard-sidebar a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.dashboard-sidebar small {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 5px 0;
  color: #aab8c8;
  font-size: 0.48rem;
}

.dashboard-main {
  min-width: 0;
  padding: 24px 25px;
}

.dashboard-heading,
.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-heading small,
.card-heading small {
  color: #8997a8;
  font-size: 0.5rem;
}

.dashboard-heading h2 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.dashboard-tools {
  color: #6e7d90;
  font-size: 0.85rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.95fr;
  gap: 10px;
  margin-top: 17px;
}

.kpi {
  border: 1px solid #e4eaf1;
  border-radius: 11px;
  background: white;
  padding: 13px 14px;
  box-shadow: 0 8px 20px rgba(17, 39, 66, 0.04);
}

.kpi span,
.kpi strong,
.kpi small {
  display: block;
}

.kpi span {
  color: #748398;
  font-size: 0.52rem;
}

.kpi strong {
  margin: 4px 0 6px;
  color: var(--navy);
  font-size: 0.95rem;
}

.kpi small {
  color: #1d9a66;
  font-size: 0.46rem;
}

.kpi-featured {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), #ff8b50);
}

.kpi-featured span,
.kpi-featured strong,
.kpi-featured small {
  color: white;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 11px;
  margin-top: 11px;
}

.chart-card,
.orders-card {
  min-width: 0;
  border: 1px solid #e4eaf1;
  border-radius: 12px;
  background: white;
  padding: 14px;
}

.card-heading span small,
.card-heading span strong {
  display: block;
}

.card-heading strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.72rem;
}

.chart {
  height: 165px;
  margin-top: 8px;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 35px, #eef2f6 36px);
}

.chart svg {
  width: 100%;
  height: 140px;
}

.chart-fill {
  fill: url(#chart-fill);
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #8b98aa;
  font-size: 0.42rem;
}

.live {
  border-radius: 30px;
  background: #eaf8f1;
  padding: 4px 7px;
  color: #168258 !important;
}

.order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 7px;
  border-bottom: 1px solid #eef2f6;
  padding: 13px 0;
  font-size: 0.48rem;
}

.order span {
  grid-row: 2;
  color: #8a97a7;
}

.order em {
  grid-column: 2;
  grid-row: 1;
  border-radius: 20px;
  background: #fff2e9;
  padding: 3px 6px;
  color: #d94f09;
  font-style: normal;
}

.order em.new {
  background: #eaf3ff;
  color: #2d6ca8;
}

.order em.ready {
  background: #eaf8f1;
  color: #168258;
}

.order small {
  grid-column: 2;
  grid-row: 2;
  color: #8a97a7;
}

.floating-result {
  position: absolute;
  z-index: 8;
  top: 14px;
  right: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  padding: 12px 15px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(9, 29, 53, 0.16);
  animation: float 4.5s ease-in-out infinite;
}

.floating-result svg {
  width: 17px;
  color: var(--orange);
}

.phone-window {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 8px;
  width: 187px;
  min-height: 385px;
  border: 6px solid var(--navy);
  border-radius: 27px;
  background: #f5f8fc;
  padding: 27px 13px 11px;
  box-shadow: 0 28px 55px rgba(9, 29, 53, 0.28);
  transform: rotate(2deg);
}

.phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 58px;
  height: 11px;
  border-radius: 20px;
  background: var(--navy);
  transform: translateX(-50%);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #748398;
}

.phone-header b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--orange);
  color: white;
}

.phone-window > small {
  color: #8a98a9;
  font-size: 0.48rem;
}

.phone-window h3 {
  margin: 2px 0 11px;
  color: var(--navy);
  font-size: 0.85rem;
}

.phone-total {
  border-radius: 13px;
  background: linear-gradient(145deg, var(--navy), #173b62);
  padding: 13px;
  color: white;
}

.phone-total small,
.phone-total strong,
.phone-total span {
  display: block;
}

.phone-total small {
  color: #b8c7d8;
  font-size: 0.46rem;
}

.phone-total strong {
  margin: 3px 0 7px;
  font-size: 0.84rem;
}

.phone-total span {
  color: #ff9f69;
  font-size: 0.44rem;
}

.phone-tabs {
  display: flex;
  gap: 14px;
  margin: 14px 0 5px;
  border-bottom: 1px solid #e2e8f0;
  color: #8795a6;
  font-size: 0.48rem;
}

.phone-tabs b,
.phone-tabs span {
  padding-bottom: 6px;
}

.phone-tabs b {
  border-bottom: 2px solid var(--orange);
  color: var(--navy);
}

.phone-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px;
  margin-top: 7px;
  border-radius: 9px;
  background: white;
  padding: 9px;
  box-shadow: 0 6px 15px rgba(15, 35, 60, 0.05);
}

.phone-order b {
  grid-column: 1 / -1;
  font-size: 0.45rem;
}

.phone-order span,
.phone-order strong {
  color: #7a899b;
  font-size: 0.41rem;
  font-weight: 500;
}

.phone-order strong {
  color: var(--orange-dark);
  font-weight: 700;
}

.phone-nav {
  margin-top: 10px;
  border-top: 1px solid #e2e8f0;
  padding-top: 9px;
  color: #9aa7b7;
  font-size: 0.72rem;
  text-align: center;
}

.features {
  position: relative;
  padding: 112px 0 120px;
  background: white;
}

.features::before {
  position: absolute;
  top: 58px;
  left: -70px;
  width: 180px;
  height: 180px;
  border: 34px solid #fff3ec;
  border-radius: 50%;
  content: "";
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  margin: 15px auto 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: auto;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid #e4e9f0;
  border-radius: var(--radius);
  background: white;
  padding: 26px;
  box-shadow: 0 15px 35px rgba(13, 35, 61, 0.05);
  transition: 0.22s ease;
}

.feature-card::after {
  position: absolute;
  right: -42px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 17px solid #f3f6fa;
  border-radius: 50%;
  content: "";
}

.feature-card:hover {
  border-color: #d5dee8;
  box-shadow: 0 22px 45px rgba(13, 35, 61, 0.1);
  transform: translateY(-6px);
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: #edf2f8;
  color: var(--navy);
  font-size: 1.4rem;
}

.feature-orange .feature-icon {
  background: #fff0e8;
  color: var(--orange);
}

.feature-card > small {
  position: absolute;
  top: 28px;
  right: 27px;
  color: #dce3eb;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 25px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.68;
}

.feature-card a {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 26px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-orange a,
.feature-card a:hover {
  color: var(--orange-dark);
}

.impact {
  padding: 24px 0 112px;
  background: linear-gradient(180deg, white, var(--cloud));
}

.impact-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  color: white;
  box-shadow: 0 28px 65px rgba(7, 25, 48, 0.18);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics > div {
  display: flex;
  min-height: 126px;
  align-items: center;
  gap: 17px;
  padding: 28px 36px;
}

.metrics > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics strong {
  color: var(--orange);
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.metrics span {
  max-width: 130px;
  color: #bdc8d6;
  font-size: 0.76rem;
  line-height: 1.5;
}

.impact-cta {
  display: flex;
  min-height: 288px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 50px 66px;
}

.impact-cta .eyebrow {
  color: #ff9d67;
}

.impact-cta h2 {
  margin: 13px 0 11px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.045em;
}

.impact-cta > div > p:last-child {
  max-width: 570px;
  margin: 0;
  color: #bdc8d6;
  font-size: 0.92rem;
  line-height: 1.7;
}

.impact-cta .button {
  flex: none;
}

.site-footer {
  background: #07162b;
  padding: 76px 0 24px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.68fr) 1fr;
  gap: 42px;
}

.site-footer .brand-name {
  color: white;
}

.footer-brand > p {
  max-width: 310px;
  margin: 22px 0 24px;
  color: #98a8ba;
  font-size: 0.8rem;
  line-height: 1.72;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #b6c2d0;
  font-size: 0.72rem;
  font-weight: 700;
}

.social-links a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  margin: 5px 0 7px;
  font-size: 0.77rem;
}

.footer-column a,
.footer-column span {
  color: #94a4b7;
  font-size: 0.73rem;
  line-height: 1.5;
}

.footer-column a:hover {
  color: #ff9560;
}

.availability {
  margin-top: 5px;
  border-radius: 30px;
  background: rgba(43, 182, 124, 0.1);
  padding: 7px 10px;
  color: #7ed6ad !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  color: #788a9f;
  font-size: 0.66rem;
}

@keyframes float {
  50% { transform: translateY(-8px); }
}

@media (max-width: 1180px) {
  .container { width: min(100% - 40px, 1060px); }
  .main-nav { gap: 20px; }
  .hero-grid { grid-template-columns: minmax(330px, 0.8fr) minmax(520px, 1.2fr); gap: 25px; }
  .hero h1 { font-size: clamp(2.85rem, 5vw, 3.8rem); }
  .product-stage { height: 550px; margin-right: -170px; transform: scale(0.92); transform-origin: left center; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 0.65fr) 0.9fr; gap: 25px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 70px; }
  .header-actions { display: none; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] .icon-menu { display: none; }
  .menu-button[aria-expanded="true"] .icon-close { display: block; }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    background: white;
    padding: 8px 24px 20px;
    box-shadow: 0 22px 40px rgba(15, 35, 60, 0.1);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { border-bottom: 1px solid #edf1f5; padding: 15px 2px; }
  .main-nav a::after { display: none; }

  .hero { padding: 80px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 720px; margin: auto; text-align: center; }
  .hero-description { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .product-stage { width: min(100%, 820px); height: 525px; margin: auto; transform: none; }
  .dashboard-window { right: 24px; left: 0; width: auto; }
  .phone-window { right: 3px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-cta { padding: 48px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-brand, .footer-column:last-child { grid-column: span 2; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 560px); }
  .brand-symbol { width: 43px; height: 39px; }
  .brand-symbol img { top: -4px; left: -46px; width: 155px; }
  .brand-name { font-size: 1.3rem; }

  .hero { padding: 64px 0 54px; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.5rem); line-height: 1.06; }
  .hero-description { font-size: 0.94rem; line-height: 1.7; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 10px 14px; font-size: 0.67rem; }

  .product-stage { height: 385px; }
  .dashboard-window { top: 30px; right: -124px; left: -65px; transform: scale(0.68); transform-origin: center top; }
  .phone-window { right: 6px; bottom: 0; width: 146px; min-height: 300px; border-width: 5px; border-radius: 23px; padding: 22px 10px 8px; }
  .phone-notch { top: 6px; width: 47px; height: 8px; }
  .phone-header { margin-bottom: 8px; }
  .phone-header b { width: 23px; height: 23px; }
  .phone-window h3 { margin-bottom: 7px; font-size: 0.68rem; }
  .phone-total { padding: 9px; }
  .phone-total strong { font-size: 0.68rem; }
  .phone-order:nth-of-type(2) { display: none; }
  .floating-result { top: 8px; right: 8px; padding: 9px 11px; font-size: 0.58rem; }

  .features { padding: 84px 0 88px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 2rem; }
  .section-heading > p:last-child { font-size: 0.9rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 270px; }

  .impact { padding-bottom: 80px; }
  .impact-card { border-radius: 22px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics > div { min-height: auto; justify-content: center; padding: 24px; }
  .metrics > div + div { border-top: 1px solid rgba(255, 255, 255, 0.1); border-left: 0; }
  .metrics strong { min-width: 92px; font-size: 2rem; text-align: right; }
  .impact-cta { flex-direction: column; align-items: flex-start; gap: 28px; padding: 42px 28px; }
  .impact-cta h2 { font-size: 2.15rem; }
  .impact-cta .button { width: 100%; }

  .site-footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 22px; }
  .footer-brand, .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 48px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 2.3rem; }
  .trust-list { flex-direction: column; align-items: center; }
  .dashboard-window { right: -170px; left: -100px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
