/* =========================================================
   LuminaTech — design tokens
   A boutique, hand-coded feel: warm paper + rose ink, with a
   monospace "bracket" motif borrowed from the logo (</>) used
   sparingly as the page's signature structural device.
========================================================= */
:root {
  --paper: #fbf6f2;
  --paper-deep: #f6ede8;
  --ink: #2a231f;
  --ink-soft: #6b5f58;
  --rose: #b45577;
  --rose-deep: #7f3a55;
  --rose-pale: #f4e2e7;
  --brass: #ad8a4e;
  --brass-light: #e8d5a8;
  --line: #e7d9d4;
  --white: #ffffff;
  --shadow: 0 20px 45px -20px rgba(122, 58, 85, 0.28);
  --shadow-soft: 0 10px 30px -15px rgba(42, 35, 31, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--rose);
  font-weight: 500;
}
.eyebrow::before { content: "<"; opacity: 0.55; }
.eyebrow::after { content: "/>"; opacity: 0.55; }

.section {
  padding: 108px 0;
  position: relative;
}
.section-head {
  max-width: 620px;
  margin: 0 0 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-top: 14px;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-3px); background: var(--rose-deep); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Splash ---------- */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 22px;
  background: radial-gradient(circle at 50% 40%, #fff 0%, var(--paper-deep) 65%, var(--rose-pale) 100%);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-ring {
  width: 118px; height: 118px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  box-shadow: 0 25px 60px -20px rgba(122, 58, 85, 0.4);
  position: relative;
  animation: splashPop 1s var(--ease) both, splashFloat 3.2s ease-in-out 1s infinite;
}
.splash-ring::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px solid var(--rose); opacity: 0.35;
  animation: splashRing 2.4s ease-out infinite;
}
.splash-ring img { width: 68%; height: 68%; object-fit: contain; border-radius: 50%; }
.splash-word {
  font-family: "Playfair Display", serif; font-weight: 600; font-size: 21px;
  letter-spacing: 0.03em; opacity: 0; animation: splashFade 0.8s ease 0.5s forwards;
}
.splash-bar { width: 150px; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.splash-bar::after {
  content: ""; display: block; height: 100%; width: 35%; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  animation: splashLoad 1.1s ease-in-out infinite;
}
@keyframes splashPop { from { opacity: 0; transform: scale(0.55); } to { opacity: 1; transform: scale(1); } }
@keyframes splashFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes splashRing { 0% { transform: scale(0.92); opacity: 0.5; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes splashFade { to { opacity: 1; } }
@keyframes splashLoad { 0% { transform: translateX(-160%); } 100% { transform: translateX(380%); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.34s; }

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
header.scrolled {
  background: rgba(251, 246, 242, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -20px rgba(42,35,31,0.35);
  padding: 12px 0;
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 38px; height: 38px; border-radius: 50%; box-shadow: var(--shadow-soft); }
.brand span { font-family: "Playfair Display", serif; font-weight: 700; font-size: 20px; }
nav.nav-links { display: flex; gap: 34px; }
nav.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color 0.3s;
}
nav.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--rose); transition: width 0.3s var(--ease);
}
nav.nav-links a:hover { color: var(--ink); }
nav.nav-links a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.menu-toggle { display: none; background: none; border: none; padding: 6px; }
.menu-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  padding: 168px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -10%; right: -8%; width: 480px; height: 480px;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  border-radius: 50%;
  animation: driftA 12s ease-in-out infinite;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; bottom: -15%; left: -10%; width: 380px; height: 380px;
  background: radial-gradient(circle, var(--brass-light) 0%, transparent 72%);
  opacity: 0.5;
  border-radius: 50%;
  animation: driftB 14s ease-in-out infinite;
  z-index: 0;
}
@keyframes driftA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-24px, 26px); } }
@keyframes driftB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -20px); } }

.hero .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-copy h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  margin-top: 18px;
}
.hero-copy h1 em {
  font-style: normal; color: var(--rose); position: relative;
}
.hero-copy p.lede {
  margin-top: 22px; font-size: 18px; color: var(--ink-soft); max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }
