:root {
  --midnight: #1D1B30;
  --blue: #3454B1;
  --orange: #DD6346;
  --plum: #89406E;
  --paper: #F5F2F7;
  --white: #FFFFFF;
  --ink: #201D34;
  --muted: #6D6884;
  --line: #E7E2EC;
  --soft: #F7F5FA;
  --shadow: 0 18px 42px rgba(29, 27, 48, 0.12);
  --shadow-strong: 0 28px 70px rgba(12, 10, 24, 0.32);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(29, 27, 48, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled {
  padding: 9px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(29, 27, 48, 0.10);
  box-shadow: 0 12px 34px rgba(29, 27, 48, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 214px;
  filter: brightness(0) invert(1) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
  transition: filter .25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.site-header.is-scrolled .main-nav {
  color: var(--midnight);
}

.site-header.is-scrolled .btn-primary {
  color: #fff;
}

.site-header.is-scrolled .menu-button {
  border-color: rgba(29, 27, 48, 0.18);
  background: rgba(29, 27, 48, 0.06);
}

.site-header.is-scrolled .menu-button span {
  background: var(--midnight);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  display: block;
}

.btn {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
}

.btn-primary {
  background: linear-gradient(90deg, #DD6346 0%, #89406E 50%, #3454B1 100%);
  box-shadow: 0 16px 34px rgba(52, 84, 177, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 34px;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(29, 27, 48, 0.94) 0%, rgba(29, 27, 48, 0.74) 42%, rgba(29, 27, 48, 0.30) 100%),
    linear-gradient(180deg, rgba(29, 27, 48, 0.52) 0%, rgba(29, 27, 48, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding-bottom: 40px;
  margin-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--plum);
  background: rgba(137, 64, 110, 0.10);
  border-color: rgba(137, 64, 110, 0.16);
}

h1 {
  margin: 16px 0 14px;
  font-size: 4.1rem;
  line-height: 1.02;
}

.hero-content p {
  max-width: 620px;
  color: rgba(245, 242, 247, 0.94);
  font-size: 1.14rem;
}

.hero .container {
  margin-left: max(30px, calc((100vw - 1160px) / 2));
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-metrics article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  isolation: isolate;
  cursor: pointer;
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.hero-metrics article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(221, 99, 70, 0.34), rgba(137, 64, 110, 0.20), rgba(52, 84, 177, 0.34));
  opacity: 0;
  transition: opacity .28s ease;
}

.hero-metrics article:first-child::before {
  border-radius: 17px 0 0 17px;
}

.hero-metrics article:last-child::before {
  border-radius: 0 17px 17px 0;
}

.hero-metrics article::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -35%;
  width: 34%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(18deg) translateX(-180%);
  transition: transform .55s ease;
}

.hero-metrics article:hover {
  z-index: 1;
  transform: none;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 18px 38px rgba(8, 7, 18, 0.24);
}

.hero-metrics article:hover::before {
  opacity: 1;
}

.hero-metrics article:hover::after {
  transform: rotate(18deg) translateX(520%);
}

.hero-metrics article strong,
.hero-metrics article span {
  position: relative;
  z-index: 1;
}

.hero-metrics strong {
  display: block;
  font-size: 1.55rem;
}

.hero-metrics span {
  display: block;
  color: rgba(245, 242, 247, 0.86);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 12px;
  color: var(--midnight);
  font-size: 2.55rem;
  line-height: 1.12;
}

.section-heading p {
  margin: 12px auto 0;
  width: min(720px, 100%);
  color: var(--muted);
  font-size: 1rem;
}

.section-heading.on-dark h2,
.section-heading.on-dark p {
  color: #fff;
}

.section-heading.on-dark p {
  color: rgba(245, 242, 247, 0.82);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(29, 27, 48, 0.16);
  border-color: rgba(52, 84, 177, 0.24);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(140deg, var(--blue), var(--plum));
}

.feature-icon.orange {
  background: linear-gradient(140deg, var(--orange), var(--plum));
}

.feature-icon.plum {
  background: linear-gradient(140deg, var(--midnight), var(--plum));
}

.feature-card h3 {
  color: var(--midnight);
  margin-bottom: 8px;
  font-size: 1.16rem;
}

.feature-card p {
  color: var(--muted);
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(29, 27, 48, 0.98) 0%, rgba(47, 40, 73, 0.98) 52%, rgba(52, 84, 177, 0.94) 100%);
  color: #fff;
  overflow: hidden;
}

.screen-carousel {
  position: relative;
  min-height: 560px;
  perspective: 1400px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.screen-carousel:active {
  cursor: grabbing;
}

.carousel-stage {
  position: relative;
  min-height: 500px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(800px, 74%);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateX(-50%) scale(.74);
  transition: transform .65s ease, opacity .65s ease, filter .65s ease;
}

.carousel-slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.carousel-slide.is-prev {
  z-index: 2;
  opacity: .58;
  filter: saturate(.78) brightness(.88);
  transform: translateX(-103%) translateY(42px) rotateY(11deg) scale(.72);
}

.carousel-slide.is-next {
  z-index: 2;
  opacity: .58;
  filter: saturate(.78) brightness(.88);
  transform: translateX(3%) translateY(42px) rotateY(-11deg) scale(.72);
}

.screen-shot-label {
  padding: 15px 18px;
  color: #fff;
  background: linear-gradient(90deg, #1D1B30 0%, #89406E 42%, #3454B1 100%);
}

.screen-shot-label strong,
.screen-shot-label span {
  display: block;
}

.screen-shot-label span {
  margin-top: 3px;
  color: rgba(245, 242, 247, 0.78);
  font-size: 0.88rem;
}

.carousel-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.carousel-button {
  position: absolute;
  top: 43%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.carousel-button::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.carousel-prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.carousel-next::before {
  transform: translateX(-2px) rotate(135deg);
}

.carousel-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.20);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.carousel-dots button.is-active {
  width: 30px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.image-section {
  background: #fff;
}

.image-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.copy-block h2 {
  margin: 12px 0 14px;
  color: var(--midnight);
  font-size: 2.5rem;
  line-height: 1.12;
}

.copy-block p {
  color: var(--muted);
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange), var(--blue));
}

.generated-visual {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
  cursor: pointer;
}

.generated-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}

.generated-visual:hover img {
  transform: scale(1.04);
}

.strip {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F5FA 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integrations-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, #1D1B30 0%, #26213E 48%, #3454B1 100%);
}

.integrations-section::before {
  content: "";
  position: absolute;
  inset: 22% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.integrations-section .container {
  position: relative;
  z-index: 1;
}

.integrations-section .section-heading h2,
.integrations-section .section-heading p {
  color: #fff;
}

.integrations-section .section-heading p {
  color: rgba(245, 242, 247, 0.78);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.integration-grid article {
  min-height: 160px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 22px 18px;
  border-radius: 999px 999px 22px 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 58px rgba(8, 7, 18, 0.24);
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease;
  backdrop-filter: blur(10px);
}

.integration-grid article:hover {
  transform: translateY(-5px);
}

.integration-grid img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: 12px;
  border-radius: 50%;
  background: #fff;
}

.integration-grid strong {
  color: #fff;
  font-size: 1.02rem;
}

.integration-grid span {
  color: rgba(245, 242, 247, 0.74);
  font-size: 0.86rem;
  text-align: center;
  font-weight: 700;
}

.team-section {
  background:
    linear-gradient(90deg, rgba(221, 99, 70, 0.08) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #fff 0%, #F9F7FB 100%);
}

.left-heading {
  margin-left: 0;
  text-align: left;
}

.left-heading p {
  margin-left: 0;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.use-case-grid article {
  min-height: 190px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 0;
  border-left: 5px solid var(--blue);
  box-shadow: 0 18px 38px rgba(29, 27, 48, 0.08);
  position: relative;
  cursor: pointer;
}

.use-case-grid article:nth-child(2) {
  border-left-color: var(--orange);
}

.use-case-grid article:nth-child(3) {
  border-left-color: var(--plum);
}

.use-case-grid article:nth-child(4) {
  border-left-color: #2B8A6E;
}

.use-case-grid article::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(52, 84, 177, 0.10);
}

.use-case-grid article:nth-child(2)::before {
  background: rgba(221, 99, 70, 0.12);
}

.use-case-grid article:nth-child(3)::before {
  background: rgba(137, 64, 110, 0.12);
}

.use-case-grid article:nth-child(4)::before {
  background: rgba(43, 138, 110, 0.12);
}

.use-case-grid h3 {
  color: var(--midnight);
  margin-bottom: 10px;
}

.use-case-grid p {
  color: var(--muted);
}

.plans-band {
  background:
    linear-gradient(135deg, #1D1B30 0%, #302846 52%, #89406E 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plans-tabs {
  display: none;
}

.plan {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border-radius: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  text-align: center;
}

.plan.featured {
  background: #fff;
  color: var(--ink);
  transform: translateY(-12px);
}

.plan h3 {
  font-size: 1.35rem;
}

.plan p {
  color: inherit;
  opacity: .76;
}

.plan-price {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  margin: 2px 0 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan.featured .plan-price {
  border-color: rgba(29, 27, 48, 0.12);
  background: linear-gradient(180deg, rgba(52, 84, 177, 0.07), rgba(221, 99, 70, 0.07));
}

.plan-price span {
  color: inherit;
  opacity: .72;
  font-size: 0.86rem;
  font-weight: 700;
}

.plan-price strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
  color: #fff;
  font-size: 2.82rem;
  line-height: 1;
}

.plan-price small {
  color: inherit;
  opacity: .72;
  font-size: 0.95rem;
  font-weight: 800;
}

.plan.featured .plan-price strong {
  color: var(--midnight);
}

.plan-benefits {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: center;
}

.plan-benefits li {
  position: relative;
  padding-left: 22px;
  color: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: left;
}

.plan-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.plan .btn {
  margin-top: auto;
}

.plan-label {
  align-self: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--plum));
  font-size: 0.78rem;
  font-weight: 900;
}

.cta-section {
  background: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(29, 27, 48, 0.98) 0%, rgba(52, 84, 177, 0.96) 100%);
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  margin: 12px 0;
  font-size: 2.25rem;
  line-height: 1.12;
}

.cta-box p {
  color: rgba(245, 242, 247, 0.84);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-inner img {
  width: 176px;
}

.whatsapp-float,
.top-float {
  position: fixed;
  z-index: 30;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, visibility .2s ease;
}

.whatsapp-float {
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  color: #fff;
  background: #25D366;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34), 0 8px 18px rgba(15, 12, 30, 0.18);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.42), 0 10px 20px rgba(15, 12, 30, 0.20);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.top-float {
  right: 96px;
  bottom: 31px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: linear-gradient(135deg, var(--midnight), var(--blue));
  box-shadow: 0 16px 32px rgba(29, 27, 48, 0.26);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.top-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(29, 27, 48, 0.32);
}

.top-float::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .4s ease, transform .4s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.reveal,
.hero-metrics.reveal {
  opacity: 1;
  transform: none;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

@keyframes barPulse {
  0%, 100% { opacity: .78; transform: scaleY(.92); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.2rem;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .brand img {
    width: 188px;
  }

  .feature-grid,
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .brand img {
    width: 150px;
  }

  .header-inner {
    gap: 12px;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 4%;
    right: 4%;
    display: none;
    padding: 18px;
    border-radius: 18px;
    background: rgba(29, 27, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-scrolled .main-nav {
    color: #fff;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 6px 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 28px;
    align-items: start;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(29, 27, 48, 0.96) 0%, rgba(29, 27, 48, 0.82) 60%, rgba(29, 27, 48, 0.62) 100%),
      linear-gradient(180deg, rgba(29, 27, 48, 0.58) 0%, rgba(29, 27, 48, 0.90) 100%);
  }

  .hero .container {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  h1 {
    font-size: 2.32rem;
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-metrics article {
    padding: 14px 16px;
  }

  .hero-metrics strong {
    font-size: 1.32rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .copy-block h2,
  .cta-box h2 {
    font-size: 1.82rem;
    line-height: 1.16;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .hero-metrics,
  .feature-grid,
  .integration-grid,
  .use-case-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plans-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 18px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .plans-tabs button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: transparent;
    font-weight: 900;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  }

  .plans-tabs button.is-active {
    color: var(--midnight);
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 7, 18, 0.20);
  }

  .plans-grid {
    display: block;
  }

  .plans-grid .plan {
    display: none;
  }

  .plans-grid .plan.is-active {
    display: flex;
  }

  .screen-carousel {
    min-height: 354px;
    width: 100%;
  }

  .carousel-stage {
    min-height: 314px;
  }

  .carousel-slide {
    width: min(94%, 520px);
    border-radius: 16px;
  }

  .carousel-slide img {
    height: 210px;
    object-fit: contain;
  }

  .carousel-slide.is-prev {
    opacity: .18;
    transform: translateX(-82%) translateY(46px) scale(.58);
  }

  .carousel-slide.is-next {
    opacity: .18;
    transform: translateX(-18%) translateY(46px) scale(.58);
  }

  .carousel-button {
    display: none;
  }

  .carousel-dots {
    margin-top: 14px;
  }

  .screen-shot-label {
    padding: 12px 14px;
  }

  .screen-shot-label span {
    font-size: 0.78rem;
  }

  .image-grid {
    gap: 28px;
  }

  .generated-visual,
  .generated-visual img {
    border-radius: 18px;
  }

  .integration-grid article {
    min-height: 138px;
    border-radius: 22px;
  }

  .left-heading,
  .left-heading p {
    text-align: left;
  }

  .feature-card,
  .use-case-grid article,
  .plan {
    min-height: auto;
    padding: 20px;
  }

  .cta-box {
    padding: 24px;
    border-radius: 20px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .top-float {
    right: 82px;
    bottom: 22px;
    width: 44px;
    height: 44px;
  }

  .plans-grid .featured {
    transform: none;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 132px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .eyebrow {
    min-height: 30px;
    padding: 6px 11px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 2.05rem;
  }

  .btn {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 0.9rem;
  }

  .carousel-slide img {
    height: 190px;
  }

  .screen-carousel {
    min-height: 332px;
  }

  .carousel-stage {
    min-height: 292px;
  }

  .carousel-dots {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
