/* ============================================================
   TWS — The Web Seller | CSS
   ============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0F172A; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* VARIABLES */
:root {
  --primary: #FF2A42;
  --primary-hover: #E11D48;
  --coral: #FF6B4A;
  --dark: #0F172A;
  --navy: #0B0F19;
  --text: #0F172A;
  --muted: #475569;
  --light: #94A3B8;
  --border: #E2E8F0;
  --bg: #F8FAFC;
  --grad: linear-gradient(135deg, #FF2A42, #FF6B4A);
  --grad-dark: linear-gradient(135deg, #0F172A, #1E293B);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

/* ============================================================ NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 12px 0;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-full {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.25s ease;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
.navbar.scrolled .logo-full { height: 54px; }
.logo:hover .logo-full { transform: scale(1.03); }
.logo-sm .logo-full { height: 54px; }
.nav-links { display: flex; list-style: none; gap: 32px; margin-left: auto; }
.nav-links a { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #fff; text-shadow: 0 0 8px rgba(255,42,66,0.6); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  padding: 12px 24px; border-radius: 8px; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 20px rgba(255, 42, 66, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 42, 66, 0.55); }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.2); }
.btn-ghost:hover { border-color: var(--primary); background: rgba(255, 42, 66, 0.12); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-gradient { background: var(--grad); color: #fff; box-shadow: 0 4px 16px rgba(255, 42, 66, 0.35); }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 42, 66, 0.5); }
.btn-nav { background: var(--grad); color: #fff; padding: 10px 22px; font-size: 14px; margin-left: auto; border-radius: 8px; }
.btn-large { padding: 16px 36px; font-size: 16px; border-radius: 10px; }

/* ============================================================ HERO */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  background: #0B0F19;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 50% 20%, #151C2C 0%, #0B0F19 75%); }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.45;
}
.orb-1 { width: 550px; height: 550px; background: radial-gradient(circle, #FF2A42, transparent 70%); top: -120px; left: -100px; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 450px; height: 450px; background: radial-gradient(circle, #FF6B4A, transparent 70%); bottom: -60px; right: -80px; animation: float 10s ease-in-out infinite reverse; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 860px; margin: 0 auto;
  padding: 150px 24px 100px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 13px; color: #FFA494;
  background: rgba(255, 42, 66, 0.1); border: 1px solid rgba(255, 42, 66, 0.3);
  border-radius: 999px; padding: 7px 18px; margin-bottom: 30px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800; line-height: 1.12; color: #F8FAFC; margin-bottom: 24px;
  letter-spacing: -1px;
}
.gradient-text { background: linear-gradient(135deg, #FF455B, #FF8266); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 19px; color: rgba(255, 255, 255, 0.72); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-stats {
  display: flex; gap: 48px; justify-content: center; align-items: center;
  margin-top: 24px; padding-top: 36px; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 40px; font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.stat-label { font-size: 13px; color: var(--light); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(79,70,229,0.15); }
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(79,70,229,0.3); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero-scroll-indicator span { width: 3px; height: 8px; background: var(--violet); border-radius: 2px; animation: bounce 2s ease-in-out infinite; }

/* ============================================================ PROOF BAND */
.proof-band { background: var(--bg); padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-label { font-size: 12px; color: var(--light); text-align: center; margin-bottom: 16px; font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
.proof-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.proof-item { font-size: 14px; color: var(--muted); padding: 8px 18px; background: #fff; border-radius: 999px; border: 1px solid var(--border); font-weight: 500; }

/* ============================================================ SECTIONS */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-tinted { background: var(--bg); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-tag {
  display: inline-block; font-family: 'DM Mono', monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--violet);
  background: rgba(124,58,237,0.08); padding: 5px 14px; border-radius: 4px;
  margin-bottom: 16px;
}
.section-dark .section-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.section-dark .section-title { color: #fff; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.75; }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ============================================================ SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); transition: all 0.3s ease;
  opacity: 0; transform: translateY(24px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(79,70,229,0.1); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  color: var(--c);
}
.service-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================ STEPS */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px; background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateY(24px); transition: all 0.5s ease;
}
.step.visible { opacity: 1; transform: translateY(0); }
.step-num { font-family: 'DM Mono', monospace; font-size: 52px; font-weight: 500; color: rgba(255,255,255,0.12); line-height: 1; flex-shrink: 0; min-width: 60px; }
.step-content h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step-content p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ============================================================ PRICING */
.setup-banner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(124,58,237,0.07), rgba(79,70,229,0.07));
  border: 1px solid rgba(124,58,237,0.2); border-radius: var(--radius);
  padding: 16px 24px; margin-bottom: 48px; font-size: 15px; color: var(--muted);
}
.setup-badge { background: var(--violet); color: #fff; font-family: 'DM Mono', monospace; font-size: 11px; padding: 4px 10px; border-radius: 4px; flex-shrink: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; position: relative;
  opacity: 0; transform: translateY(24px); transition: all 0.5s ease;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-featured { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(79,70,229,0.15); transform: scale(1.02); }
.pricing-featured.visible { transform: scale(1.02) translateY(0); }
.pricing-pro { background: linear-gradient(160deg, #1E1B4B, #312E81); border-color: transparent; color: #fff; }
.plan-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: 'DM Mono', monospace;
  font-size: 11px; padding: 5px 18px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--violet); margin-bottom: 16px; }
.pricing-pro .plan-name { color: rgba(255,255,255,0.6); }
.plan-price { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.plan-price span:first-of-type { font-size: 48px; font-weight: 700; color: var(--navy); }
.pricing-pro .plan-price span:first-of-type { color: #fff; }
.plan-period { font-size: 16px; font-weight: 400; color: var(--light); }
.plan-duration { font-size: 13px; color: var(--light); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-pro .plan-duration { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--muted); }
.pricing-pro .plan-features li { color: rgba(255,255,255,0.7); }
.pricing-note { text-align: center; font-size: 13px; color: var(--light); margin-top: 24px; }
.performance-banner {
  background: linear-gradient(135deg, rgba(255, 42, 66, 0.05), rgba(255, 107, 74, 0.08));
  border: 1.5px dashed rgba(255, 42, 66, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.performance-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.performance-badge {
  background: var(--grad);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.performance-content p {
  font-size: 14px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.6;
}

/* ============================================================ TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 20px;
  opacity: 0; transform: translateY(24px); transition: all 0.5s ease;
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-kpi { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.kpi-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; line-height: 1.1; }
.kpi-label { font-size: 13px; color: var(--light); margin-top: 4px; display: block; }
.testimonial-card blockquote { font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.75; flex: 1; }
.testimonial-author { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-author strong { font-family: var(--font-display); font-size: 14px; font-weight: 600; display: block; }
.testimonial-author span { font-size: 12px; color: var(--light); }

/* ============================================================ FAQ */
.faq-container { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: all 0.25s ease;
  opacity: 0; transform: translateY(20px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:hover { border-color: rgba(255, 42, 66, 0.35); box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 8px 28px rgba(255, 42, 66, 0.1); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; background: transparent; border: none; text-align: left;
  cursor: pointer; font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--navy); transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s ease; color: var(--muted);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg); background: var(--primary); color: #fff;
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer {
  max-height: 400px; padding: 0 26px 24px;
}
.faq-answer p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-answer strong { color: var(--navy); }

/* ============================================================ CTA & CONTACT SECTION */
.cta-section { position: relative; overflow: hidden; background: linear-gradient(145deg, #0B0F19 0%, #131A2A 50%, #0B0F19 100%); padding: 100px 0; color: #fff; }
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.cta-orb { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 450px; background: radial-gradient(circle, rgba(255,42,66,0.18) 0%, transparent 70%); filter: blur(100px); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; }
.contact-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.cta-section .section-tag { background: rgba(255,42,66,0.12); color: #FFA494; border: 1px solid rgba(255,42,66,0.3); margin-bottom: 20px; }
.cta-title { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 48px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0 auto; }

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: start;
}

/* DIRECT CARDS (LEFT) */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.direct-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}
.direct-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}
.direct-card.wa-card {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(18, 140, 126, 0.05));
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.12);
}
.direct-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: pulse 1.8s infinite;
}
.direct-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.wa-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.mail-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 42, 66, 0.12);
  border: 1px solid rgba(255, 42, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.direct-icon-wrap h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.direct-icon-wrap p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.direct-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.btn-wa:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.email-address-link {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #FF6B4A;
  text-decoration: none;
  word-break: break-all;
  display: inline-block;
  transition: color 0.2s;
}
.email-address-link:hover {
  color: #fff;
  text-decoration: underline;
}
.contact-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.guarantee-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* CONTACT FORM CARD (RIGHT) */
.contact-form-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s;
}
.contact-form-card.form-highlight {
  box-shadow: 0 0 0 3px var(--primary), 0 20px 50px rgba(255, 42, 66, 0.25);
}
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.form-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-control:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(255, 42, 66, 0.25);
}
.form-select {
  cursor: pointer;
  background-color: #0F172A;
}
.form-select option {
  background-color: #0F172A;
  color: #fff;
  padding: 8px;
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.btn-block {
  width: 100%;
  box-sizing: border-box;
}
.btn-submit {
  font-size: 16px;
  padding: 15px 24px;
  margin-top: 8px;
}
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.form-status.success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #A7F3D0;
}

/* QUICK WA LINKS UNDER PRICING CARDS */
.plan-wa-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  margin-top: 10px;
  font-weight: 500;
  transition: color 0.2s;
}
.plan-wa-link:hover {
  color: #25D366;
  text-decoration: underline;
}
.plan-wa-light {
  color: rgba(255, 255, 255, 0.6);
}
.plan-wa-light:hover {
  color: #25D366;
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}
.floating-wa-label {
  position: absolute;
  right: 72px;
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.floating-wa:hover .floating-wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================ FOOTER */
.footer { background: var(--navy); padding-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2.5fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; line-height: 1.75; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { padding: 24px 0; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 14px; }
.footer-legal-bar { display: flex; align-items: center; gap: 10px; }
.footer-legal-bar a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-legal-bar a:hover { color: #FFFFFF; }
.dot-sep { color: rgba(255,255,255,0.2); }

/* ============================================================ FORM GDPR CHECKBOX */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 24px;
  padding: 12px 14px;
  background: rgba(241, 245, 249, 0.7);
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: left;
}
.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox-group label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}
.form-checkbox-group label a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}
.form-checkbox-group label a:hover {
  color: var(--primary-dark);
}

/* ============================================================ COOKIE BANNER (GDPR) */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 980px;
  margin: 0 auto;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  border-radius: 16px;
  padding: 22px 28px;
  animation: cookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-content {
  flex: 1;
}

.cookie-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 6px;
  transition: all 0.2s;
}

.cookie-close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.cookie-desc a {
  color: #38BDF8;
  text-decoration: underline;
}

.cookie-desc a:hover {
  color: #7DD3FC;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--gradient-primary);
  color: #FFFFFF !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF !important;
}

/* ============================================================ LEGAL PAGES (Privacy & Cookie) */
.legal-page {
  background: #0F172A;
  color: #E2E8F0;
  min-height: 100vh;
}

.legal-page .navbar {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-main {
  padding: 140px 0 80px;
}

.legal-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.legal-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 16px 0 12px;
  line-height: 1.2;
}

.legal-sub {
  font-size: 15px;
  color: #94A3B8;
}

.legal-body {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.legal-block {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #38BDF8;
  margin: 18px 0 8px;
}

.legal-block p {
  font-size: 15px;
  line-height: 1.75;
  color: #CBD5E1;
  margin-bottom: 12px;
}

.legal-block ul {
  padding-left: 20px;
  margin: 12px 0 16px;
}

.legal-block li {
  font-size: 14px;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 8px;
}

.legal-block strong {
  color: #FFFFFF;
}

.legal-block a {
  color: #38BDF8;
  text-decoration: underline;
}

.legal-block a:hover {
  color: #7DD3FC;
}

.legal-block code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #38BDF8;
}

.legal-back-cta {
  max-width: 860px;
  margin: 36px auto 0;
  text-align: center;
}

/* ============================================================ SCROLL PROGRESS BAR */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-primary);
  z-index: 999999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

/* ============================================================ DIRECT COPY CHIPS */
.direct-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.direct-copy-row .direct-number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}
.direct-copy-row .email-address-link {
  font-size: 15px;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.direct-copy-row .email-address-link:hover {
  color: #38BDF8;
}
.btn-copy-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-copy-chip:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.btn-copy-chip:active {
  transform: translateY(0);
}

/* ============================================================ BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.45);
}

/* ============================================================ TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: #0F172A;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================ KEYFRAMES */
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-24px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.3); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-featured { transform: none; }
  .pricing-featured.visible { transform: none; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .logo-full { height: 50px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 18px 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .btn-cookie-accept, .btn-cookie-reject { width: 100%; text-align: center; justify-content: center; }
  .legal-body { padding: 28px 20px; }
  .legal-title { font-size: 26px; }
  .footer-bottom-flex { flex-direction: column; text-align: center; gap: 14px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .hero-inner { padding-top: 120px; }
  .footer-links { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .floating-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .floating-wa-label { display: none; }
  .back-to-top { bottom: 84px; right: 20px; width: 40px; height: 40px; }
  .direct-copy-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .direct-copy-row .btn-copy-chip { align-self: flex-end; }
}
