/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand */
  --primary:        #4f46e5;
  --primary-dark:   #3730a3;
  --primary-light:  #818cf8;
  --primary-bg:     #eef2ff;
  --accent:         #06b6d4;
  --wa:             #25d366;
  --wa-dark:        #1da851;

  /* Neutrals */
  --dark:           #0f172a;
  --dark-2:         #1e293b;
  --text:           #334155;
  --muted:          #64748b;
  --border:         #e2e8f0;
  --bg:             #f8fafc;
  --white:          #ffffff;

  /* Gradients */
  --grad:           linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --grad-soft:      linear-gradient(135deg, #eef2ff 0%, #f0e9ff 100%);

  /* Shadows */
  --sh-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --sh:      0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --sh-md:   0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -2px rgba(0,0,0,.04);
  --sh-lg:   0 20px 25px -5px rgba(0,0,0,.09), 0 10px 10px -5px rgba(0,0,0,.04);
  --sh-xl:   0 25px 50px -12px rgba(0,0,0,.15);
  --sh-pri:  0 10px 30px rgba(79,70,229,.28);
  --sh-wa:   0 10px 30px rgba(37,211,102,.38);

  /* Typography */
  --font: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --sec-py: 96px;

  /* Radius */
  --r-sm:   8px;
  --r:      12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Transitions */
  --t:      all .3s cubic-bezier(.4,0,.2,1);
  --t-slow: all .55s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem,   5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: 1.15rem; }

p { color: var(--text); }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--sec-py) 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section header */
.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.section-head h2 { margin: 12px 0 16px; }
.section-head p  { color: var(--muted); font-size: 1.05rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
}
.section-tag-white {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg    { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--sh-pri);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(79,70,229,.4);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg,#25d366,#1da851);
  color: var(--white);
  box-shadow: var(--sh-wa);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(37,211,102,.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-pri);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--sh-xl);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(0,0,0,.2);
  color: var(--primary-dark);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  box-shadow: var(--sh);
  border-bottom: 1px solid rgba(226,232,240,.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.45rem; }
.logo-text  {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}
.logo-text span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .88rem;
  padding: 8px 14px;
  border-radius: var(--r-full);
}
.nav-links a:hover, .nav-links a.nav-active {
  color: var(--primary);
  background: var(--primary-bg);
}
.nav-cta { padding: 10px 22px !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: linear-gradient(155deg, #f0f4ff 0%, #f8fafc 45%, #f2ecff 100%);
  overflow: hidden;
}

/* Blobs */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .14;
}
.blob-1 {
  width: 580px; height: 580px;
  background: var(--primary);
  top: -180px; right: -80px;
  animation: blobDrift 9s ease-in-out infinite alternate;
}
.blob-2 {
  width: 380px; height: 380px;
  background: var(--accent);
  bottom: -80px; left: -80px;
  animation: blobDrift 11s ease-in-out infinite alternate-reverse;
}
.blob-3 {
  width: 280px; height: 280px;
  background: #7c3aed;
  top: 55%; left: 42%;
  animation: blobDrift 13s ease-in-out infinite alternate;
}
@keyframes blobDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(28px,18px) scale(1.06); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero copy */
.hero-copy { animation: slideInLeft .8s ease both; }
@keyframes slideInLeft {
  from { opacity:0; transform: translateX(-28px); }
  to   { opacity:1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 26px;
  box-shadow: var(--sh-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--wa);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(.75); }
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 38px;
  line-height: 1.85;
}
.hero-sub strong { color: var(--primary); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
}
.stat-label {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 500;
}
.stat-sep {
  width: 1px;
  height: 38px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: slideInRight .8s .18s ease both;
}
@keyframes slideInRight {
  from { opacity:0; transform: translateX(28px); }
  to   { opacity:1; transform: translateX(0); }
}

/* Browser mockup */
.browser {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xl);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 7px; }
.browser-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
}
.browser-body { padding: 18px; }
.mock-nav {
  height: 32px;
  background: linear-gradient(90deg, var(--primary-bg) 0%, transparent 100%);
  border-radius: var(--r);
  margin-bottom: 18px;
}
.mock-hero-block {
  background: var(--grad-soft);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 18px;
}
.mock-line { border-radius: var(--r-sm); margin-bottom: 10px; }
.mock-title  { height: 18px; width: 65%; background: linear-gradient(90deg,#c7d2fe,#e0e7ff); }
.mock-sub    { height: 11px; width: 88%; background: linear-gradient(90deg,#e0e7ff,transparent); margin-bottom: 18px; }
.mock-btn-bar {
  height: 32px; width: 150px;
  background: var(--grad);
  border-radius: var(--r-full);
  opacity: .8;
}
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
}
.mock-card {
  height: 82px;
  background: var(--bg);
  border-radius: var(--r);
  border: 1px solid var(--border);
  animation: shimmer 2.2s ease-in-out infinite;
}
.mock-card-feat {
  background: linear-gradient(135deg,#eef2ff,#f0e9ff);
  border-color: var(--primary-light);
  transform: scale(1.05);
}
@keyframes shimmer {
  0%,100% { opacity:1; }
  50%      { opacity:.82; }
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--sh-lg);
  white-space: nowrap;
  z-index: 5;
}
.float-badge i { font-size: 1.05rem; color: var(--primary); }

.float-1 { bottom: -18px; left: -38px; animation: floatY 4s   ease-in-out infinite; }
.float-2 { top: 26px;    right: -28px; animation: floatY 5s   ease-in-out infinite 1s; }
.float-3 { bottom: 76px; right: -36px; animation: floatY 4.5s ease-in-out infinite .5s; }
.float-1 i { color: var(--wa); }
.float-3 i { color: #f59e0b; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* =============================================
   PRICING
   ============================================= */
.pricing { background: var(--white); }

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

.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  transition: var(--t);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: var(--primary-light);
}

.plan-featured {
  background: var(--grad-soft);
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--sh-xl);
}
.plan-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.feat-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--sh-pri);
}

