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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #05080f;
  color: #e5e9f2;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --bg: #05080f;
  --bg-soft: #0a0f1c;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(59, 130, 246, 0.3);
  --text: #e5e9f2;
  --text-muted: #8892a6;
  --text-dim: #5b6478;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --accent: #06b6d4;
  --success: #22c55e;
  --whatsapp: #25d366;
  --whatsapp-hover: #1fb855;
  --max-width: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px -8px rgba(59, 130, 246, 0.35);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

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

/* ===== BACKGROUND DECOR ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  background: radial-gradient(circle, #3b82f6, transparent 70%);
  top: -200px;
  left: -150px;
  animation: float 20s ease-in-out infinite;
}

.bg-glow--2 {
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  top: 30%;
  right: -200px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -40px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-align: center;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -8px rgba(59, 130, 246, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.08);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  width: 100%;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(5, 8, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(5, 8, 15, 0.9);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo__mark {
  display: inline-flex;
}

.logo__text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  gap: 4px;
  align-items: baseline;
}

.logo__text span {
  font-weight: 400;
  color: var(--text-muted);
}

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

.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav a:hover {
  color: #fff;
  background: var(--surface-strong);
}

.header__cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s ease;
  border-radius: 2px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(5, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.mobile-menu a:not(.btn):hover {
  background: var(--surface-strong);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #3b82f6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff, #8892a6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Terminal */
.hero__visual {
  position: relative;
}

.terminal {
  background: linear-gradient(135deg, #0d1321 0%, #0a0f1c 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 50px -15px rgba(59, 130, 246, 0.25);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  position: relative;
}

.terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.15), transparent 50%);
  pointer-events: none;
}

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border);
}

.terminal__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3a4155;
}

.terminal__bar span:nth-child(1) { background: #ff5f56; }
.terminal__bar span:nth-child(2) { background: #ffbd2e; }
.terminal__bar span:nth-child(3) { background: #27c93f; }

.terminal__bar em {
  margin-left: auto;
  font-size: 11px;
  font-style: normal;
  color: var(--text-dim);
  font-family: inherit;
}

.terminal__body {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.terminal__body p {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.7;
}

.t-muted { color: var(--text-dim); }
.t-cmd { color: var(--accent); }
.t-ok { color: var(--success); }
.t-info { color: var(--primary); }
.t-cursor { margin-top: 8px; }
.cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--primary);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.floating-card {
  position: absolute;
  background: rgba(13, 19, 33, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-card--1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.floating-card--2 {
  bottom: 20px;
  right: -30px;
  animation-delay: 1.5s;
}

.fc__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc__icon--accent {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.floating-card strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}

.floating-card span {
  font-size: 11px;
  color: var(--text-dim);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(13, 19, 33, 0.5), transparent);
}

.section__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section__head .eyebrow {
  margin-bottom: 16px;
}

.section__head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section__head p {
  font-size: 17px;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.about__photo {
  position: sticky;
  top: 100px;
}

.about__photo-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.about__avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  position: relative;
  box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.6);
}

.about__avatar::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(59, 130, 246, 0.4);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 500;
}

.about__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.about__chips li {
  padding: 4px 10px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.about__text h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}

.about__role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about__text p {
  font-size: 16px;
  line-height: 1.8;
}

.about__text strong {
  color: var(--text);
  font-weight: 600;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about__highlights strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.about__highlights span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-card h3 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.service-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.service-card--featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.06));
  border-color: rgba(59, 130, 246, 0.3);
}

.service-card--featured .service-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
}

.service-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ===== DIFFERENTIALS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.diff-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.diff-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: var(--surface-strong);
}

.diff-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.diff-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14.5px;
  margin: 0;
}

/* ===== SEGMENTS ===== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.segment-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.segment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-glow);
}

.segment-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.segment-card h3 {
  font-size: 20px;
  color: #fff;
}

.segment-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.segment-card p strong {
  color: var(--text);
}

.segment-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.contact__info {
  padding: 40px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact__info h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin-bottom: 12px;
}

.contact__info > p {
  font-size: 15px;
  margin-bottom: 32px;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.contact-item:not(.contact-item--static):hover {
  border-color: var(--primary);
  background: var(--surface-strong);
  transform: translateX(4px);
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-item__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp);
  border-color: rgba(37, 211, 102, 0.25);
}

.contact-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Form */
.contact__form {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact__form h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238892a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field select option {
  background: var(--bg-soft);
  color: var(--text);
}

.form-status {
  margin: 14px 0 0;
  font-size: 13.5px;
  text-align: center;
  min-height: 18px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: #ef4444;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 24px;
  background: linear-gradient(180deg, transparent, rgba(13, 19, 33, 0.5));
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand .logo {
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 14px;
  max-width: 320px;
}

.footer__col h4 {
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a, .footer__col li {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer__bottom small {
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px -4px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform 0.3s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  background: var(--whatsapp-hover);
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 8px 30px -4px rgba(37, 211, 102, 0.5),
                0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px -4px rgba(37, 211, 102, 0.5),
                0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav, .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    padding: 130px 0 70px;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section {
    padding: 70px 0;
  }

  .section__head {
    margin-bottom: 40px;
  }
}

@media (max-width: 560px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 24px;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact__info, .contact__form {
    padding: 28px 22px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
