/* =============================================
   API CONTAINER — api-style.css
   Design System + All Sections
   ============================================= */

/* ---- FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  /* Colors */
  --bg-deep:         #00060f;
  --bg-surface:      #070d1c;
  --bg-card:         #0c1428;
  --bg-card-hover:   #101a30;
  --color-blue:      #1a5fff;
  --color-blue-bright: #4d8fff;
  --color-blue-glow: rgba(26, 95, 255, 0.35);
  --color-blue-subtle: rgba(26, 95, 255, 0.08);
  --color-white:     #f0f4ff;
  --color-muted:     rgba(240, 244, 255, 0.48);
  --color-border:    rgba(255, 255, 255, 0.07);
  --color-border-blue: rgba(26, 95, 255, 0.25);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 110px;
  --container-max: 1160px;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-blue: 0 0 40px rgba(26,95,255,0.25), 0 0 80px rgba(26,95,255,0.12);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.5);

  /* Transitions */
  --t-fast: 0.15s cubic-bezier(0.4,0,0.2,1);
  --t-med:  0.3s cubic-bezier(0.4,0,0.2,1);
  --t-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }

/* ---- UTILITY ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Reveal animation (Managed by JS to preserve accessibility) */
.reveal { transition: opacity 0.6s var(--t-med), transform 0.6s var(--t-med); }
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: background var(--t-med), backdrop-filter var(--t-med), border-color var(--t-med);
}
.navbar.scrolled {
  background: rgba(0,6,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
}
.nav-logo-icon {
  width: 32px; height: 32px;
}
.nav-logo-text { color: var(--color-white); }
.nav-logo-text span { color: var(--color-blue-bright); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--color-muted);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--color-white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* WhatsApp nav icon button */
.btn-whatsapp-nav {
  width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
  color: var(--color-muted);
  font-size: 1.1rem;
}
.btn-whatsapp-nav:hover {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.3);
  color: #25d366;
}

/* ========================================
   SHINY BUTTON
   ======================================== */
@property --btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.btn-shiny {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--color-white);
  z-index: 0;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-shiny::before {
  content: '';
  position: absolute; inset: -1.5px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--btn-angle),
    transparent 0deg,
    var(--color-blue) 60deg,
    var(--color-blue-bright) 120deg,
    #93c5fd 160deg,
    transparent 200deg
  );
  animation: btn-spin 3s linear infinite;
  z-index: -1;
}
.btn-shiny::after {
  content: '';
  position: absolute; inset: 1px;
  border-radius: calc(var(--radius-pill) - 1px);
  background: linear-gradient(135deg, #0c1a36, #060f22);
  z-index: -1;
}
.btn-shiny:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(26,95,255,0.4);
}
.btn-shiny:active { transform: translateY(0); }
@keyframes btn-spin { to { --btn-angle: 360deg; } }

/* Secondary ghost button */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 500;
  color: var(--color-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.18);
  color: var(--color-white);
  background: rgba(255,255,255,0.04);
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 600;
  color: #25d366;
  background: rgba(37,211,102,0.07);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: rgba(37,211,102,0.14);
  border-color: rgba(37,211,102,0.5);
  box-shadow: 0 0 20px rgba(37,211,102,0.2);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,95,255,0.35) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(77,143,255,0.22) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,95,255,0.15) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation-delay: -6s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%        { transform: translate(20px, -30px) scale(1.05); }
  66%        { transform: translate(-15px, 20px) scale(0.95); }
}

.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: rgba(26,95,255,0.1);
  border: 1px solid var(--color-border-blue);
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600;
  color: var(--color-blue-bright);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-chip::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-blue-bright);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(77,143,255,0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(77,143,255,0); }
}

.hero-eyebrow {
  font-size: 0.82rem; font-weight: 500;
  color: var(--color-blue-bright);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.hero-title-en {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--color-blue-bright) 0%, #93c5fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-muted);
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--color-muted);
  animation: hero-scroll-pulse 2s ease-in-out infinite;
}
.hero-scroll-hint svg { opacity: 0.5; }
@keyframes hero-scroll-pulse {
  0%,100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;   transform: translateX(-50%) translateY(4px); }
}