.plan-top { display: flex; flex-direction: column; }

.plan-icon {
  width: 52px; height: 52px;
  background: var(--primary-bg);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.plan-icon-feat {
  background: var(--grad);
  color: var(--white);
}

.plan-top h3 { margin-bottom: 8px; font-size: 1.15rem; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 8px;
}
.currency    { font-size: 1.35rem; font-weight: 700; color: var(--primary); }
.amount      { font-size: 2.8rem;  font-weight: 800; color: var(--dark); line-height: 1; }
.price-plus  { font-size: 1.7rem;  font-weight: 700; color: var(--dark); line-height: 1; }
.per         { font-size: .82rem;  font-weight: 600; color: var(--muted); }

.plan-desc { color: var(--muted); font-size: .88rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .88rem;
  color: var(--text);
}
.feature-list li i { flex-shrink: 0; font-size: .85rem; }
.feat-yes i { color: var(--wa); }
.feat-no    { opacity: .38; text-decoration: line-through; }
.feat-no i  { color: #ef4444; }

/* =============================================
   BENEFITS
   ============================================= */
.benefits { background: var(--bg); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: var(--t);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary-light);
}
.benefit-icon {
  width: 54px; height: 54px;
  background: var(--grad);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 18px;
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.benefit-card p  { color: var(--muted); font-size: .88rem; line-height: 1.75; }

/* =============================================
   PROCESS
   ============================================= */
.process { background: var(--white); }

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step-arrow {
  color: var(--primary-light);
  font-size: 1.4rem;
  padding: 0 8px;
  flex-shrink: 0;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 34px 26px;
  text-align: center;
  position: relative;
  transition: var(--t);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--primary-light);
  background: var(--white);
}
.step-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .22;
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--grad);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: var(--sh-pri);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p  { color: var(--muted); font-size: .88rem; line-height: 1.75; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--bg); }

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: var(--t);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.testi-featured {
  background: var(--grad-soft);
  border-color: var(--primary-light);
  transform: scale(1.025);
}
.testi-featured:hover { transform: scale(1.025) translateY(-4px); }

.testi-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 14px;
}
.testi-card p {
  color: var(--text);
  font-size: .92rem;
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .92rem; color: var(--dark); }
.testi-author span   { font-size: .78rem; color: var(--muted); }

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio { background: var(--bg); }

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

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  text-decoration: none;
  color: inherit;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: var(--primary-light);
}

/* Image wrapper with overlay */
.portfolio-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--primary-bg);
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  display: block;
}
.portfolio-card:hover .portfolio-img img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 70, 229, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.55);
  padding: 10px 22px;
  border-radius: var(--r-full);
  backdrop-filter: blur(4px);
  transform: translateY(8px);
  transition: var(--t);
}
.portfolio-card:hover .portfolio-overlay span {
  transform: translateY(0);
}

/* Card footer */
.portfolio-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.portfolio-cat {
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}

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

.faq-list {
  max-width: 730px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.open {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: var(--sh-md);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .93rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--t);
}
.faq-q:hover  { color: var(--primary); }
.faq-icon     { flex-shrink: 0; color: var(--primary); transition: var(--t); font-size: .88rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4,0,.2,1);
}
.faq-a p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.82;
}
.faq-item.open .faq-a { max-height: 280px; }

/* =============================================
   FINAL CTA
   ============================================= */
.cta-section {
  position: relative;
  background: var(--grad);
  overflow: hidden;
  text-align: center;
  padding: var(--sec-py) 0;
}
.cta-blob {
  position: absolute;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -220px; right: -180px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.cta-inner h2 {
  color: var(--white);
  margin: 14px 0 18px;
  font-size: clamp(1.7rem,4vw,2.6rem);
}
.cta-inner > p {
  color: rgba(255,255,255,.84);
  font-size: 1.04rem;
  margin-bottom: 38px;
}
.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .83rem;
  margin-top: 22px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand .logo-text.footer-logo-text { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin-top: 14px;
  line-height: 1.72;
  max-width: 250px;
}

.footer-col h4 {
  color: rgba(255,255,255,.55);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { color: rgba(255,255,255,.55); font-size: .88rem; }
.footer-col a:hover { color: var(--white); }

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wa);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--t);
}
.footer-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-wa);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg,#25d366,#1da851);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.48);
  z-index: 900;
  transition: var(--t);
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 14px 36px rgba(37,211,102,.62);
  color: var(--white);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: waPulse 2.6s ease-in-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .65; }
  100% { transform: scale(1.7); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--t);
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* =============================================
   SCROLL REVEAL (custom AOS)
   ============================================= */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"]    { transform: translateY(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0,0); }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  :root { --sec-py: 78px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-visual  { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 0 auto;
  }
  .plan-featured { transform: none; order: -1; }
  .plan-featured:hover { transform: translateY(-6px); }

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

  .steps-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .step-arrow { transform: rotate(90deg); text-align: center; }

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testi-featured { transform: none; }
  .testi-featured:hover { transform: translateY(-4px); }

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

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

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root { --sec-py: 60px; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 270px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 28px 40px;
    gap: 4px;
    box-shadow: var(--sh-xl);
    transition: right .38s cubic-bezier(.4,0,.2,1);
    z-index: 1005;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%;
    font-size: .95rem;
    padding: 12px 16px;
  }
  .nav-cta { margin-top: 8px; }

  .hero-badge { font-size: .74rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .benefits-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

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

  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.55rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .stat-sep   { display: none; }
  .btn-lg     { padding: 15px 26px; font-size: .95rem; }
}
