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

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface2: #eef2ff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #4f46e5;
  --accent-deep: #4338ca;
  --success: #10b981;
  --danger: #ef4444;
  --border: rgba(15, 23, 42, 0.08);
  --whatsapp: #25d366;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.18);
}

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-deep) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: 0;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: #f8fafc;
  backdrop-filter: blur(20px);
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1.2rem;
  border-bottom: 1px solid var(--border);
  z-index: 199;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.3rem 0;
}

.mobile-cta {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  border-radius: 999px;
  padding: 0.7rem;
  font-weight: 600;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -15%;
  width: 75%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 55%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 2rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

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

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  padding: 0.4rem 0.95rem 0.4rem 0.7rem;
  border-radius: 10px;
  background: #111;
  color: #fff;
  border: 0;
  height: 44px;
  min-width: 158px;
  transition: background 0.2s;
}

.btn-store:hover {
  background: #1a1a1a;
  color: #fff;
}

.store-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.btn-store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.btn-store-copy small {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.btn-store-copy strong {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  margin-top: 0.3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual img {
  width: 118%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -6%;
}

/* PROBLEM BAR */
.problem-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 5%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.problem-bar p {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.problem-bar strong {
  color: var(--text);
}

/* SECTION HEADINGS */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 520px;
}

.features-header,
.reviews-header,
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header .section-sub,
.reviews-header .section-sub,
.faq-header .section-sub {
  margin: 0 auto;
}

/* INCLUDE */
.include-wrap,
.darkmode-wrap,
.reviews-wrap,
.faq-wrap,
.features-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 5%;
  position: relative;
  z-index: 1;
}

.include-layout {
  display: grid;
  grid-template-columns: minmax(380px, 580px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  max-width: 1240px;
  margin: 3.2rem auto 0;
}

.include-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  overflow: visible;
}

.include-phone img {
  width: 118%;
  max-width: none;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(15, 23, 42, 0.14));
  transition: opacity 0.25s ease;
}

.include-phone img.is-fading {
  opacity: 0.35;
}

.include-dots {
  display: flex;
  gap: 0.42rem;
  align-items: center;
  justify-content: center;
}

.include-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #c7d2fe;
  cursor: pointer;
}

.include-dot.is-active {
  background: var(--accent);
}

.include-cards {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.include-card {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 1.35rem 1.5rem 1.4rem;
  cursor: pointer;
  color: inherit;
  font: inherit;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.include-card:hover {
  border-color: rgba(79, 70, 229, 0.22);
}

.include-card.is-active {
  border-color: rgba(79, 70, 229, 0.45);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.08);
}

.include-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

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

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feat-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.15rem 1.85rem 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.45rem;
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.55rem;
}

.feat-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* COMPARE */
.compare-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 5%;
  position: relative;
  z-index: 1;
}

.compare-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.compare-col {
  border-radius: 18px;
  padding: 2rem;
}

.compare-col.bad {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.14);
}

.compare-col.good {
  background: #fff;
  border: 1px solid rgba(79, 70, 229, 0.18);
}

.compare-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-col.bad .compare-col-title {
  color: #b91c1c;
}

.compare-col.good .compare-col-title {
  color: var(--accent);
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 0.87rem;
  color: #334155;
}

.compare-item:last-child {
  border-bottom: none;
}

.ci-bad {
  color: var(--danger);
  flex-shrink: 0;
}

.ci-good {
  color: var(--success);
  flex-shrink: 0;
}

/* DARK MODE */
.darkmode-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.dark-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.4rem 0 1rem;
}

.dark-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 28rem;
}

.darkmode-layout img {
  width: min(520px, 100%);
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 30px 80px rgba(15, 23, 42, 0.12));
}

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.5rem;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface2);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
}

.review-person strong {
  display: block;
  font-size: 0.92rem;
}

.review-person span {
  color: var(--muted);
  font-size: 0.75rem;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}

.review-card p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* DOWNLOAD */
.pricing-wrap {
  padding: 7rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-card {
  max-width: 560px;
  margin: 3rem auto 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.pricing-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.pricing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* PRIVACY */
.privacy-wrap {
  padding: 7rem 5%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.privacy-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.5rem;
}

.privacy-wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.privacy-wrap p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.privacy-pills {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.privacy-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-pill .tick {
  color: var(--success);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
}

.faq-item button span {
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item .answer {
  display: none;
  color: var(--muted);
  padding: 0 0 1.2rem;
  line-height: 1.7;
}

.faq-item.open .answer {
  display: block;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 5% 2rem;
  position: relative;
  z-index: 1;
  background: var(--surface);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  max-width: 260px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
  margin-top: 0.7rem;
}

.footer-links-group h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-links-group a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--accent);
}

.footer-store-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  text-decoration: none;
  font-size: 0.8rem;
}

.store-btn:hover {
  background: #1a1a1a;
}

.store-btn strong {
  font-size: 0.82rem;
  display: block;
  line-height: 1.3;
}

.store-btn small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* INNER PAGES */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 8.5rem 5% 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-content,
.guide-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 5% 6rem;
}

.legal-content h2,
.guide-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.2rem 0 0.8rem;
  letter-spacing: -0.02em;
}

.legal-content h2:first-child,
.guide-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.guide-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.guide-content ul {
  color: var(--muted);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-content li,
.guide-content li {
  margin-bottom: 0.45rem;
}

.legal-content strong,
.guide-content strong {
  color: var(--text);
}

.guide-content a:not(.btn-store) {
  color: var(--accent);
  font-weight: 600;
}

.guide-cta {
  margin-top: 2.5rem;
  padding: 2.2rem 1.6rem 1.8rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
}

.guide-cta h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.guide-cta p {
  margin-bottom: 1.1rem;
}

.guide-cta .btn-store {
  color: #fff;
  font-weight: 500;
}

.guide-cta .pricing-actions {
  margin-bottom: 0.9rem;
}

.guide-cta .pricing-note {
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.2rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-right {
    margin-top: 2rem;
  }

  .hero-visual img {
    width: 100%;
    margin-left: 0;
  }

  .compare-grid,
  .features-grid,
  .include-layout,
  .darkmode-layout {
    grid-template-columns: 1fr;
  }

  .include-phone img {
    width: min(480px, 100%);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 5.5rem 1.2rem 4rem;
  }

  .features-wrap,
  .compare-wrap,
  .pricing-wrap,
  .privacy-wrap,
  .include-wrap,
  .darkmode-wrap,
  .reviews-wrap,
  .faq-wrap {
    padding: 4.5rem 1.2rem;
  }

  .hero-stats {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer {
    padding: 2.5rem 1.2rem 1.5rem;
  }

  .page-hero,
  .legal-content,
  .guide-content {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