/* ========================================
   SECTION LABELS (shared)
   ======================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--color-blue-bright);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--color-muted); font-size: 1rem; line-height: 1.7;
  max-width: 560px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}
.services-section .section-label,
.services-section .section-title { text-align: center; display: block; }
.services-section .section-sub { margin: 0 auto 60px; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative; overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(26,95,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--color-border-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26,95,255,0.15);
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--color-blue-subtle);
  border: 1px solid var(--color-border-blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.service-card .service-subtitle {
  font-size: 0.85rem; color: var(--color-blue-bright);
  font-weight: 500; margin-bottom: 16px;
}
.service-card p {
  color: var(--color-muted); font-size: 0.93rem; line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.feature-chip {
  padding: 5px 12px;
  background: rgba(26,95,255,0.06);
  border: 1px solid rgba(26,95,255,0.15);
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 500;
  color: rgba(240,244,255,0.75);
}

.service-price {
  padding: 16px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.service-price .price-from { font-size: 0.72rem; color: var(--color-muted); margin-bottom: 4px; }
.service-price .price-main { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.service-price .price-note { font-size: 0.75rem; color: var(--color-muted); margin-top: 4px; }

/* ========================================
   DEVICE SHOWCASE (dark bento)
   ======================================== */
.showcase-section {
  padding: var(--section-pad) 0;
  background: #03070f;
  text-align: center;
  overflow: hidden;
}
.showcase-section .section-label { margin-bottom: 12px; }
.showcase-section .section-title { margin-bottom: 12px; }
.showcase-section .section-sub { margin: 0 auto 16px; }
.showcase-section .section-title-en {
  font-size: 0.88rem; font-weight: 400;
  color: var(--color-blue-bright); margin: 0 auto 64px;
  letter-spacing: 0.01em;
}

/* Device frames stage */
.device-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 380px;
  padding: 0 24px;
}

/* Phone frame */
.device-phone {
  width: 160px; flex-shrink: 0;
  background: #111827;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(26,95,255,0.2);
  position: relative; bottom: 0;
}
.device-phone-inner { padding: 8px; }
.device-phone-notch {
  width: 50px; height: 8px; border-radius: 4px;
  background: #1f2937; margin: 0 auto 8px;
}
.device-phone-screen {
  background: var(--bg-surface);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/18;
  display: flex; flex-direction: column;
}
.device-phone-screen.ai-chat { padding: 16px 12px; gap: 8px; }

/* Phone left — analytics */
.device-phone.phone-left { transform: rotate(-4deg) translateY(20px); z-index: 1; }
/* Phone right — chat */
.device-phone.phone-right { transform: rotate(4deg) translateY(30px); z-index: 1; }

/* Tablet/Desktop center */
.device-tablet {
  width: 420px; flex-shrink: 0;
  background: #111827;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(26,95,255,0.25);
  z-index: 5; margin: 0 -20px; position: relative;
}
.device-tablet-bar {
  height: 32px; background: #1f2937;
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
}
.device-tablet-bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.device-tablet-screen {
  aspect-ratio: 16/10;
  background: var(--bg-surface);
  overflow: hidden; position: relative;
}

/* Laptop right */
.device-laptop {
  width: 340px; flex-shrink: 0;
  z-index: 2; transform: translateX(-20px) translateY(15px);
}
.device-laptop-screen {
  background: #111827;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.device-laptop-base {
  height: 16px; background: #1f2937;
  border-radius: 0 0 6px 6px;
  margin: 0 20px;
}
.device-laptop-body {
  background: var(--bg-deep);
  aspect-ratio: 16/10;
  overflow: hidden; position: relative;
}

/* Mockup UI content inside devices */
.chat-msg {
  padding: 8px 10px; border-radius: 12px;
  font-size: 0.65rem; line-height: 1.4; max-width: 85%;
}
.chat-msg.bot { background: rgba(26,95,255,0.2); border: 1px solid var(--color-border-blue); align-self: flex-start; }
.chat-msg.user { background: var(--color-blue); align-self: flex-end; color: white; }

.mockup-dashboard {
  width: 100%; height: 100%;
  background: #0c1428; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.mockup-row { display: flex; gap: 10px; }
.mockup-stat {
  flex: 1; background: rgba(26,95,255,0.08);
  border: 1px solid var(--color-border-blue);
  border-radius: 10px; padding: 12px;
  min-height: 60px;
}
.mockup-stat-val {
  font-size: 1.1rem; font-weight: 800;
  color: var(--color-blue-bright);
}
.mockup-stat-lbl { font-size: 0.6rem; color: var(--color-muted); }
.mockup-chart { flex: 1; background: rgba(255,255,255,0.03); border-radius: 10px; min-height: 100px; overflow: hidden; position: relative; }
.chart-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 70%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
  clip-path: polygon(0% 80%, 15% 60%, 30% 70%, 45% 40%, 60% 50%, 75% 25%, 90% 35%, 100% 10%, 100% 100%, 0% 100%);
  opacity: 0.4;
}
.chart-line::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--color-blue), transparent);
  height: 60%; opacity: 0.6;
  clip-path: inherit;
}

/* Showcase deploy badge */
.showcase-deploy-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: rgba(26,95,255,0.08);
  border: 1px solid var(--color-border-blue);
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 500;
  color: var(--color-blue-bright);
  margin-top: 48px;
}
.showcase-deploy-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
}

