:root {
  --navy: #192466;
  --navy-deep: #11194d;
  --ink: #172033;
  --muted: #6a7285;
  --cyan: #62e2dc;
  --blue: #6675d9;
  --pink: #f034a4;
  --white: #ffffff;
  --soft: #f5f7fb;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(17, 25, 77, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

::selection {
  color: #ffffff;
  background: #2f4fcf;
}

::-moz-selection {
  color: #ffffff;
  background: #2f4fcf;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  height: 74px;
  padding: 0 16px;
  transform: translateX(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}

.site-header.scrolled {
  top: 12px;
  background: rgba(17, 25, 77, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(8, 12, 38, 0.22);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta {
  min-height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 142px 0 84px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 28% 25%, #5030bd 0, transparent 34%), radial-gradient(circle at 82% 68%, #f4318b 0, transparent 24%), linear-gradient(145deg, #131a55 0%, #202b73 52%, #17205e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-bg {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.32;
  animation: drift 9s ease-in-out infinite alternate;
}

.hero-bg-one {
  top: 70px;
  left: 22%;
  background: #6d3dff;
}

.hero-bg-two {
  right: 8%;
  bottom: 40px;
  background: #ff2f92;
  animation-delay: -3s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  justify-items: center;
}

.hero-copy h1,
.section-heading h2,
.split-feature h2,
.showcase h2,
.testimonial h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.06;
  text-align: center;
}

.hero-copy p {
  max-width: none;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.15vw, 22px);
  line-height: 1.5;
  text-align: center;
}

.hero-copy h1 span,
.hero-copy p span {
  display: block;
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}

.eyebrow::before,
.mark {
  content: "";
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  transform: skewX(-18deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  justify-content: center;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #6d57ff);
  box-shadow: 0 14px 30px rgba(240, 52, 164, 0.3);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.light-section .btn-secondary,
.pricing .btn-secondary {
  color: var(--navy);
  background: #eef2ff;
  border: 1px solid #dde4ff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  justify-content: center;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 24px;
}

.hero-visual {
  position: relative;
  width: min(980px, 92vw);
  margin-top: 8px;
  transform: none;
  transform-origin: center;
  animation: float 5.8s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.float-card {
  position: absolute;
  min-width: 148px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(8, 12, 38, 0.24);
  backdrop-filter: blur(16px);
}

.float-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.float-card strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.card-calendar {
  left: -24px;
  bottom: 12%;
}

.card-seo {
  right: -18px;
  top: 16%;
}

.dark-section,
.integrations,
.footer {
  color: var(--white);
  background: var(--navy);
}

.dark-section {
  padding: 96px 0 112px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading .mark {
  display: inline-block;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.section-heading p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.light-section .section-heading p,
.pricing .section-heading p {
  color: var(--muted);
}

.feature-strip,
.resource-grid,
.pricing-grid,
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-feature {
  position: relative;
  padding: 30px;
  text-align: center;
}

.mini-feature::before {
  content: "";
  position: absolute;
  top: 53px;
  left: calc(50% + 42px);
  width: calc(100% - 84px);
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-feature:last-child::before {
  display: none;
}

.icon,
.resource-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #5e6fff 55%, var(--cyan));
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  font-size: 26px;
}

.mini-feature h3,
.resource h3,
.price-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  white-space: nowrap;
}

.mini-feature p,
.split-feature p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
  margin-top: 84px;
}

.split-feature h2,
.showcase h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
}

.workflow-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(8, 12, 38, 0.24);
}

.workflow-card div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-card div:last-child {
  border-bottom: 0;
}

.workflow-card span {
  color: var(--cyan);
  font-weight: 800;
}

.workflow-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #dce6ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 16px;
  font-style: normal;
}

.light-section,
.pricing {
  padding: 104px 0;
  background: var(--soft);
}

.resource {
  min-height: 240px;
  padding: 34px;
  background: var(--white);
  border: 1px solid #edf0f7;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 32, 51, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resource:hover,
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(23, 32, 51, 0.13);
}

.resource-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 22px;
}

.resource p,
.price-card p,
.showcase p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase {
  padding: 104px 0;
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 68px;
  align-items: center;
}

.showcase-mock img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 56px rgba(23, 32, 51, 0.18);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.screens-section {
  padding: 104px 0;
  background: #f6f8fd;
}

.screens-section .section-heading p {
  color: #4f5f7c;
}

.laptop-carousel {
  max-width: 1080px;
  margin: 0 auto;
}

.laptop-shell {
  position: relative;
  padding: 18px 18px 0;
  background: linear-gradient(155deg, #c6cedd, #9da8be);
  border-radius: 24px 24px 14px 14px;
  box-shadow: 0 28px 70px rgba(23, 32, 51, 0.2);
}

.laptop-top {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 94px;
  height: 8px;
  border-radius: 999px;
  background: #8f99b0;
  transform: translateX(-50%);
}

.laptop-screen {
  overflow: hidden;
  background: #070d2c;
  border-radius: 14px;
  border: 1px solid #8e99b5;
}

.carousel-track {
  position: relative;
}

.carousel-slide {
  display: none;
  margin: 0;
  min-height: 100%;
}

.carousel-slide.is-active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.carousel-slide figcaption {
  padding: 12px 20px 14px;
  background: #ffffff;
  border-top: 1px solid #e8edfb;
  min-height: 96px;
}

.carousel-slide h3 {
  margin: 0 0 4px;
  font-size: 19px;
  color: var(--ink);
}

.carousel-slide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.laptop-base {
  position: relative;
  height: 20px;
  margin: 0 -18px;
  background: linear-gradient(180deg, #b8c2d8 0%, #9aa6be 100%);
  border-radius: 0 0 18px 18px;
}

.laptop-base::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 170px;
  height: 6px;
  background: #8995af;
  border-radius: 999px;
  transform: translateX(-50%);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.carousel-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid #cad4ea;
  border-radius: 50%;
  background: #ffffff;
  color: #243158;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #c2ccdf;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: #5f72dd;
}

.pricing {
  background: #fbfcff;
}

.price-card {
  position: relative;
  padding: 72px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  min-height: 320px;
  background: var(--white);
  border: 1px solid #e9edf8;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 32, 51, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #2d3386);
  border-color: transparent;
  transform: none;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price-card strong {
  display: block;
  margin: 22px 0;
  font-size: clamp(34px, 2.3vw, 42px);
  line-height: 1;
  white-space: nowrap;
}

.price-card strong span {
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
}

.price-card.featured strong span {
  color: rgba(255, 255, 255, 0.66);
}

.price-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid #edf0f7;
}

.price-card.featured li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.badge {
  display: inline-flex;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  margin-bottom: 0;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.plan-emblem span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.plan-emblem.bronze {
  background: linear-gradient(145deg, #f2c7a6, #b16d42);
  border-color: #b27347;
}

.plan-emblem.bronze span {
  background: linear-gradient(145deg, #f9dcc6, #c78051);
}

.plan-emblem.silver {
  background: linear-gradient(145deg, #f1f6ff, #9faec3);
  border-color: #a5b3c9;
}

.plan-emblem.silver span {
  background: linear-gradient(145deg, #ffffff, #bcc8d8);
}

.plan-emblem.gold {
  background: linear-gradient(145deg, #ffe9ad, #d9a62f);
  border-color: #cf9d28;
}

.plan-emblem.gold span {
  background: linear-gradient(145deg, #fff2c8, #e1b13d);
}

.plan-emblem.platinum {
  background: linear-gradient(145deg, #ecf6ff, #7fb0d4);
  border-color: #7aaace;
}

.plan-emblem.platinum span {
  background: linear-gradient(145deg, #ffffff, #9dc3de);
}

.price-card.featured .plan-emblem {
  box-shadow: 0 12px 26px rgba(6, 10, 35, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.price-card h3 {
  margin-top: 0;
}

.price-card > p {
  white-space: nowrap;
}

.price-card .btn {
  white-space: nowrap;
  margin-top: auto;
}

.testimonial {
  overflow: hidden;
  background: linear-gradient(120deg, #e7f8ff 0%, #d7f1ff 36%, #c6e9fb 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
  min-height: 520px;
}

.testimonial-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 18px 0;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 14px;
  color: #274264;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(39, 66, 100, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.stars {
  color: #0f3172;
  font-size: 18px;
  letter-spacing: 0;
}

.testimonial h2 {
  max-width: 15ch;
  margin-top: 18px;
  color: #10224f;
  font-size: clamp(22px, 2.2vw, 40px);
  line-height: 1.1;
  text-wrap: balance;
}

.testimonial p {
  margin-top: 20px;
  color: #193c6b;
  font-size: 18px;
  font-weight: 800;
}

.testimonial p span {
  display: block;
  margin-top: 4px;
  color: rgba(25, 60, 107, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  color: #0f3172;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 49, 114, 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(16, 34, 79, 0.12);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.slider-controls button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(16, 34, 79, 0.18);
}

.testimonial-image {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 720px;
  border-radius: 24px;
  border: 1px solid rgba(16, 34, 79, 0.08);
  box-shadow: 0 30px 60px rgba(16, 34, 79, 0.18);
}

.integrations {
  padding: 96px 0;
}

.integration {
  padding: 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.integration strong,
.integration span {
  display: block;
}

.integration strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.integration span {
  color: rgba(255, 255, 255, 0.62);
}

.footer {
  padding: 70px 0 28px;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer img {
  width: 210px;
  margin-bottom: 20px;
}

.footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid > div > a {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  animation: pulse 2.2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(34px, -24px, 0) scale(1.08);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    top: 84px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 22px;
    color: var(--white);
    background: rgba(17, 25, 77, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(8, 12, 38, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .split-feature,
  .showcase-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .hero-copy h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 8.2vw, 62px);
    line-height: 1.06;
    max-width: 12ch;
  }

  .hero-visual {
    width: min(860px, 94vw);
    transform: none;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .feature-strip,
  .resource-grid,
  .pricing-grid,
  .integration-grid {
    grid-template-columns: 1fr 1fr;
  }

  .laptop-carousel {
    max-width: 100%;
  }

  .mini-feature::before {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }

  .testimonial-grid {
    gap: 22px;
    padding: 70px 0 32px;
  }

  .testimonial-image {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .screens-section {
    padding-top: 106px;
  }

  .laptop-shell {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .laptop-top,
  .laptop-base {
    display: none;
  }

  .laptop-screen {
    min-height: 0;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(23, 32, 51, 0.14);
    background: #0b133f;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: top center;
    transform: none;
  }

  .carousel-slide figcaption {
    min-height: 150px;
    padding: 16px 16px 18px;
  }

  .carousel-slide h3 {
    font-size: 22px;
  }

  .carousel-slide p {
    font-size: 15px;
    line-height: 1.45;
  }

  .carousel-controls {
    margin-top: 14px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    width: calc(100% - 20px);
    height: 66px;
  }

  .brand img {
    width: 176px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
  }

  .hero-copy p {
    max-width: 30ch;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-copy h1 span,
  .hero-copy p span {
    display: inline;
    white-space: normal;
  }

  .btn {
    width: 100%;
  }

  .hero-stats span {
    width: calc(33.33% - 14px);
    min-width: 88px;
  }

  .float-card {
    min-width: 118px;
    padding: 12px;
  }

  .float-card strong {
    font-size: 20px;
  }

  .card-calendar {
    left: 6px;
    bottom: 8%;
  }

  .card-seo {
    right: 6px;
    top: 8%;
  }

  .feature-strip,
  .resource-grid,
  .pricing-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .dark-section,
  .light-section,
  .showcase,
  .screens-section,
  .pricing,
  .integrations {
    padding: 76px 0;
  }

  .resource,
  .price-card {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
