/* ===== MaqPron - Design Tokens ===== */
:root {
  --green-dark: #0f2e1d;
  --green-dark-2: #123a24;
  --green-mid: #1c5c34;
  --lime: #8bc53f;
  --lime-bright: #a4d65e;
  --white: #ffffff;
  --off-white: #f4f8f3;
  --text-muted: #c9d8cd;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--green-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(139, 197, 63, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #4b5c50;
  font-size: 1.05rem;
  max-width: 620px;
}

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

.section-head .section-subtitle {
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(139, 197, 63, 0.35);
}

.btn-primary:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139, 197, 63, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 46, 29, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  max-width: 1480px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brand span {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-cta .btn {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 50% 0%, var(--green-mid) 0%, var(--green-dark) 55%, #081b11 100%);
  color: var(--white);
  padding: 170px 0 120px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: var(--lime);
  top: -120px;
  right: -100px;
}

.hero::after {
  width: 320px;
  height: 320px;
  background: var(--lime);
  bottom: -140px;
  left: -80px;
  opacity: 0.15;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 197, 63, 0.15);
  border: 1px solid rgba(139, 197, 63, 0.35);
  color: var(--lime-bright);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

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

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lime);
}

.hero-stats div span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.hero-visual .glow-ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .glow-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(139, 197, 63, 0.5), transparent 40%, rgba(139, 197, 63, 0.4));
  animation: spin 18s linear infinite;
}

.hero-visual .logo-card {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--green-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 1;
}

.hero-visual .logo-card img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-visual .float-card {
  position: absolute;
  background: var(--white);
  color: var(--green-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.float-card.card-1 {
  top: 10px;
  left: -20px;
  animation: floatY 4s ease-in-out infinite;
}

.float-card.card-2 {
  bottom: 20px;
  right: -30px;
  animation: floatY 4.5s ease-in-out infinite 0.5s;
}

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

/* ===== Logos strip ===== */
.platforms-strip {
  background: var(--green-dark);
  padding: 18px 0;
}

.platforms-strip .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.platforms-strip span {
  color: var(--lime);
}

/* ===== Benefits ===== */
.benefits {
  padding: 110px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--off-white);
  border: 1px solid #e5ede3;
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 46, 29, 0.1);
  border-color: var(--lime);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lime), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #5a6b5e;
  font-size: 0.94rem;
}

.store-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.store-btn {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.store-btn img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 8px;
}

/* ===== Features ===== */
.features {
  padding: 110px 0;
  background: var(--off-white);
}

.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.feature-tab {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid #dde7da;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-tab.active,
.feature-tab:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid #e5ede3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 46, 29, 0.08);
}

.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: inline-block;
}

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

.feature-card p {
  font-size: 0.88rem;
  color: #5a6b5e;
}

.feature-card .cat {
  display: none;
}

/* ===== How it works ===== */
.how {
  padding: 110px 0;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.how .section-tag {
  background: rgba(139, 197, 63, 0.18);
  color: var(--lime-bright);
}

.how .section-title,
.how .section-subtitle {
  color: var(--white);
}

.how .section-subtitle {
  color: var(--text-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
  position: relative;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

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

/* ===== Platforms section ===== */
.platforms {
  padding: 110px 0;
  background: var(--white);
}

.platforms-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.platform-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid #e5ede3;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.platform-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 46, 29, 0.1);
  border-color: var(--lime);
}

.platform-badge {
  display: block;
  height: 30px;
  width: auto;
  margin-top: 10px;
  border-radius: 6px;
}

.platform-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.platform-item .icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.platform-item .icon img.icon-apple {
  filter: brightness(0) invert(1);
}

.platform-item h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.platform-item p {
  font-size: 0.88rem;
  color: #5a6b5e;
}

.platform-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mock {
  width: 260px;
  height: 520px;
  background: var(--green-dark);
  border-radius: 40px;
  border: 8px solid var(--green-dark-2);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 60px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-mock img {
  width: 60%;
  opacity: 0.9;
}

.browser-mock {
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #e5ede3;
}

.browser-mock .bar {
  background: var(--off-white);
  padding: 8px 10px;
  display: flex;
  gap: 6px;
}

.browser-mock .bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7e0d4;
}

.browser-mock .body {
  padding: 16px;
}

.browser-mock .body .line {
  height: 8px;
  border-radius: 4px;
  background: #e5ede3;
  margin-bottom: 8px;
}

.browser-mock .body .line.short {
  width: 60%;
}

.browser-mock .body .badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--lime);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 110px 0;
  background: var(--off-white);
}

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

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e5ede3;
}

.testi-stars {
  color: var(--lime);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testi-card p {
  font-size: 0.94rem;
  color: #3a4a3d;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
}

.testi-author span {
  font-size: 0.78rem;
  color: #5a6b5e;
}

/* ===== CTA / Contact ===== */
.contact {
  padding: 110px 0;
  background: radial-gradient(120% 120% at 50% 0%, var(--green-mid) 0%, var(--green-dark) 60%, #081b11 100%);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact .section-tag {
  background: rgba(139, 197, 63, 0.18);
  color: var(--lime-bright);
}

.contact h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact p.lead {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 460px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(139, 197, 63, 0.15);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.92rem;
}

.contact-info-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.contact-form p {
  color: #5a6b5e;
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dde7da;
  font-family: var(--font);
  font-size: 0.92rem;
  background: var(--off-white);
  color: var(--green-dark);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  font-size: 0.76rem;
  color: #7a8a7d;
  text-align: center;
  margin-top: 12px;
}

/* ===== Footer ===== */
.footer {
  background: #081b11;
  color: var(--text-muted);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-brand span {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.footer p.desc {
  font-size: 0.88rem;
  max-width: 280px;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: var(--lime);
  color: var(--green-dark);
}

.footer h5 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--lime);
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.app-float {
  position: fixed;
  bottom: 96px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.2s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .platforms-inner {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .benefits-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 140px 0 80px;
  }
  .hero-visual .glow-ring {
    width: 300px;
    height: 300px;
  }
  .hero-visual .logo-card {
    width: 240px;
    height: 240px;
  }
  .browser-mock {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Mobile nav drawer ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-close {
  position: absolute;
  top: 26px;
  right: 26px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
