/* ============================================================
   SINAXIS — Web & Ecommerce
   styles.css
   ============================================================ */

/* ── RESET & VARIABLES ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:   #0D2340;
  --blue:   #1A4A8C;
  --blue-l: #2560AB;
  --accent: #5D8070;
  --green:  #5D8070;
  --bg:     #F2F8F6;
  --card:   #FFFFFF;
  --text:   #111827;
  --muted:  #5C6475;
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
}


/* ── NAVBAR ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.logo-text .brand span {
  color: var(--blue);
}

.logo-text .tagline {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

/* ── NAV DROPDOWN ───────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
  opacity: 0.6;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(13, 35, 64, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(13, 35, 64, 0.12);
  padding: 0.5rem;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy) !important;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu li a:hover {
  background: var(--bg);
  color: var(--blue) !important;
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue) !important;
  color: #fff !important;
}


/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}


.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-l);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  height: 420px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
}

.hero-card.main {
  width: 320px;
  top: 40px; left: 30px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-card.floating-1 {
  width: 180px;
  top: 0; right: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  animation: float 4s ease-in-out infinite;
}

.hero-card.floating-2 {
  width: 200px;
  bottom: 20px; left: 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  animation: float 5s ease-in-out infinite reverse;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.card-metric {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.card-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.card-bar {
  margin-top: 1rem;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.card-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 0.8rem;
  height: 40px;
}

.spark-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(93, 128, 112, 0.45);
}

.spark-bar.active {
  background: var(--blue-l);
}

.card-metric-row {
  margin-top: 1rem;
}

.card-metric-row--sm {
  margin-top: 0.8rem;
}

.card-sub--label {
  margin-bottom: 6px;
}

.web-preview {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.browser-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 0.5rem;
}

.browser-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #C86F5E; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #5D8070; }

.browser-content {
  height: 80px;
  background: linear-gradient(135deg, rgba(26, 74, 140, 0.3), rgba(93, 128, 112, 0.12));
  border-radius: 6px;
}


/* ── STATS ──────────────────────────────────────────────────── */
.stats {
  background: var(--bg);
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-number span {
  color: var(--blue);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}


/* ── SECTION COMMONS ────────────────────────────────────────── */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding: 0;
  background: none;
  border-radius: 0;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}


/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--blue-l);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.btn-white:hover {
  background: #e8f0fa;
  transform: translateY(-2px);
}


/* ── SERVICES ───────────────────────────────────────────────── */
.services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: service-counter;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s,
              background 0.35s,
              border-color 0.35s;
  cursor: pointer;
  border: 1px solid transparent;
  counter-increment: service-counter;
}

.service-card::before {
  content: counter(service-counter, decimal-leading-zero);
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(26, 74, 140, 0.07);
  pointer-events: none;
  transition: color 0.35s;
}

.service-card:hover {
  background: var(--navy);
  border-color: rgba(93, 128, 112, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(13, 35, 64, 0.22);
}

.service-card:hover::before {
  color: rgba(93, 128, 112, 0.1);
}

.service-card:hover h3    { color: #fff; }
.service-card:hover p     { color: rgba(255, 255, 255, 0.55); }
.service-card:hover .service-icon { color: var(--accent); background: rgba(93, 128, 112, 0.12); }
.service-card:hover .service-link { color: var(--accent); }
.service-card:hover .outcome-badge {
  background: rgba(93, 128, 112, 0.15);
  border-color: rgba(93, 128, 112, 0.35);
  color: #5D8070;
}

.service-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--blue);
  background: rgba(26, 74, 140, 0.08);
  border-radius: 10px;
  transition: background 0.35s, color 0.35s;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  transition: color 0.35s;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.35s;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}


/* ── PROCESS ────────────────────────────────────────────────── */
.process {
  background: var(--navy);
}

.process .section-tag {
  color: var(--accent);
}

.process .section-tag::before {
  background: var(--accent);
}

.process .section-title { color: #fff; }
.process .section-desc  { color: rgba(255, 255, 255, 0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-item {
  text-align: left;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(93, 128, 112, 0.3);
}

.step-item::after {
  content: attr(data-n);
  position: absolute;
  bottom: -18px;
  right: 12px;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  transition: color 0.3s;
}

.step-item:hover::after {
  color: rgba(93, 128, 112, 0.07);
}

.step-number {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  border-radius: 6px;
  background: rgba(93, 128, 112, 0.12);
  border: 1px solid rgba(93, 128, 112, 0.3);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.14em;
  padding: 4px 10px;
  margin: 0 0 1.2rem;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: left;
}

.step-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  text-align: left;
}


/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  background: var(--bg);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 35, 64, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(13, 35, 64, 0.1);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--blue);
}

.faq-trigger[aria-expanded="true"] {
  color: var(--blue);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-content.open {
  grid-template-rows: 1fr;
}

.faq-content > p {
  overflow: hidden;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 0;
  transition: padding-bottom 0.28s;
}

.faq-content.open > p {
  padding-bottom: 1.35rem;
}


/* ── WHY US ─────────────────────────────────────────────────── */
.why-us {
  background: #fff;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.why-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-visual {
  position: relative;
}

.why-big-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 128, 112, 0.18);
  box-shadow: 0 0 60px rgba(93, 128, 112, 0.1), 0 24px 48px rgba(13, 35, 64, 0.15);
}

