/* ===========================
   INVITATESTORE – style.css
   =========================== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: #faf8f5;
  color: #2a1f1a;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CSS VARIABLES */
:root {
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --brown: #2a1f1a;
  --brown-light: #5c4033;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #a07840;
  --rose: #d4a5a5;
  --black: #0d0d0d;
  --white: #ffffff;
  --section-pad: 100px 0;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(42,31,26,.10);
  --shadow-sm: 0 4px 20px rgba(42,31,26,.08);
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION SHARED */
.section-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub {
  font-size: 1rem;
  color: var(--brown-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--brown);
}
.btn--primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.35); }
.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--brown);
}
.btn--outline:hover { background: var(--gold); transform: translateY(-2px); }
.btn--dark {
  background: var(--black);
  color: var(--gold-light);
  border: 1.5px solid #333;
}
.btn--dark:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }
.btn--submit { font-size: 1rem; padding: 16px 32px; }

/* ===========================
   NAVBAR
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(42,31,26,.08);
  padding: 12px 0;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  transition: color .3s;
}
.nav.scrolled .nav__logo-text { color: var(--brown); }
.nav__logo-text em { font-style: italic; color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  transition: color .3s;
}
.nav.scrolled .nav__links a { color: var(--brown-light); }
.nav__links a:hover { color: var(--gold) !important; }
.nav__cta {
  background: var(--gold);
  color: var(--brown) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500 !important;
}
.nav__cta:hover { background: var(--gold-dark); color: var(--white) !important; transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav__hamburger span { background: var(--brown); }
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 20px 24px;
  gap: 16px;
  border-top: 1px solid var(--cream-dark);
}
.nav__mobile a {
  font-size: 1rem;
  color: var(--brown-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.nav__mobile.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1f1a 0%, #4a3228 40%, #3d2a1e 100%);
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -150px; right: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: var(--rose);
  bottom: -100px; left: -80px;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .4;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  flex: 1;
}
.hero__eyebrow {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__mockup {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-left: 80px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__phone {
  width: 220px;
  background: #0d0d0d;
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  position: relative;
}
.hero__phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: #1a1a1a;
  border-radius: 10px;
  z-index: 3;
}
.hero__phone-screen {
  background: linear-gradient(160deg, #3d2a1e 0%, #1a0f0a 100%);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  align-items: stretch;
}
.mockup-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mockup-cover {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #4a3228, #2a1f1a);
  position: relative;
  padding: 20px;
}
.mockup-cover::after {
  content: '💕';
  position: absolute;
  font-size: 60px;
  opacity: .15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
.mockup-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.mockup-date {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .12em;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.mockup-features {
  display: flex;
  justify-content: space-around;
  padding: 12px 8px;
  background: rgba(0,0,0,.3);
  font-size: .6rem;
  color: rgba(255,255,255,.7);
  gap: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; }
}

/* ===========================
   STATS
   =========================== */
