:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface-2: #f7f9fd;
  --text: #0f172a;
  --muted: #5f6f8d;
  --line: rgba(15, 23, 42, 0.08);
  --primary: #2d6df6;
  --primary-strong: #1e56d8;
  --teal: #13b0c9;
  --orange: #ff9d4d;
  --shadow-lg: 0 24px 70px rgba(20, 37, 63, 0.14);
  --shadow-md: 0 16px 40px rgba(20, 37, 63, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8ff 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(45, 109, 246, 0.09), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(19, 176, 201, 0.08), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(255, 157, 77, 0.05), transparent 22%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(245,248,255,0.9));
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(45, 109, 246, 0.1), rgba(19, 176, 201, 0.12));
  box-shadow: inset 0 0 0 1px rgba(45, 109, 246, 0.08);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  font-weight: 700;
}

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

.btn-sm {
  padding: 12px 18px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 24px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4489ff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(45, 109, 246, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.1);
}

.block-btn {
  width: 100%;
}

.hero {
  padding-top: 76px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(45, 109, 246, 0.08);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 18px 0 0;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 760px;
}

.hero-text,
.section-heading p,
.feature-copy p,
.info-card p,
.testimonial p,
.contact-copy p,
.footer-copy {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 690px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-card,
.info-card,
.report-card,
.price-card,
.testimonial,
.contact-card,
.support-banner {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
}

.stat-card {
  border-radius: 18px;
  padding: 18px;
}

.stat-card strong,
.summary-grid strong,
.summary-top strong,
.price-card h3,
.feature-copy h3,
.info-card h3,
.card-head h3,
.contact-copy h2,
.support-banner h3 {
  display: block;
  letter-spacing: -0.03em;
}

.stat-card strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.device {
  position: absolute;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.device-desktop {
  top: 0;
  right: 0;
  width: min(100%, 650px);
  min-height: 420px;
  padding: 16px;
}

.device-tablet {
  left: 10px;
  bottom: 12px;
  width: 235px;
  min-height: 420px;
  padding: 14px;
  border-radius: 32px;
}

.device-topbar,
.screen-header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.device-topbar span,
.screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.14);
}

.desktop-ui,
.tablet-ui,
.screen-card {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.desktop-ui {
  margin-top: 14px;
  padding: 22px;
}

.dashboard-header,
.card-head,
.summary-top,
.sale-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ui-label,
.summary-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.dashboard-header h3,
.sale-head strong {
  margin: 6px 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.badge-blue {
  color: var(--primary-strong);
  background: rgba(45, 109, 246, 0.1);
}

.badge-teal {
  color: #0a7283;
  background: rgba(19, 176, 201, 0.12);
}

.dashboard-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.mini-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.mini-card span,
.form-row span,
.legend,
.table-head,
.table-row,
.ledger-box span,
.summary-grid span,
.contact-points span,
.contact-points strong,
.plan-tag,
.price span {
  color: var(--muted);
}

.mini-card strong,
.form-row strong,
.amount-box,
.sync-box strong,
.price,
.contact-points strong,
.summary-top strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.chart-area {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  margin-top: 20px;
}

.bars {
  min-height: 210px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(45,109,246,0.06), rgba(45,109,246,0.02));
  border: 1px solid rgba(45, 109, 246, 0.08);
}

.bars span {
  flex: 1;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #6ea0ff 0%, var(--primary) 100%);
  box-shadow: inset -7px 0 0 rgba(255, 255, 255, 0.2);
  animation: pulseBar 4s ease-in-out infinite;
}

.bars span:nth-child(2) { animation-delay: 0.15s; }
.bars span:nth-child(3) { animation-delay: 0.3s; }
.bars span:nth-child(4) { animation-delay: 0.45s; }
.bars span:nth-child(5) { animation-delay: 0.6s; }
.bars span:nth-child(6) { animation-delay: 0.75s; }

.pie-ring {
  min-height: 210px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, #fff 0 30%, transparent 31%),
    conic-gradient(var(--primary) 0 42%, var(--teal) 42% 74%, var(--orange) 74% 100%);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: inset 0 0 0 16px rgba(255,255,255,0.35);
}

.ledger-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ledger-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f2f6fd;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
}

