:root {
  --bg: #0b1020;
  --bg-2: #111936;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(203, 213, 225, 0.13);
  --line-strong: rgba(129, 119, 255, 0.38);
  --text: #f3fbfa;
  --muted: #9aa9c8;
  --soft: #dbe5ff;
  --accent: #4361EE;
  --accent-2: #8b5cf6;
  --accent-3: #818cf8;
  --danger: #ff8a7a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --font-heading: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(135deg, #070b18, #101832 48%, #0b1020);
  background-size: 72px 72px, 72px 72px, auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(8, 13, 29, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(67, 97, 238, 0.34);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  align-items: center;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(243, 251, 250, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.mobile-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.header-action {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255,255,255,0.045);
  font-weight: 900;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-login {
  padding: 11px 16px;
  border: 1px solid rgba(129, 119, 255, 0.32);
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-login:hover {
  border-color: rgba(174,184,255,0.55);
  color: #ffffff;
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.mobile-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
}

.mobile-nav a {
  display: block;
  padding: 14px 10px;
  color: var(--soft);
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a:last-child {
  border-bottom: 0;
  color: var(--accent);
}

.mobile-nav.open {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 86px 0 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) contrast(1.05) brightness(0.66);
  transform: scale(1.03);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 14, 32, 0.9) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.28) 100%),
    linear-gradient(0deg, #0b1020 0%, rgba(11, 16, 32, 0) 35%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  text-wrap: balance;
}

h1 span {
  color: var(--accent-2);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.1vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  margin-bottom: 22px;
  color: rgba(229, 244, 242, 0.84);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s ease, background 0.22s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.22s var(--ease);
}

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

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 45px rgba(75, 99, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 18px 56px rgba(129, 119, 255, 0.36);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
}

.btn-ghost:hover {
  border-color: rgba(129, 119, 255, 0.32);
  background: rgba(129, 119, 255, 0.1);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
}

.hero-proof div {
  padding: 12px;
  background: rgba(5, 14, 18, 0.7);
}

.hero-proof dt {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}

.hero-proof dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
}

.hero-product {
  position: relative;
}

.browser-shell {
  position: relative;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  background: rgba(4, 11, 14, 0.78);
  box-shadow: var(--shadow), 0 0 0 1px rgba(129, 119, 255, 0.08);
  overflow: hidden;
  transform: perspective(1100px) rotateY(-7deg) rotateX(3deg);
}

.browser-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.browser-top p {
  margin: 0 0 0 10px;
  color: rgba(255,255,255,0.32);
  font-size: 12px;
  font-weight: 800;
}

.dashboard {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 420px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
}

.dash-sidebar strong {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  color: var(--accent);
}

.dash-sidebar span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 800;
}

.dash-sidebar span.active {
  color: #04110f;
  background: var(--accent);
}

.dash-sidebar svg,
.dash-main svg {
  width: 16px;
  height: 16px;
}

.dash-main {
  min-width: 0;
  padding: 18px;
}

.dash-header,
.pipeline-head,
.insight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dash-header p,
.pipeline-head small {
  margin: 0;
  color: rgba(255,255,255,0.38);
  font-size: 12px;
  font-weight: 800;
}

.dash-header h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.live-chip {
  padding: 7px 10px;
  border: 1px solid rgba(129,119,255,0.28);
  border-radius: var(--radius);
  color: var(--accent-3);
  background: rgba(129,119,255,0.1);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

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

.dash-stats article,
.pipeline,
.activity-list,
.pain-grid article,
.feature-card,
.price-card,
.insight-panel,
.faq-list details,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.064), rgba(255,255,255,0.028));
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.dash-stats article {
  padding: 12px;
}

.dash-stats i,
.dash-stats svg {
  color: var(--accent-3);
}

.dash-stats strong {
  display: block;
  margin: 8px 0 4px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1;
}

.dash-stats span {
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 800;
}

.pipeline {
  padding: 14px;
}

.pipeline-head span {
  font-size: 14px;
  font-weight: 900;
}

.pipeline-bars {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.pipeline-bars div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 12px;
}

.pipeline-bars span {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 800;
}

.pipeline-bars b {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.pipeline-bars b::after {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: left;
  animation: growBar 1.4s var(--ease) both;
}

.activity-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
}

.activity-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 750;
}

.activity-list span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 16px rgba(129,119,255,0.8);
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(5, 15, 18, 0.9);
  backdrop-filter: blur(14px);
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  box-shadow: var(--shadow);
  animation: floatNote 5s ease-in-out infinite;
}

.floating-note svg {
  width: 17px;
  color: var(--accent-3);
}

.note-a {
  top: 58px;
  right: -18px;
}

.note-b {
  left: 32px;
  bottom: 58px;
  animation-delay: 1.1s;
}

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

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(129,119,255,0.035), transparent);
  opacity: 0.6;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.section-copy p:not(.eyebrow),