/* ========================================
   AI AGENTS FEATURE SECTION
   ======================================== */
.agents-section {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}
.agents-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.agents-content .section-sub { margin-bottom: 32px; }

.channels-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.channel-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600;
  background: var(--bg-card);
}
.channel-badge.wa { border-color: rgba(37,211,102,0.3); color: #25d366; }
.channel-badge.ig { border-color: rgba(225,48,108,0.3); color: #e1306c; }
.channel-badge.ms { border-color: rgba(0,120,255,0.3); color: #0078ff; }

.agents-steps { display: flex; flex-direction: column; gap: 0; }
.agents-step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.agents-step:last-child { border-bottom: none; }
.step-num {
  font-size: 1.6rem; font-weight: 900;
  color: var(--color-blue); letter-spacing: -0.04em;
  flex-shrink: 0; width: 36px; line-height: 1;
  margin-top: 2px;
}
.step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.step-body p  { font-size: 0.88rem; color: var(--color-muted); line-height: 1.6; }

/* Agent visual — floating chat UI */
.agents-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.agent-phone-mock {
  width: 220px;
  background: #0e1929;
  border: 2px solid rgba(26,95,255,0.25);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  position: relative;
}
.agent-phone-top {
  background: var(--color-blue);
  padding: 14px 18px 14px;
  display: flex; align-items: center; gap: 10px;
}
.agent-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.agent-info h5 { font-size: 0.82rem; font-weight: 700; color: white; }
.agent-info span { font-size: 0.68rem; color: rgba(255,255,255,0.75); }
.agent-online {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; margin-left: auto;
  box-shadow: 0 0 8px #4ade80;
}

.agent-msgs {
  padding: 16px 12px; display: flex; flex-direction: column; gap: 10px;
  min-height: 280px;
}
.agent-msg {
  padding: 10px 12px; border-radius: 14px;
  font-size: 0.72rem; line-height: 1.5; max-width: 80%;
}
.agent-msg.in  { background: #1a2540; border: 1px solid rgba(26,95,255,0.15); }
.agent-msg.out { background: var(--color-blue); align-self: flex-end; color: white; }
.agent-msg .msg-time { font-size: 0.6rem; opacity: 0.6; margin-top: 4px; }

.agent-typing-bar {
  padding: 10px 14px;
  background: #09111f;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
}
.typing-input {
  flex: 1; height: 28px; border-radius: 14px;
  background: rgba(255,255,255,0.06); border: none;
}
.typing-send {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: white;
}

/* floating badge on agent visual */
.agent-floating-badge {
  position: absolute; top: -16px; right: -20px;
  background: #111e38; border: 1px solid var(--color-border-blue);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.75rem; font-weight: 600;
  box-shadow: var(--shadow-card);
  animation: float-card 4s ease-in-out infinite;
}
.agent-floating-badge .fbadge-num {
  font-size: 1.2rem; font-weight: 900; color: #4ade80; display: block; line-height: 1;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ========================================
   WEBSITES FEATURE SECTION
   ======================================== */
.websites-section {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  position: relative; overflow: hidden;
}
.websites-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,95,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.websites-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.websites-types {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px;
}
.website-type-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.website-type-card:hover { border-color: var(--color-border-blue); background: var(--bg-card-hover); }
.website-type-card .wt-icon { font-size: 1.4rem; margin-bottom: 10px; }
.website-type-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.website-type-card p  { font-size: 0.78rem; color: var(--color-muted); line-height: 1.55; }

/* Website visual — browser mockup */
.website-browser-mock {
  background: #0e1929;
  border: 2px solid rgba(26,95,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}
.browser-bar {
  background: #111e38;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.browser-url {
  flex: 1; height: 22px; background: rgba(255,255,255,0.05);
  border-radius: 4px; margin: 0 12px;
  display: flex; align-items: center; padding: 0 10px;
  font-size: 0.65rem; color: var(--color-muted); font-family: monospace;
}
.browser-body {
  min-height: 260px; background: var(--bg-card);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.browser-hero-mock {
  background: linear-gradient(135deg, var(--color-blue), #0a1a40);
  border-radius: 10px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.browser-hero-text { font-size: 0.85rem; font-weight: 800; text-align: center; }
.browser-section-mock {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.bsm-card {
  background: var(--bg-surface); border: 1px solid var(--color-border);
  border-radius: 8px; height: 52px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  overflow: hidden;
}
.testimonials-section .section-label,
.testimonials-section .section-title { text-align: center; display: block; }
.testimonials-section .section-sub { margin: 0 auto 56px; text-align: center; }

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

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--t-med), transform var(--t-med);
}
.testi-card:hover { border-color: var(--color-border-blue); transform: translateY(-4px); }

.testi-quote-mark {
  font-size: 3rem; line-height: 1;
  color: var(--color-blue); font-weight: 900;
  margin-bottom: 12px; user-select: none;
}
.testi-quote {
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(240,244,255,0.82);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: white; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; }
.testi-role { font-size: 0.75rem; color: var(--color-muted); }

/* ========================================
   PRICING — ANIMATED TABS
   ======================================== */
.pricing-section {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}
.pricing-section .section-label,
.pricing-section .section-title { text-align: center; display: block; }
.pricing-section .section-sub { margin: 0 auto 48px; text-align: center; }

/* Animated tabs */
.pricing-tabs-wrap { display: flex; justify-content: center; margin-bottom: 56px; }
.pricing-tabs {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 4px;
  display: inline-flex;
}
.pricing-tabs .tab-slider {
  position: absolute; top: 4px; bottom: 4px; left: 4px;
  background: var(--color-blue);
  border-radius: var(--radius-pill);
  transition: left var(--t-med), width var(--t-med);
  z-index: 0;
}
.pricing-tab {
  position: relative; z-index: 1;
  padding: 10px 28px;
  border: none; background: transparent;
  border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.pricing-tab.active { color: white; }

/* Pricing panels */
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: fadeUp 0.35s var(--t-med) forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto; }
.pricing-cards.single { grid-template-columns: 1fr; max-width: 400px; }

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: 36px;
  position: relative; transition: border-color var(--t-med), transform var(--t-med);
}
.price-card.featured {
  border-color: var(--color-border-blue);
  background: linear-gradient(160deg, #0d1e3d, #0a1428);
  box-shadow: 0 0 40px rgba(26,95,255,0.2);
}
.price-card:hover { transform: translateY(-4px); }

.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-blue); color: white;
  padding: 4px 16px; border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  white-space: nowrap;
}

.price-plan { font-size: 0.78rem; font-weight: 700; color: var(--color-blue-bright); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.price-headline { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.price-amount { font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 4px; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--color-muted); }
.price-desc { font-size: 0.82rem; color: var(--color-muted); margin-bottom: 24px; line-height: 1.6; }

.price-features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: rgba(240,244,255,0.8);
}
.price-features-list li::before {
  content: '✓'; color: #4ade80; font-weight: 800;
  font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
}

/* ========================================
   CTA SECTION — BLUE GRADIENT
   ======================================== */
.cta-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #ffffff 0%, #BBCEFF 30%, #6690FF 55%, #1a5fff 75%, #0d3acc 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(0,0,0,0.15), transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  color: white; text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  margin-bottom: 14px;
}
.cta-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8); margin-bottom: 40px;
}
.cta-sub-en {
  font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-shiny-light {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 700;
  cursor: pointer; border: none;
  background: white; color: #0d3acc;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-shiny-light:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.btn-whatsapp-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 700;
  color: white; background: rgba(255,255,255,0.1);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-whatsapp-cta:hover { background: rgba(255,255,255,0.2); border-color: white; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #02050c;
  border-top: 1px solid var(--color-border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.87rem; color: var(--color-muted); line-height: 1.7; max-width: 260px;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--color-muted);
  transition: all var(--t-fast);
}
.footer-social a:hover { border-color: var(--color-border-blue); color: var(--color-blue-bright); }

.footer-col h4 {
  font-size: 0.8rem; font-weight: 700;
  color: rgba(240,244,255,0.5); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.88rem; color: var(--color-muted); transition: color var(--t-fast); }
.footer-col ul a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--color-border);
  font-size: 0.8rem; color: var(--color-muted);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--color-muted); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--color-white); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .services-grid        { grid-template-columns: 1fr; }
  .agents-inner         { grid-template-columns: 1fr; gap: 60px; }
  .websites-inner       { grid-template-columns: 1fr; gap: 60px; }
  .testi-grid           { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .device-stage         { min-height: 280px; }
  .device-tablet        { width: 300px; }
  .device-laptop        { width: 240px; }
  .device-phone         { width: 120px; }
}
@media (max-width: 768px) {
  .nav-links            { display: none; }
  .testi-grid           { grid-template-columns: 1fr; }
  .pricing-cards        { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .device-laptop        { display: none; }
  .device-phone.phone-left { display: none; }
  .device-stage         { min-height: 220px; }
  .websites-types       { grid-template-columns: 1fr; }
  .hero-actions         { flex-direction: column; align-items: center; }
  .cta-actions          { flex-direction: column; align-items: center; }
  .footer-bottom        { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title           { font-size: 2.6rem; }
  .footer-grid          { grid-template-columns: 1fr; }
  .service-card         { padding: 28px 22px; }
  .device-tablet        { width: 240px; }
}