.tablet-ui {
  min-height: 392px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sale-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.sale-list > div,
.form-row,
.summary-grid > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f8fd;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.ui-cta {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #5092ff);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(45, 109, 246, 0.24);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.problem-grid,
.trust-grid,
.pricing-grid,
.dashboard-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

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

.info-card {
  padding: 28px;
  border-radius: 24px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.feature-stack {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
}

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

.feature-card.reverse .feature-copy {
  order: 2;
}

.feature-card.reverse .feature-visual {
  order: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45,109,246,0.14), rgba(19,176,201,0.14));
  color: var(--primary-strong);
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-copy h3 {
  margin: 0;
  font-size: 2rem;
}

.feature-copy ul,
.price-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-copy li,
.price-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-copy li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
}

.feature-visual {
  display: flex;
  justify-content: center;
}

.screen-card {
  width: 100%;
  padding: 16px;
  box-shadow: var(--shadow-md);
}

.tall-card {
  max-width: 270px;
  min-height: 430px;
}

.wide-card {
  max-width: 520px;
  min-height: 360px;
}

.screen-body {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.amount-box {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45,109,246,0.1), rgba(19,176,201,0.08));
  color: var(--primary-strong);
  text-align: center;
}

.table-sim {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr 0.8fr;
  gap: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
}

.table-head {
  background: #eef4ff;
  font-weight: 700;
}

.table-row {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.ledger-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.ledger-box > div {
  padding: 14px;
  border-radius: 16px;
  background: #f7faff;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.sync-devices {
  width: 100%;
  display: grid;
  gap: 16px;
  align-items: center;
}

.sync-box {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.large-sync {
  transform: scale(1.02);
}

.sync-box span {
  color: var(--muted);
  font-weight: 700;
}

.sync-line {
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, rgba(45,109,246,0), rgba(45,109,246,0.6), rgba(19,176,201,0));
  justify-self: center;
}

.dashboard-section {
  overflow: hidden;
}

.dashboard-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.report-card,
.price-card,
.contact-card,
.testimonial,
.support-banner {
  border-radius: 28px;
  padding: 28px;
}

.summary-card {
  grid-column: 1 / -1;
}

.bar-chart-3d {
  margin-top: 24px;
  min-height: 270px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 18px 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(45,109,246,0.04), rgba(45,109,246,0.01));
  border: 1px solid rgba(45, 109, 246, 0.08);
}

.bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bar {
  width: 100%;
  max-width: 48px;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, #87b0ff 0%, var(--primary) 70%, #184fc9 100%);
  position: relative;
  transform: skewX(-8deg);
  box-shadow:
    inset -10px 0 0 rgba(255,255,255,0.18),
    8px 10px 18px rgba(45,109,246,0.16);
}

.bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 14px;
  border-radius: 12px;
  background: #a4c4ff;
  transform: skewX(8deg);
}

.bar-a { height: 90px; }
.bar-b { height: 120px; }
.bar-c { height: 155px; }
.bar-d { height: 138px; }
.bar-e { height: 190px; }
.bar-f { height: 220px; }

.bar-wrap label {
  font-size: 0.88rem;
  color: var(--muted);
}

.pie-block {
  display: grid;
  gap: 20px;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
}

.pie-chart {
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 33%, transparent 34%),
    conic-gradient(var(--primary) 0 46%, var(--teal) 46% 76%, var(--orange) 76% 100%);
  box-shadow: inset 0 0 0 18px rgba(255,255,255,0.28), var(--shadow-md);
}

.legend {
  display: grid;
  gap: 10px;
  width: 100%;
}

.legend > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.blue-dot { background: var(--primary); }
.teal-dot { background: var(--teal); }
.orange-dot { background: var(--orange); }

.summary-top {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.trust-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  margin-top: 18px;
  font-size: 1rem;
}

