@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
  --primary: #0D7377;
  --primary-dark: #0A5C60;
  --primary-light: #E6F4F4;
  --secondary: #10B981;
  --acento-gasto: #F43F5E;
  --acento-warn: #F59E0B;
  --bg: #F0F7F7;
  --bg-gradient: linear-gradient(135deg, #F0F7F7 0%, #E2EFF0 100%);
  --bg-alt: #E8F5F5;
  --surface: #FFFFFF;
  --surface-2: #F7FEFE;
  --text: #0D1F2D;
  --text-muted: #5B7A8A;
  --text-light: #8CA3AF;
  --border: rgba(13, 115, 119, 0.12);
  --white: #FFFFFF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

p, input, button {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 99px;
}

/* ══ KEYFRAMES ══ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 115, 119, 0); }
  50% { box-shadow: 0 0 0 6px rgba(13, 115, 119, 0.12); }
}

@keyframes draw {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ══ NAVBAR ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  background: rgba(242, 249, 249, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

nav.scrolled {
  background: rgba(242, 249, 249, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(13, 115, 119, 0.08);
}

/* Rest of the CSS content ... */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 115, 119, 0.35);
}

.nav-logo-icon svg {
  width: 18px;
  height: 18px;
}

.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(13, 115, 119, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.4);
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ══ SECTIONS ══ */
section { padding: 110px 64px; }
@media (max-width: 768px) { section { padding: 72px 20px; } }
.section-alt { background: var(--bg-alt); }
.section-white { background: var(--surface); }
.inner { max-width: 1160px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(13, 115, 119, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ══ HERO ══ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 88px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13, 115, 119, 0.14) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: floatSlow 12s ease-in-out infinite;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-title .grad {
  background: linear-gradient(135deg, var(--primary) 0%, #15A89E 50%, var(--secondary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-lg { padding: 14px 30px; font-size: 0.95rem; }

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-dot {
  width: 6px; height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══ MOCK DASHBOARD ══ */
.mock-wrap { position: relative; }
.mock-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse, rgba(13, 115, 119, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mock-dashboard {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(13, 115, 119, 0.12);
  box-shadow: 0 24px 72px rgba(13, 115, 119, 0.12), 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.mock-topbar {
  background: linear-gradient(135deg, var(--primary) 0%, #0A9C9C 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-topbar-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

.mock-topbar-date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.mock-body { padding: 18px; }

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mock-kpi {
  background: var(--bg);
  border: 1px solid rgba(13, 115, 119, 0.08);
  border-radius: 10px;
  padding: 12px;
}

.mock-kpi-label {
  font-size: 0.63rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.mock-kpi-value {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mock-kpi-value.green { color: var(--secondary); }
.mock-kpi-value.red { color: var(--acento-gasto); }
.mock-kpi-value.dark { color: var(--text); }

.mock-kpi-sub {
  font-size: 0.6rem;
  color: var(--text-light);
  margin-top: 2px;
}

.mock-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.mock-bars { display: flex; flex-direction: column; gap: 7px; }

.mock-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.68rem; }

.mock-bar-label { color: var(--text-muted); width: 76px; flex-shrink: 0; }

.mock-bar-track {
  flex: 1; height: 5px;
  background: var(--bg-alt);
  border-radius: 99px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mock-bar-pct { color: var(--text-light); width: 28px; text-align: right; flex-shrink: 0; }

.mock-txs { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }

.mock-tx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 0.68rem;
}

.mock-tx-name { color: var(--text); font-weight: 600; }
.mock-tx-cat { color: var(--text-light); font-size: 0.58rem; }
.mock-tx-amount { font-weight: 700; }
.mock-tx-amount.pos { color: var(--secondary); }
.mock-tx-amount.neg { color: var(--acento-gasto); }

/* floating badges */
.mock-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  animation: float 4s ease-in-out infinite;
}

.mock-badge-icon { font-size: 1.1rem; }
.mock-badge-sub { font-size: 0.62rem; color: var(--text-muted); font-weight: 400; }

.badge-income { top: 20%; right: -60px; animation-delay: 0.5s; }
.badge-alert { bottom: 25%; left: -70px; animation-delay: 1.2s; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .mock-badge { display: none; }
  .mock-dashboard { max-width: 440px; margin: 0 auto; }
}

/* ══ STATS ══ */
#stats { background: var(--primary); padding: 64px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  #stats { padding: 56px 24px; }
}

/* ══ PROBLEMA ══ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 840px;
  margin: 0 auto;
}

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

.problem-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.problem-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13, 115, 119, 0.12); }
.problem-card:hover::after { transform: scaleX(1); }

.problem-icon { font-size: 2.2rem; margin-bottom: 14px; }

.problem-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }

.problem-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; } }

/* ══ CÓMO FUNCIONA ══ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.25;
}

.step-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13, 115, 119, 0.1); }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), #15A89E);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: #fff;
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.3);
}

.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }

.step-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* ══ FEATURES ══ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 115, 119, 0.13);
  border-color: rgba(13, 115, 119, 0.25);
}

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

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrap { transform: scale(1.1) rotate(-4deg); }

.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }

.feature-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ══ PRÓXIMAMENTE ══ */
.coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

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

.coming-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13, 115, 119, 0.1); }

.coming-card-stripe {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.coming-lock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acento-warn);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.coming-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }

.coming-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; }

.coming-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.coming-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.5;
}

.coming-list li .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
  opacity: 0.5;
}

@media (max-width: 900px) { .coming-grid { grid-template-columns: 1fr; } }

/* ══ CTA MID ══ */
#cta-mid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #0A9C9C 50%, #0A5C60 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 100px 64px;
  text-align: center;
}

#cta-mid::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: borderGlow 3s ease-in-out infinite;
}

#cta-mid .section-title { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); max-width: 680px; margin: 0 auto 16px; position: relative; }
#cta-mid .section-subtitle { color: rgba(255, 255, 255, 0.75); margin: 0 auto 40px; position: relative; }

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2); }

/* ══ POR QUÉ ══ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1060px; margin: 0 auto; }

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(13, 115, 119, 0.1); }

.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.why-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

/* ══ TESTIMONIOS ══ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; transition: all 0.3s ease; }

.testi-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(13, 115, 119, 0.08); }

.testi-stars { color: var(--acento-warn); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }

.testi-quote { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--primary); flex-shrink: 0;
}

.testi-name { font-size: 0.87rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

@media (max-width: 800px) { .testi-grid { grid-template-columns: 1fr; } }

/* ══ CONTACTO ══ */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; max-width: 960px; margin: 0 auto; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }

.form-input, .form-textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(13, 115, 119, 0.3);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13, 115, 119, 0.35);
}

.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }

.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-info-icon {
  font-size: 1.2rem; width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-info-text strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.contact-info-text span { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ══ FOOTER ══ */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}

.footer-logo-text { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }

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

.footer-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-right { text-align: right; }
.footer-copy { font-size: 0.82rem; }
.footer-nexio { font-size: 0.75rem; color: rgba(255, 255, 255, 0.35); margin-top: 4px; }

.footer-nexio a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.footer-nexio a:hover { color: #fff; }

@media (max-width: 768px) {
  footer { flex-direction: column; padding: 32px 20px; }
  .footer-right { text-align: left; }
}

/* ══ FADE ANIMATIONS ══ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.fade-scale.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