.stats {
  background: var(--gold);
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  padding: 20px;
  border-right: 1px solid rgba(42,31,26,.15);
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--brown-light);
  text-transform: uppercase;
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: var(--section-pad);
  background: var(--cream);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-card__icon {
  width: 52px; height: 52px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brown);
}
.feature-card p {
  font-size: .9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: var(--section-pad);
  background: #1a0f0a;
  position: relative;
  overflow: hidden;
}
.pricing__bg { position: absolute; inset: 0; pointer-events: none; }
.pricing__orb {
  position: absolute;
  width: 600px; height: 600px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .06;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.pricing .section-tag { color: var(--gold-light); }
.pricing .section-title { color: var(--white); }
.pricing .section-sub { color: rgba(255,255,255,.5); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.plan-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}
.plan-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,169,110,.3);
  transform: translateY(-4px);
}
.plan-card--featured {
  background: rgba(201,169,110,.07);
  border-color: var(--gold);
  transform: scale(1.02);
}
.plan-card--featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-card__popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--brown);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-card__badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}
.plan-card__badge--black { color: var(--gold-light); }
.plan-card__phone {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.plan-card__screen {
  width: 110px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  gap: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.plan-card__screen--clasica {
  background: linear-gradient(160deg, #f5f0e8, #e8ddd0);
  border: 1px solid #d4c4b0;
}
.plan-card__screen--clasica .plan-screen-names { color: #4a3228; }
.plan-card__screen--clasica .plan-screen-date { color: #8a7060; }
.plan-card__screen--vintage {
  background: linear-gradient(160deg, #f2e8d8, #d4b896);
}
.plan-card__screen--vintage .plan-screen-names { color: #3d2a1e; }
.plan-card__screen--vintage .plan-screen-date { color: #7a5c40; }
.plan-card__screen--black {
  background: linear-gradient(160deg, #1a1a1a, #0d0d0d);
  border: 1px solid #c9a96e44;
}
.plan-card__screen--black .plan-screen-names { color: #c9a96e; }
.plan-card__screen--black .plan-screen-date { color: rgba(201,169,110,.6); }
.plan-screen-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem;
  font-style: italic;
  text-align: center;
}
.plan-screen-date {
  font-size: .55rem;
  letter-spacing: .08em;
  text-align: center;
}
.plan-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
}
.plan-features li.disabled { color: rgba(255,255,255,.25); }
.check { color: var(--gold); font-weight: 600; font-size: 1rem; }

/* ===========================
   HOW IT WORKS
   =========================== */
.howto {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.howto__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.howto__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: .3;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: var(--cream);
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  margin: 0 auto 20px;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}
.step p {
  font-size: .875rem;
  color: var(--brown-light);
  line-height: 1.6;
}
.step__arrow {
  font-size: 1.5rem;
  color: var(--gold-light);
  padding-top: 28px;
  flex: 0 0 auto;
  opacity: .5;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  padding: var(--section-pad);
  background: var(--cream);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gallery-item__card {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item__card:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item__card:hover .gi__label { opacity: 1; transform: translateY(0); }
.gi--1 { background: linear-gradient(160deg, #f5f0e8 0%, #d4c4b0 100%); }
.gi--2 { background: linear-gradient(160deg, #f0d8d8 0%, #c9a0a0 100%); }
.gi--3 { background: linear-gradient(160deg, #efe8d0 0%, #c4a878 100%); }
.gi--4 { background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%); }
.gi--5 { background: linear-gradient(160deg, #2a2010 0%, #1a1208 100%); }
.gi--6 { background: linear-gradient(160deg, #f8f4ee 0%, #e0d8cc 100%); }
.gi__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gallery__cta p {
  color: var(--brown-light);
  font-size: .95rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--brown);
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: .9rem; color: var(--brown); }
.testimonial__author span { font-size: .8rem; color: var(--brown-light); }

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: var(--section-pad);
  background: var(--cream);
}
.faq .section-header { text-align: left; }
.faq .section-header .section-sub { margin: 0; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color .3s;
}
.faq-item__q:hover { color: var(--gold-dark); }
.faq-item__q span {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-item__q span { transform: rotate(45deg); }
.faq-item__a {
  font-size: .9rem;
  color: var(--brown-light);
  line-height: 1.7;
  padding: 0 0 24px;
  display: none;
}
.faq-item.open .faq-item__a { display: block; }

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: var(--section-pad);
  background: linear-gradient(135deg, #2a1f1a 0%, #3d2a1e 100%);
}
.contact .section-tag { color: var(--gold-light); }
.contact .section-title { color: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info > p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 36px;
  margin-top: 8px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .3s;
}
.contact__link svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact__link:hover { color: var(--gold-light); }
.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); transform: translateY(-2px); }

/* FORM */
.contact__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.form-group:last-child { margin-bottom: 16px; }
.form-group label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s, background .3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}
.form-group select option { background: #2a1f1a; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  color: var(--gold-light);
  font-size: .95rem;
  padding: 16px;
  margin-top: 12px;
  background: rgba(201,169,110,.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,169,110,.2);
}
.form-success.visible { display: block; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 32px;
}
.footer__brand .nav__logo-text {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 16px;
  color: var(--white);
}
.footer__brand p {
  color: rgba(255,255,255,.4);
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.footer__links h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer__links a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  transition: color .3s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; color: white; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-card--featured { transform: scale(1); }
  .plan-card--featured:hover { transform: translateY(-4px); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__mockup { display: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(42,31,26,.15); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(42,31,26,.15); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .features__grid { grid-template-columns: 1fr; }
  .howto__steps { flex-direction: column; align-items: stretch; }
  .howto__steps::before { display: none; }
  .step__arrow { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 60px; }
}