.testimonial span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.support-banner {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.stamp {
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 109, 246, 0.08);
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.price-card h3 {
  margin: 18px 0 0;
  font-size: 1.6rem;
}

.price {
  margin: 16px 0 8px;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  margin-left: 6px;
}

.featured-price {
  transform: translateY(-6px);
  border-color: rgba(45, 109, 246, 0.18);
  box-shadow: 0 22px 58px rgba(45, 109, 246, 0.18);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-points div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field-group label {
  font-size: 0.95rem;
  font-weight: 700;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fbfdff;
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(45, 109, 246, 0.4);
  box-shadow: 0 0 0 4px rgba(45, 109, 246, 0.1);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer {
  background: linear-gradient(135deg, #1f5fe8, #0e7fc5);
  color: #fff;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.6fr;
  gap: 24px;
}

.footer-brand .brand-mark {
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

.site-footer .brand-text,
.site-footer h4,
.site-footer a,
.site-footer p {
  color: #fff;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-copy,
.site-footer p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.footer-bottom {
  padding: 18px 0 26px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-graph {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
}

.graph-line {
  position: absolute;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45,109,246,0.6), rgba(19,176,201,0.7), transparent);
  transform-origin: left center;
  animation: floatGraph 7s ease-in-out infinite;
}

.graph-line-1 {
  width: 30%;
  left: 58%;
  top: 21%;
  transform: rotate(18deg);
}

.graph-line-2 {
  width: 22%;
  left: 71%;
  top: 27%;
  transform: rotate(-6deg);
  animation-delay: 0.6s;
}

.graph-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0 18%, #71abff 20%, var(--primary) 100%);
  box-shadow: 0 0 0 8px rgba(45,109,246,0.08);
  animation: breathe 4s ease-in-out infinite;
}

.graph-dot-1 { top: 32%; left: 60%; }
.graph-dot-2 { top: 28%; left: 69%; animation-delay: 0.5s; }
.graph-dot-3 { top: 25%; left: 78%; animation-delay: 1s; }
.graph-dot-4 { top: 18%; left: 87%; animation-delay: 1.5s; }

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  animation: revealUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.14s; }
.delay-2 { animation-delay: 0.28s; }

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

@keyframes pulseBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.04); }
}

@keyframes floatGraph {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(-10px) rotate(20deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-card,
  .feature-card.reverse,
  .dashboard-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.reverse .feature-copy,
  .feature-card.reverse .feature-visual {
    order: initial;
  }

  .hero-visual {
    min-height: 660px;
    margin-top: 10px;
  }

  .device-tablet {
    left: 0;
  }

  .problem-grid,
  .trust-grid,
  .pricing-grid,
  .summary-grid,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-nav,
  .site-header .btn-sm {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 620px;
  }

  .device-desktop {
    position: relative;
    width: 100%;
    min-height: 400px;
  }

  .device-tablet {
    width: 200px;
    min-height: 360px;
    left: 0;
    bottom: -12px;
  }

  .dashboard-panels,
  .chart-area,
  .problem-grid,
  .trust-grid,
  .pricing-grid,
  .summary-grid,
  .hero-stats,
  .ledger-box {
    grid-template-columns: 1fr;
  }

  .support-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 72px;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-lg,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .hero-visual {
    min-height: 540px;
  }

  .device-desktop {
    min-height: 300px;
    padding: 10px;
  }

  .desktop-ui {
    padding: 16px;
  }

  .device-tablet {
    width: 168px;
    min-height: 300px;
    padding: 10px;
  }

  .tablet-ui {
    min-height: 278px;
    padding: 14px;
  }

  .feature-card,
  .price-card,
  .report-card,
  .testimonial,
  .contact-card,
  .info-card,
  .support-banner {
    padding: 22px;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1fr 1fr;
  }

  .table-head span:nth-child(3),
  .table-head span:nth-child(4),
  .table-row span:nth-child(3),
  .table-row span:nth-child(4) {
    display: none;
  }

  .pie-chart {
    width: 200px;
  }
}
