/* =========================================================
   JuzOrder Landing — JuzApps brand-matched styles
   ========================================================= */

:root {
  --navy: #000b2d;
  --navy-mid: #121a2f;
  --navy-soft: #1e222f;
  --purple: #762dc4;
  --purple-deep: #623bb1;
  --orange: #ff8b00;
  --orange-bright: #ff9300;
  --wa-green: #25d366;
  --wa-teal: #075e54;
  --wa-light: #dcf8c6;
  --wa-bg: #ece5dd;
  --text: #808080;
  --text-dark: #5d6b79;
  --heading: #181b22;
  --white: #ffffff;
  --light: #f5f5f5;
  --light-blue: #f2f6fe;
  --border: #e2e2e2;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(0, 11, 45, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 11, 45, 0.14);
  --font-head: "Raleway", sans-serif;
  --font-body: "Roboto", sans-serif;
  --header-h: 80px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 139, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

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

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-dark);
  font-size: 1.05rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  --header-h: 68px;
  box-shadow: 0 4px 24px rgba(0, 11, 45, 0.08);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo img {
  height: 44px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.site-header.is-scrolled .logo img {
  height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a:not(.btn) {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-soft);
}

.nav a:not(.btn):hover {
  color: var(--orange);
}

.nav-phone {
  color: var(--purple) !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(118, 45, 196, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(255, 139, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-title {
  font-size: clamp(2.8rem, 5.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.hero-headline {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--navy-soft);
  margin-bottom: 18px;
  max-width: 34ch;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-dark);
  max-width: 48ch;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 32px;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 3px #2a2a2a;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.phone-notch {
  width: 90px;
  height: 18px;
  background: #111;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-teal);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 18px 18px 0 0;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wa-green);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-head);
}

.wa-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wa-meta strong {
  font-size: 13px;
  font-family: var(--font-head);
}

.wa-meta span {
  font-size: 11px;
  opacity: 0.85;
}

.wa-chat {
  background: var(--wa-bg)
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 10c-2 4-6 6-10 6s-8-2-10-6c2 4 2 8 0 12 4-2 8-2 12 0-2-4-2-8 0-12 4 2 8 2 12 0-2-4-2-8 0-12z' fill='%23d4ccc4' fill-opacity='.25'/%3E%3C/svg%3E");
  min-height: 340px;
  max-height: 380px;
  overflow: hidden;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bubble {
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #111;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.bubble.is-shown {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bubble.in {
  align-self: flex-start;
  background: var(--white);
  border-top-left-radius: 2px;
}

.bubble.out {
  align-self: flex-end;
  background: var(--wa-light);
  border-top-right-radius: 2px;
}

.bubble.catalog {
  width: 88%;
}

.catalog-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}

.catalog-item:last-of-type {
  border-bottom: none;
  margin-bottom: 6px;
}

.wa-action {
  width: 100%;
  margin-top: 6px;
  padding: 6px;
  border: none;
  border-radius: 6px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  cursor: default;
}

.bubble.success {
  background: #e8f8ef;
  border-left: 3px solid var(--wa-green);
}

.wa-input-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f0f0;
  padding: 10px 14px;
  border-radius: 0 0 18px 18px;
  font-size: 12px;
  color: #888;
}

.wa-send {
  color: var(--wa-teal);
  font-size: 16px;
}

.hero-banner-img {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: min(340px, 42vw);
  max-width: 360px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  opacity: 0.92;
  pointer-events: none;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.9) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.9) 40%, transparent 100%);
}

/* ---------- Decoratives ---------- */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.decor-float {
  animation: floatY 6s ease-in-out infinite;
}

.decor-hero-tr {
  top: 40px;
  right: 4%;
  width: 90px;
  opacity: 0.7;
  animation-delay: 0.5s;
}

.decor-hero-circle {
  bottom: 12%;
  left: 6%;
  width: 70px;
  animation-delay: 1.2s;
}

.decor-hero-dots {
  top: 28%;
  left: 42%;
  width: 55px;
  opacity: 0.8;
  animation-delay: 0.2s;
}