.section-header p {
  max-width: 720px;
  font-size: 17px;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header .eyebrow {
  justify-content: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.feature-card {
  padding: 24px;
  transition: transform 0.24s var(--ease), border-color 0.24s ease, background 0.24s ease;
}

.pain-grid article:hover,
.feature-card:hover,
.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(129,119,255,0.3);
  background: linear-gradient(180deg, rgba(129,119,255,0.09), rgba(255,255,255,0.032));
}

.pain-grid svg,
.feature-card svg,
.workflow svg {
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  color: var(--accent-3);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.workflow article {
  position: relative;
  min-height: 245px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.042);
  overflow: hidden;
}

.workflow article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.workflow article:hover::after {
  transform: scaleX(1);
}

.workflow p,
.feature-card p,
.pain-grid p,
.price-card li,
.faq-list p {
  font-size: 14px;
}

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

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
  transition: transform 0.24s var(--ease), border-color 0.24s ease, background 0.24s ease;
}

.price-card.recommended {
  border-color: rgba(129,119,255,0.46);
  box-shadow: 0 26px 70px rgba(75,99,246,0.12), var(--shadow);
}

.recommended-label {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 12px;
  font-weight: 900;
}

.price-head span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
}

.price-head p {
  min-height: 54px;
}

.price {
  margin: 20px 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  line-height: 1.35;
}

.price-card li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--accent-3);
}

.price-card .btn {
  width: 100%;
}

.insight-panel {
  padding: 26px;
}

.insight-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.insight-row span {
  color: var(--muted);
  font-weight: 800;
}

.insight-row strong {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--accent-2);
}

.insight-alert {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(129,119,255,0.1);
}

.insight-alert svg {
  width: 24px;
  flex: 0 0 auto;
  color: var(--accent-3);
}

.insight-alert p {
  margin: 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-section {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(11, 16, 32, 0.94), rgba(17, 24, 39, 0.68)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1800&auto=format&fit=crop") center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy p {
  max-width: 560px;
  font-size: 17px;
}

.contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-channels a,
.contact-channels p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--soft);
  text-decoration: none;
  font-weight: 850;
}

.contact-channels svg {
  width: 20px;
  color: var(--accent-3);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(243,251,250,0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.24);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lead-form select {
  color-scheme: dark;
}

.lead-form textarea {
  resize: vertical;
  min-height: 120px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(129,119,255,0.65);
  box-shadow: 0 0 0 4px rgba(129,119,255,0.14);
  background: rgba(0,0,0,0.34);
}

.btn-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.42);
  font-size: 12px;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #050a0c;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
  color: rgba(255,255,255,0.44);
  font-size: 13px;
  font-weight: 700;
}

.footer a:last-child {
  color: var(--accent-3);
  font-weight: 900;
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 150;
  transform: translate(-50%, 120px);
  max-width: min(420px, calc(100% - 32px));
  padding: 13px 16px;
  border: 1px solid rgba(129,119,255,0.28);
  border-radius: var(--radius);
  background: rgba(6, 18, 22, 0.94);
  color: var(--soft);
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 0.26s var(--ease), opacity 0.26s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 22px 15px 20px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 45px rgba(75,99,246,0.3), 0 0 0 1px rgba(255,255,255,0.12) inset;
  text-decoration: none;
  font-weight: 950;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(129,119,255,0.38);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.floating-whatsapp span {
  font-size: 16px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-18px, -10px, 0); }
}

@keyframes growBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes floatNote {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@media (min-width: 1061px) and (max-height: 820px) {
  .container {
    width: min(1120px, calc(100% - 40px));
  }

  .header-inner {
    height: 58px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .header-action {
    padding: 9px 14px;
  }

  .hero {
    min-height: calc(100vh - 1px);
    padding: 72px 0 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(390px, 1.16fr);
    gap: 36px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 4.25vw, 54px);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(28px, 3.5vw, 44px);
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-bottom: 16px;
  }

  .btn {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero-proof div {
    padding: 10px;
  }

  .hero-proof dt {
    font-size: 19px;
  }

  .hero-proof dd {
    font-size: 10px;
  }

  .browser-shell {
    transform: perspective(1100px) rotateY(-5deg) rotateX(2deg) scale(0.92);
    transform-origin: center right;
  }

  .dashboard {
    min-height: 360px;
  }

  .dash-sidebar {
    padding: 14px;
  }

  .dash-main {
    padding: 14px;
  }

  .dash-header h2 {
    font-size: 18px;
  }

  .dash-stats strong {
    font-size: 20px;
  }

  .dash-stats span,
  .activity-list p,
  .pipeline-bars span {
    font-size: 10px;
  }

  .section {
    padding: 58px 0;
  }

  .contact-section {
    padding: 62px 0;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-product {
    max-width: 820px;
    margin: 0 auto;
  }

  .browser-shell {
    transform: none;
  }

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

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

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner,
  .mobile-nav {
    width: min(100% - 28px, 1200px);
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .header-inner {
    height: 68px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .hero-proof,
  .dash-stats,
  .pain-grid,
  .workflow,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-main {
    padding: 16px;
  }

  .dash-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pipeline-bars div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .floating-note {
    display: none;
  }

  .section,
  .contact-section {
    padding: 76px 0;
  }

  .lead-form,
  .price-card,
  .feature-card,
  .pain-grid article {
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }
}