.trust-item svg { width: 17px; height: 17px; color: var(--rose); flex-shrink: 0; }

.hero-copy, .hero-copy > * { animation: none; }
.hero-copy h1, .hero-copy p.lede, .hero-copy .eyebrow, .hero-copy .hero-cta, .hero-copy .trust-row {
  animation: riseIn 0.9s var(--ease) both;
}
.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-copy h1 { animation-delay: 0.15s; }
.hero-copy p.lede { animation-delay: 0.3s; }
.hero-copy .hero-cta { animation-delay: 0.42s; }
.hero-copy .trust-row { animation-delay: 0.54s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-visual { position: relative; animation: riseIn 1s var(--ease) 0.35s both; }
.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
  border: 8px solid var(--white);
  position: relative;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.1; }
.floating-chip {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.floating-chip svg { width: 18px; height: 18px; color: var(--rose); }
.chip-1 { top: 8%; left: -8%; animation: bob 4.5s ease-in-out infinite; }
.chip-2 { bottom: 10%; right: -6%; animation: bob 5.2s ease-in-out 0.4s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Trust strip ---------- */
.strip {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.strip-item { display: flex; align-items: center; gap: 12px; }
.strip-item .ico {
  width: 42px; height: 42px; border-radius: 50%; background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.strip-item .ico svg { width: 20px; height: 20px; color: var(--rose-deep); }
.strip-item strong { display: block; font-size: 14.5px; }
.strip-item span { font-size: 13px; color: var(--ink-soft); }

/* ---------- Pricing / Ofertas ---------- */
.plans-tabs { display: flex; gap: 10px; margin-bottom: 46px; flex-wrap: wrap; }
.plans-tabs button {
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--line);
  background: var(--white); font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.plans-tabs button.active, .plans-tabs button:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.plan-card {
  background: var(--white); border-radius: var(--radius-md); padding: 34px 28px;
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan-card.featured { border-color: var(--rose); transform: scale(1.03); box-shadow: var(--shadow); }
.plan-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.offer-badge {
  position: absolute; top: 20px; right: -34px;
  background: linear-gradient(120deg, var(--brass), var(--brass-light));
  color: #3c2f14; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 40px; transform: rotate(38deg);
  box-shadow: 0 6px 14px -6px rgba(173, 138, 78, 0.6);
}
.plan-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--rose-pale); color: var(--rose-deep);
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px;
  width: fit-content; margin-bottom: 18px;
}
.plan-card h3 { font-size: 22px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; }
.plan-price .amount { font-family: "Playfair Display", serif; font-size: 38px; font-weight: 700; color: var(--rose-deep); }
.plan-price .amount small { font-size: 16px; font-weight: 600; }
.plan-note { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 18px; }
.plan-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-feats li { display: flex; gap: 10px; font-size: 13.8px; align-items: flex-start; }
.plan-feats svg { width: 17px; height: 17px; color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.plan-cta { margin-top: auto; }
.plan-cta a {
  display: block; text-align: center; padding: 13px; border-radius: 100px;
  background: var(--ink); color: var(--white); font-weight: 600; font-size: 14px;
  transition: background 0.3s;
}
.plan-card.featured .plan-cta a { background: var(--rose); }
.plan-cta a:hover { background: var(--rose-deep); }

.specials-label { text-align: center; margin: 66px 0 30px; display: flex; align-items: center; gap: 18px; color: var(--ink-soft); font-size: 13px; font-family: "JetBrains Mono", monospace; }
.specials-label::before, .specials-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.specials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.special-card {
  background: var(--ink); color: var(--white); border-radius: var(--radius-md);
  padding: 32px 30px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.special-card:hover { transform: translateY(-6px); }
.special-card::before {
  content: ""; position: absolute; top: -30%; right: -20%; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(180,85,119,0.35), transparent 70%);
}
.special-card h3 { color: var(--white); font-size: 20px; }
.special-card .plan-price .amount { color: var(--brass-light); }
.special-card .plan-desc { color: #cfc4c1; }
.special-card .plan-feats li { color: #e8e1de; }
.special-card .plan-feats svg { color: var(--brass-light); }
.special-card .plan-cta a { background: var(--brass); color: #2a2010; }
.special-card .plan-cta a:hover { background: var(--brass-light); }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.portfolio-card {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  box-shadow: var(--shadow-soft); aspect-ratio: 4/3.4;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; background: linear-gradient(180deg, transparent 40%, rgba(20,15,14,0.82) 100%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .tag { color: var(--brass-light); font-size: 11px; font-family: "JetBrains Mono", monospace; margin-bottom: 4px; }
.portfolio-overlay strong { color: var(--white); font-size: 16px; font-family: "Playfair Display", serif; }
.portfolio-overlay .view { color: #fff; font-size: 12px; margin-top: 8px; display: flex; align-items: center; gap: 6px; opacity: 0.85; }

/* ---------- Process ---------- */
.process-wrap { position: relative; }
.process-line {
  position: absolute; top: 34px; left: 8%; right: 8%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--rose) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.process-step { text-align: center; }
.process-num {
  width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--rose);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: var(--rose);
  position: relative; z-index: 1; transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.process-step:hover .process-num { transform: scale(1.1); background: var(--rose); color: var(--white); }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); font-size: 14px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-mark {
  width: 200px; height: 200px; border-radius: 50%; margin: 0 auto;
  box-shadow: var(--shadow); border: 8px solid var(--white); overflow: hidden;
  position: relative;
}
.about-mark img { width: 100%; height: 100%; object-fit: cover; }
.about-mark::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%; border: 1.5px dashed var(--rose);
  opacity: 0.4; animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about-quote { font-family: "Playfair Display", serif; font-size: 24px; line-height: 1.4; color: var(--ink); }
.about-quote strong { color: var(--rose); font-style: normal; }
.about-text { margin-top: 20px; color: var(--ink-soft); font-size: 15.5px; }
.about-badges { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.about-badges span {
  font-family: "JetBrains Mono", monospace; font-size: 12.5px; background: var(--rose-pale); color: var(--rose-deep);
  padding: 7px 14px; border-radius: 100px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; padding: 20px 24px; text-align: left;
  display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15.5px;
}
.faq-q svg { width: 18px; height: 18px; color: var(--rose); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-wrap {
  background: var(--ink); border-radius: var(--radius-lg); padding: 64px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.contact-wrap::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(180,85,119,0.4), transparent 70%);
}
.contact-copy h2 { color: var(--white); font-size: clamp(28px,3vw,36px); }
.contact-copy p { color: #cfc4c1; margin-top: 16px; font-size: 15.5px; }
.contact-phone { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; color: var(--brass-light); font-family: "JetBrains Mono", monospace; font-size: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid #3d3733; background: #241f1d;
  color: var(--white); font-family: inherit; font-size: 14px;
}
.contact-form ::placeholder { color: #8a8079; }
.contact-form button {
  padding: 15px; border-radius: 100px; border: none; background: var(--rose); color: var(--white);
  font-weight: 700; font-size: 14.5px; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--rose-deep); }

/* ---------- Footer ---------- */
footer { padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); font-size: 13.5px; }
.footer-cols { display: flex; gap: 60px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; color: var(--ink-soft); }
.footer-col a { display: block; font-size: 14px; color: var(--ink); margin-bottom: 10px; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); flex-wrap: wrap; gap: 10px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  animation: waPop 0.6s var(--ease) 1.2s both;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.55);
  animation: waRing 2.2s ease-out infinite;
}
@keyframes waPop { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: scale(1); } }
@keyframes waRing { 0% { transform: scale(0.9); opacity: 0.9; } 80%,100% { transform: scale(1.6); opacity: 0; } }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-badges { justify-content: center; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding: 44px 28px; }
  nav.nav-links { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-line { display: none; }
  .strip .container { justify-content: center; text-align: center; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 36px; }
  .contact-form { }
  .hero { padding: 140px 0 70px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