.decor-section-circle {
  top: 80px;
  right: 5%;
  width: 64px;
}

.decor-section-dots {
  bottom: 60px;
  left: 4%;
  width: 50px;
  animation-delay: 1s;
}

.decor-feat-circle {
  top: 120px;
  left: 3%;
  width: 56px;
}

.decor-how-circle {
  bottom: 40px;
  right: 6%;
  width: 80px;
  opacity: 0.5;
}

.decor-cta-vector {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(420px, 45vw);
  opacity: 0.18;
  pointer-events: none;
}

.footer-dots {
  position: absolute;
  left: 20px;
  bottom: 80px;
  width: 60px;
  opacity: 0.4;
}

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

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  padding: 56px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 22px;
}

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

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 11, 45, 0.03);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.grow:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: rgba(255, 139, 0, 0.35);
}

.industry-block + .industry-block {
  margin-top: 56px;
}

.industry-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  margin-bottom: 28px;
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 139, 0, 0.12);
  color: var(--orange);
  flex-shrink: 0;
}

.industry-icon.service {
  background: rgba(118, 45, 196, 0.12);
  color: var(--purple);
}

.industries {
  background: var(--light-blue);
}

/* ---------- Why ---------- */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 139, 0, 0.12);
  color: var(--orange);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ---------- Features ---------- */
.features {
  background: var(--light);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 11, 45, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: rgba(37, 211, 102, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(118, 45, 196, 0.1);
  color: var(--purple);
  margin-bottom: 16px;
}

.feature-icon.wa {
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-green);
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ---------- Love ---------- */
.love {
  background: var(--white);
}

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

.love-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--navy-mid);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

.love-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--purple));
}

.love-card:hover {
  transform: translateY(-4px);
}

.love-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.love-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- How it works ---------- */
.how {
  background: var(--light-blue);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: none;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  opacity: 0.35;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
}

.faq-layout {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(255, 139, 0, 0.45);
  box-shadow: 0 4px 20px rgba(255, 139, 0, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading);
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.faq-item a {
  color: var(--purple);
  font-weight: 500;
  text-decoration: underline;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-deep) 55%, var(--purple) 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 1.08rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 520px;
  margin-inline: auto;
}

.cta-band .hero-ctas {
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--navy-mid);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}

.footer-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-loc h4 {
  color: var(--white);
  font-size: 1.15rem;
}

.footer-col p {
  font-size: 0.92rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

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

.footer-bottom p {
  font-size: 0.88rem;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.socials a:hover {
  background: var(--orange);
}

/* ---------- Float WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  animation: pulseWa 2.5s ease-in-out infinite;
}

.float-wa:hover {
  transform: scale(1.08);
}

@keyframes pulseWa {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.fade-up {
  transform: translateY(36px);
}

.reveal.zoom-in {
  transform: scale(0.92);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .card-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-banner-img {
    width: 280px;
    right: -10px;
  }
}

@media (max-width: 992px) {
  .nav a.btn-sm {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-headline {
    max-width: none;
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-banner-img {
    display: none;
  }

  .phone-frame {
    width: 300px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 28px 40px;
    gap: 8px;
    box-shadow: -12px 0 40px rgba(0, 11, 45, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 1000;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a:not(.btn) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .nav .btn {
    margin-top: 16px;
    width: 100%;
  }

  .nav-phone {
    display: block !important;
    color: var(--purple) !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 11, 45, 0.45);
    z-index: 999;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .card-grid-3,
  .card-grid-4,
  .why-grid,
  .love-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .decor-hero-tr,
  .decor-hero-dots,
  .decor-section-dots {
    display: none;
  }

  .cta-band {
    padding: 72px 0;
  }

  .float-wa {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-title {
    font-size: 2.4rem;
  }

  .hero-headline {
    font-size: 1.2rem;
  }

  .phone-frame {
    width: 100%;
    max-width: 280px;
  }

  .wa-chat {
    min-height: 300px;
  }

  .btn {
    padding: 12px 22px;
    width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .stats {
    padding: 40px 0;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .bubble {
    opacity: 1;
    transform: none;
  }
}
