/* ═══════════════════════════════════════════
   RED ENTRE RIOS – styles.css
   ═══════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --orange: #F07000;
  --orange-dark: #C45A00;
  --orange-glow: rgba(240,112,0,0.18);
  --bg: #0A0A0C;
  --bg2: #14141A;
  --bg3: #1C1C24;
  --text: #F5F4FA;
  --muted: #A8A8BB;
  --border: rgba(255,255,255,0.10);
  --card: rgba(255,255,255,0.06);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── BASE ─── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16.5px;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 84px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--muted);
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .5px;
  transition: color .2s;
}

nav a:hover { color: rgba(255,255,255,0.7); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
  transition: background .2s, box-shadow .2s !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  box-shadow: 0 0 20px var(--orange-glow);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(240,112,0,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(240,112,0,0.05) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  max-width: 580px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  animation: fadeInUp .6s ease both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s infinite;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeInUp .6s .1s ease both;
}

h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-desc {
  font-size: 18px;
  color: #C0BFCC;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeInUp .6s .2s ease both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .6s .3s ease both;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(240,112,0,0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,112,0,0.4);
}

.btn-primary img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--card);
}

/* ─── HERO RIGHT CARDS ─── */
.hero-right {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(480px, 42vw);
  z-index: 1;
  animation: fadeInRight .8s .2s ease both;
}

.hero-mini-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.hero-mini-label {
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
}

.stat-num span { color: var(--orange); }

.stat-lbl {
  font-size: 13px;
  color: #AAAABB;
  margin-top: 6px;
  letter-spacing: .5px;
}

/* ─── SECTIONS ─── */
section { padding: 100px 5%; position: relative; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-sub {
  color: #B8B8CC;
  font-size: 17px;
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 64px;
  line-height: 1.7;
}

/* ─── APPS GRID ─── */
#apps { background: var(--bg); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.app-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: default;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,112,0,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(240,112,0,0.15);
}

