/* ============================================================
   WEB SERVICES — Landing Page Stylesheet
   Brand: Deep Navy (#001A3D) | Accent: Electric Yellow (#FFD700)
   Typography: Archivo Black + Inter
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #001A3D;
  --navy-light: #002a61;
  --navy-dark: #000f24;
  --yellow: #FFD700;
  --yellow-glow: rgba(255, 215, 0, 0.5);
  --yellow-dark: #e6c200;
  --white: #FFFFFF;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6f0;
  --gray-500: #7a8ab0;
  --gray-700: #3d4f70;
  --text-dark: #001A3D;
  --text-body: #2d3f5e;
  --font-head: 'Archivo Black', 'Montserrat', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-card: 0 8px 32px rgba(0,26,61,0.10);
  --shadow-card-hover: 0 20px 60px rgba(0,26,61,0.18);
  --shadow-glow: 0 0 24px var(--yellow-glow), 0 0 48px rgba(255,215,0,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 15, 36, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-web {
  color: var(--white);
}

.logo-services {
  color: var(--yellow);
  text-shadow: 0 0 12px var(--yellow-glow);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--yellow);
  background: rgba(255,215,0,0.08);
}

.btn-nav-cta {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 0 16px var(--yellow-glow);
}

.btn-nav-cta:hover {
  background: var(--yellow-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 10, 25, 0.85) 0%,
    rgba(0, 26, 61, 0.7) 50%,
    rgba(0, 15, 36, 0.9) 100%
  );
}

/* Speed Lines */
.hero-speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-speed-lines::before {
  content: '';
  position: absolute;
  inset: -100%;
  background-image:
    repeating-linear-gradient(
      -15deg,
      transparent 0px,
      transparent 40px,
      rgba(255, 215, 0, 0.04) 40px,
      rgba(255, 215, 0, 0.04) 41px
    ),
    repeating-linear-gradient(
      -15deg,
      transparent 0px,
      transparent 80px,
      rgba(255, 215, 0, 0.025) 80px,
      rgba(255, 215, 0, 0.025) 81px
    );
  animation: speedLinesShift 8s linear infinite;
}

@keyframes speedLinesShift {
  from { transform: translateX(-15%) translateY(-15%); }
  to   { transform: translateX(15%) translateY(15%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeSlideDown 0.7s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--yellow-glow);
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.1s both;
}

.headline-accent {
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.25);
  display: inline-block;
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  color: var(--navy);
  background: var(--yellow);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px var(--yellow-glow), 0 4px 20px rgba(255,215,0,0.3);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.stat-unit {
  font-size: 1rem;
  color: var(--yellow);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   48H BANNER
   ============================================================ */
.banner-48h {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}

.banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(0,26,61,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text-block {
  flex: 1;
  min-width: 220px;
}

.banner-headline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  color: var(--navy-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.banner-headline strong {
  color: var(--navy);
}

.banner-sub {
  font-size: 0.9rem;
  color: rgba(0,26,61,0.72);
  font-weight: 500;
}

.banner-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,26,61,0.2);
  flex-shrink: 0;
}

.banner-right {
  min-width: 180px;
}

.banner-invest {
  font-size: 0.95rem;
  color: rgba(0,26,61,0.75);
}

.banner-invest strong {
  color: var(--navy);
  font-weight: 700;
}

.btn-banner-cta {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  background: var(--navy);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,26,61,0.3);
}

.btn-banner-cta:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,26,61,0.4);
}

/* Ticker */
.ticker-wrap {
  background: rgba(0,26,61,0.12);
  overflow: hidden;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(0,26,61,0.12);
}

.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.title-accent {
  color: var(--yellow);
  position: relative;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 540px;
  margin-bottom: 3.5rem;
  line-height: 1.75;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255,215,0,0.4);
}

.service-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(255,215,0,0.15);
}

.service-card--featured:hover {
  box-shadow: 0 20px 60px rgba(255,215,0,0.25);
}

.card-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  box-shadow: 0 0 12px var(--yellow-glow);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .card-img {
  transform: scale(1.06);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,10,25,0.7) 0%, transparent 60%);
}

.card-number {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(255,215,0,0.5);
  line-height: 1;
}

.card-body {
  padding: 1.75rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,26,61,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,215,0,0.2);
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -10deg,
      transparent 0px,
      transparent 60px,
      rgba(255,215,0,0.025) 60px,
      rgba(255,215,0,0.025) 61px
    );
  pointer-events: none;
}

.values .section-label {
  color: var(--yellow);
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.25);
}

.values-title {
  color: var(--white) !important;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,215,0,0.45);
  transform: translateY(-5px);
}

.value-card--center {
  background: var(--yellow);
  border-color: var(--yellow);
}

.value-card--center:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: 0 20px 60px rgba(255,215,0,0.35);
}

.value-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-card--center .value-icon-wrap {
  background: rgba(0,26,61,0.12);
  border-color: rgba(0,26,61,0.15);
}

.value-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-title--dark { color: var(--navy); }

.value-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.value-num--dark { color: var(--navy); }

.value-unit {
  font-size: 1.5rem;
  color: var(--yellow);
}

.value-unit--dark { color: var(--navy); }

.value-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.value-desc--dark { color: rgba(0,26,61,0.72); }

.value-bar {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.value-bar--dark {
  background: rgba(0,26,61,0.15);
}

.value-bar-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: var(--yellow);
  border-radius: 99px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1) 0.3s;
  box-shadow: 0 0 8px var(--yellow-glow);
}

.value-bar-fill--dark {
  background: var(--navy);
  box-shadow: none;
}

.value-bar-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.value-bar-label--dark {
  color: rgba(0,26,61,0.55);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--off-white);
}

.process .section-label {
  color: var(--navy);
  background: rgba(0,26,61,0.06);
  border-color: rgba(0,26,61,0.15);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 30px rgba(255,215,0,0.12);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.25rem;
  color: rgba(0,26,61,0.06);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.process-connector {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  flex-shrink: 0;
  width: 2rem;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), rgba(255,215,0,0.3));
  position: relative;
}

.connector-line::after {
  content: '▶';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: var(--yellow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -15deg,
      transparent 0px,
      transparent 80px,
      rgba(255,215,0,0.02) 80px,
      rgba(255,215,0,0.02) 81px
    );
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.tagline-accent {
  color: var(--yellow);
  text-shadow: 0 0 12px var(--yellow-glow);
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-phone,
.footer-email {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--yellow);
}

.footer-phone {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.footer-email {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  word-break: break-all;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--yellow);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 0 20px var(--yellow-glow), 0 4px 20px rgba(255,215,0,0.3);
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: var(--yellow-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy,
.footer-made {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.float-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: floatPulse 2.5s ease-in-out infinite;
  opacity: 0;
}

@keyframes floatPulse {
  0%         { opacity: 0.8; transform: scale(1); }
  100%       { opacity: 0;   transform: scale(1.5); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .value-card--center {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  /* Navbar */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0,15,36,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255,215,0,0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  /* Banner */
  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .banner-divider {
    display: none;
  }

  .btn-banner-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card--center {
    grid-column: auto;
    max-width: 100%;
  }

  /* Process */
  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .process-connector {
    width: auto;
    height: 1.5rem;
    padding-top: 0;
    justify-content: center;
  }

  .connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--yellow), rgba(255,215,0,0.3));
  }

  .connector-line::after {
    content: '▼';
    right: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(50%);
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating button position on small screens */
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .section-container {
    padding: 4rem 1.25rem;
  }

  .banner-inner {
    padding: 1.75rem 1.25rem;
  }
}