.why-big-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 128, 112, 0.12) 0%, transparent 70%);
  pointer-events: none;
}


.why-big-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.why-big-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1rem;
}

.mini-stat .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
}

.mini-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.floating-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--green);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(93, 128, 112, 0.4);
  white-space: nowrap;
}


/* ── PROJECTS ───────────────────────────────────────────────── */
.projects {
  background: var(--bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.project-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(13, 35, 64, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 35, 64, 0.1);
}

.project-img-link {
  display: block;
  text-decoration: none;
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg);
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 64, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
}

.project-info {
  padding: 1.5rem 1.8rem 1.8rem;
}

.project-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.project-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}


/* ── CONTACT SECTION ─────────────────────────────────────────── */
.contact-section {
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-desc {
  margin-bottom: 2.5rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid rgba(13, 35, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-details a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--blue);
}

/* ── CONTACT FORM ─────────────────────────────────────────────── */
.contact-form {
  background: var(--bg);
  border: 1px solid rgba(13, 35, 64, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid rgba(13, 35, 64, 0.12);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(93, 128, 112, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.btn-form-submit {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.4rem;
}

.btn-form-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.btn-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0;
}

.form-success {
  font-size: 0.88rem;
  font-weight: 600;
  color: #059669;
  background: rgba(93, 128, 112, 0.1);
  border: 1px solid rgba(93, 128, 112, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: center;
}


/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #07131F;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-brand .brand-name span {
  color: var(--blue-l);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.75rem;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--blue-l);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--blue);
  color: #fff;
}


/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ── HAMBURGER BUTTON ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  z-index: 99;
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu ul li:last-child a {
  border-bottom: none;
  color: var(--blue);
}

.mobile-menu ul li a:hover { color: var(--blue); }


/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; text-align: center; }
  .hero-visual        { display: none; }
  .hero p             { margin: 0 auto 2.5rem; }
  .hero-actions       { justify-content: center; }
  .hero-trust         { justify-content: center; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .steps-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .faq-inner          { grid-template-columns: 1fr; gap: 2.5rem; }
  .projects-grid      { grid-template-columns: 1fr; max-width: 520px; }
  .stats-inner        { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner       { grid-template-columns: 1fr; }
  .contact-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top         { grid-template-columns: 1fr 1fr; }
  .pain-grid          { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav-links          { display: none; }
  .nav-hamburger      { display: flex; }
  .mobile-menu        { display: block; }

  section             { padding: 4rem 1.25rem; }
  .stats              { padding: 2.5rem 1.25rem; }
  .pain-section       { padding: 4rem 1.25rem; }

  .hero               { padding: 90px 1.25rem 50px; }
  .hero-actions       { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline        { width: 100%; text-align: center; justify-content: center; }

  .section-header     { margin-bottom: 2.5rem; }
  .section-desc       { font-size: 0.95rem; }

  .services-grid      { grid-template-columns: 1fr; }
  .steps-grid         { grid-template-columns: 1fr; }
  .faq-header         { position: static; }
  .projects-grid      { max-width: 100%; }
  .stats-inner        { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-top         { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; gap: 1rem; text-align: center; }

  .contact-grid       { grid-template-columns: 1fr; }
  .why-list           { grid-template-columns: 1fr; }

  .form-row           { grid-template-columns: 1fr; }
  .contact-form       { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero               { padding: 80px 1rem 40px; }
  section             { padding: 3rem 1rem; }
  .stats              { padding: 2rem 1rem; }

  .stat-number        { font-size: 2rem; }
  .stats-inner        { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .section-title      { font-size: clamp(1.5rem, 6vw, 2rem); }

  .footer-top         { gap: 1.5rem; }
}

/* ── HERO TRUST BAR ─────────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.trust-clients {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-clients span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.trust-dot {
  color: rgba(255, 255, 255, 0.25) !important;
}


/* ── PAIN SECTION ───────────────────────────────────────────── */
.pain-section {
  background: var(--navy);
  padding: 6rem 2rem;
}

.pain-section .section-tag--light {
  color: var(--accent);
}

.pain-section .section-tag--light::before {
  background: var(--accent);
}

.pain-title {
  color: #fff !important;
}

.pain-desc {
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 0 auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s;
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(93, 128, 112, 0.3);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(93, 128, 112, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pain-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.pain-stat {
  display: inline-block;
  background: rgba(200, 111, 94, 0.15);
  color: #C86F5E;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(200, 111, 94, 0.25);
}

.pain-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ── OUTCOME BADGES ─────────────────────────────────────────── */
.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(93, 128, 112, 0.1);
  color: #2aab82;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(93, 128, 112, 0.25);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.outcome-badge::before {
  content: '✓';
  font-size: 0.7rem;
}


/* ── CTA GUARANTEES ─────────────────────────────────────────── */
.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-guarantees span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.cta-guarantees svg {
  color: var(--green);
  flex-shrink: 0;
}


/* ── WHATSAPP FLOTANTE ──────────────────────────────────────── */
.wsp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.wsp-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.wsp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wsp-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wsp-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 480px) {
  .wsp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