.app-screen {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Mock backgrounds */
.mock-gestion  { background: linear-gradient(135deg, #0f1923 0%, #162233 100%); }
.mock-turnero  { background: linear-gradient(135deg, #0d1f1d 0%, #0a2e29 100%); }
.mock-stock    { background: linear-gradient(135deg, #1a1508 0%, #2a2010 100%); }
.mock-sorteo   { background: linear-gradient(135deg, #1a0f1f 0%, #2d0d3a 100%); }
.mock-tarjeta  { background: linear-gradient(135deg, #08131a 0%, #0d2030 100%); }
.mock-mensajes { background: linear-gradient(135deg, #121a0d 0%, #1e2d10 100%); }
.mock-cabanas  { background: linear-gradient(135deg, #0d1a13 0%, #112b1c 100%); }
.mock-web      { background: linear-gradient(135deg, #1a0a0d 0%, #2e0f14 100%); }

.app-mockup-inner {
  width: 90%;
  height: 80%;
  border-radius: 8px;
  overflow: hidden;
}

/* ─── UI WINDOW ─── */
.ui-window {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.ui-titlebar {
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}

.ui-dot { width: 8px; height: 8px; border-radius: 50%; }

/* Gestión Pro */
.gestion-ui .ui-titlebar  { background: #1c2a3a; }
.gestion-ui .ui-main      { display: flex; height: calc(100% - 28px); }
.gestion-ui .sidebar      { width: 70px; background: #111d2b; padding: 8px 0; }
.gestion-ui .sidebar-item { height: 32px; margin: 2px 8px; border-radius: 6px; background: rgba(255,255,255,0.05); }
.gestion-ui .sidebar-item.active { background: rgba(240,112,0,0.3); }
.gestion-ui .content      { flex: 1; padding: 10px; background: #162233; }
.gestion-ui .row          { display: flex; gap: 6px; margin-bottom: 6px; }
.gestion-ui .kpi          { flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px; height: 38px; position: relative; overflow: hidden; }
.gestion-ui .kpi::after   { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); border-radius: 2px; }
.gestion-ui .table-row    { height: 20px; background: rgba(255,255,255,0.04); border-radius: 4px; margin-bottom: 4px; }
.gestion-ui .table-row.header { background: rgba(255,255,255,0.08); }

/* Turnero */
.turnero-ui .ui-titlebar   { background: #0d2b28; }
.turnero-ui .ui-body-main  { height: calc(100% - 28px); background: #0e2421; padding: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.turnero-ui .calendar      { background: rgba(255,255,255,0.05); border-radius: 6px; }
.turnero-ui .queue         { background: rgba(255,255,255,0.05); border-radius: 6px; padding: 6px; }
.turnero-ui .q-item        { height: 18px; background: rgba(255,255,255,0.06); border-radius: 4px; margin-bottom: 4px; }
.turnero-ui .q-item.active { background: rgba(29,185,84,0.3); }

/* StockPro */
.stock-ui .ui-titlebar    { background: #2a1f08; }
.stock-ui .ui-body-main   { height: calc(100% - 28px); background: #1f1808; padding: 10px; }
.stock-ui .search         { height: 24px; background: rgba(255,255,255,0.08); border-radius: 6px; margin-bottom: 8px; }
.stock-ui .item-row       { display: flex; gap: 6px; margin-bottom: 5px; align-items: center; }
.stock-ui .item-bar       { flex: 1; height: 14px; background: rgba(255,255,255,0.05); border-radius: 4px; }
.stock-ui .item-bar.low::after { content: ''; display: block; height: 100%; width: 20%; background: rgba(255,100,0,0.5); border-radius: 4px; }
.stock-ui .item-bar.ok::after  { content: ''; display: block; height: 100%; width: 70%; background: rgba(240,112,0,0.4); border-radius: 4px; }
.stock-ui .item-tag       { width: 28px; height: 14px; background: rgba(255,255,255,0.1); border-radius: 3px; }

/* Sorteos */
.sorteo-ui .ui-titlebar   { background: #1f0d2a; }
.sorteo-ui .ui-body-main  { height: calc(100% - 28px); background: #16091f; padding: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.sorteo-ui .drum          { width: 60px; height: 60px; border-radius: 50%; border: 2px solid rgba(180,50,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 0 20px rgba(180,50,255,0.2); }
.sorteo-ui .tickets       { display: flex; gap: 4px; }
.sorteo-ui .ticket        { width: 20px; height: 30px; background: linear-gradient(135deg, rgba(180,50,255,0.3), rgba(240,112,0,0.3)); border-radius: 3px; }

/* Tarjeta */
.tarjeta-ui .ui-titlebar   { background: #081520; }
.tarjeta-ui .ui-body-main  { height: calc(100% - 28px); background: #09131d; padding: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.tarjeta-ui .card-vis      { width: 120px; height: 70px; border-radius: 8px; background: linear-gradient(135deg, #1a3a5c 0%, #0d2240 100%); border: 1px solid rgba(100,180,255,0.2); box-shadow: 0 4px 20px rgba(0,50,100,0.4); position: relative; overflow: hidden; }
.tarjeta-ui .card-vis::before { content: ''; position: absolute; top: -15px; right: -15px; width: 50px; height: 50px; border-radius: 50%; background: rgba(100,180,255,0.08); }
.tarjeta-ui .stamp-row     { display: flex; gap: 5px; }
.tarjeta-ui .stamp         { width: 14px; height: 14px; border-radius: 50%; background: rgba(100,180,255,0.15); border: 1px solid rgba(100,180,255,0.3); }
.tarjeta-ui .stamp.filled  { background: rgba(100,180,255,0.5); }

/* Mensajes */
.mensajes-ui .ui-titlebar  { background: #131d0d; }
.mensajes-ui .ui-body-main { height: calc(100% - 28px); background: #0f180a; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.mensajes-ui .msg          { height: 22px; border-radius: 10px; }
.mensajes-ui .msg.out      { background: rgba(37,211,102,0.25); align-self: flex-end; width: 70%; }
.mensajes-ui .msg.in       { background: rgba(255,255,255,0.07); width: 65%; }
.mensajes-ui .compose      { height: 26px; background: rgba(255,255,255,0.06); border-radius: 14px; margin-top: auto; }

/* Cabañas */
.cabanas-ui .ui-titlebar   { background: #0d1f15; }
.cabanas-ui .ui-body-main  { height: calc(100% - 28px); background: #0a1a10; padding: 10px; }
.cabanas-ui .img-row       { display: flex; gap: 6px; margin-bottom: 8px; }
.cabanas-ui .cabin-thumb   { flex: 1; height: 36px; border-radius: 6px; background: linear-gradient(135deg, rgba(50,150,80,0.3), rgba(30,100,50,0.3)); }
.cabanas-ui .dates         { display: flex; gap: 4px; }
.cabanas-ui .date-cell     { flex: 1; height: 18px; border-radius: 4px; background: rgba(255,255,255,0.05); }
.cabanas-ui .date-cell.booked { background: rgba(240,112,0,0.3); }
.cabanas-ui .date-cell.avail  { background: rgba(50,200,100,0.25); }

/* Web */
.web-ui .ui-titlebar  { background: #2e0f14; }
.web-ui .ui-body-main { height: calc(100% - 28px); background: #1f0a0d; padding: 10px; }
.web-ui .hero-mock    { height: 40px; background: linear-gradient(90deg, rgba(240,112,0,0.2) 0%, transparent 100%); border-radius: 6px; margin-bottom: 8px; }
.web-ui .blocks       { display: flex; gap: 6px; }
.web-ui .block        { flex: 1; height: 30px; border-radius: 6px; background: rgba(255,255,255,0.04); }

/* ─── APP INFO ─── */
.app-info { padding: 20px 22px; }

.app-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F08030;
  margin-bottom: 8px;
}

.app-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}

.app-desc {
  font-size: 14.5px;
  color: #B8B8CC;
  line-height: 1.6;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.feat-tag {
  font-size: 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 3px 10px;
  color: #AAAABB;
}

/* ─── SERVICES ─── */
#servicios { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,112,0,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.4px;
  margin-bottom: 12px;
}

.service-desc {
  color: #B8B8CC;
  font-size: 14.5px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-top: 20px;
}

.service-list li {
  font-size: 13px;
  color: #B0B0C8;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service-list li:last-child { border-bottom: none; }

/* ─── PROCESS ─── */
#proceso { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 64px;
}

.step {
  background: var(--bg3);
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: background .3s;
}

.step:first-child { border-radius: 16px 4px 4px 16px; }
.step:last-child  { border-radius: 4px 16px 16px 4px; }
.step:hover       { background: var(--bg2); }

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -3px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.step-desc { font-size: 14.5px; color: #B8B8CC; line-height: 1.6; }

/* ─── CONTACT ─── */
#contacto { background: var(--bg2); position: relative; overflow: hidden; }

#contacto::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,112,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .3s, transform .2s, box-shadow .3s;
}

.contact-item:hover {
  border-color: rgba(240,112,0,0.4);
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--orange);
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.contact-icon.wa   { background: rgba(37,211,102,0.12); }
.contact-icon.mail { background: rgba(240,112,0,0.12); }
.contact-icon.web  { background: rgba(100,150,255,0.12); }
.contact-icon.loc  { background: rgba(255,200,50,0.10); }

.contact-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }

.contact-label {
  font-size: 11px;
  color: #A0A0B8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-value {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-top: 2px;
}

/* ─── FORM ─── */
.contact-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.5px;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #BBBBC8;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }

.form-group select { cursor: pointer; }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(240,112,0,0.25);
}

.form-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 30px rgba(240,112,0,0.4);
  transform: translateY(-1px);
}

/* ─── FLOATING WA BUTTON ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

.wa-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: #060608;
  border-top: 1px solid var(--border);
  padding: 48px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img { height: 64px; width: auto; border-radius: 6px; }

.footer-brand-text div:first-child {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand-text div:last-child {
  font-size: 12px;
  color: var(--muted);
}

.footer-copy { font-size: 13px; color: #9999AA; }

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-size: 13px;
  color: #9999AA;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--text); }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

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

.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-right        { display: none; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  nav ul             { display: none; }
  h1                 { font-size: clamp(36px, 9vw, 60px); }
}

@media (max-width: 600px) {
  section     { padding: 72px 5%; }
  .stats-bar  { flex-direction: column; align-items: center; }
}
