:root {
  --navy: #060f1e;
  --navy2: #0d1f38;
  --teal: #ff0042;
  --teal2: #d90038;
  --orange: #ff6b2b;
  --gold: #f0b429;
  --white: #ffffff;
  --light: #f4f7fb;
  --grey: #8a9bb5;
  --border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--teal);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: .5px;
  transition: background .2s !important;
}

.nav-cta:hover {
  background: var(--teal2) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060f1e 0%, #0d2040 50%, #0a1e38 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 166, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 166, .06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 166, .15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 43, .08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 166, .12);
  border: 1px solid rgba(0, 180, 166, .3);
  border-radius: 100px;
  padding: .4rem 1rem;
  color: var(--teal);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp .7s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.5)
  }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .95;
  color: var(--white);
  animation: fadeUp .7s .1s ease both;
}

.hero h1 .accent {
  color: var(--teal);
}

.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--teal);
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .6);
  max-width: 520px;
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  animation: fadeUp .7s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: .9rem 2.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .5px;
  transition: all .2s;
  box-shadow: 0 0 30px rgba(0, 180, 166, .4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: var(--white);
  padding: .9rem 2.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp .7s .4s ease both;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}

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

.hero-stat-label {
  font-size: .75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .2rem;
}

.hero-image-side {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}

.hero-image-side::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 1;
  background: linear-gradient(90deg, #060f1e, transparent);
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.hero-cards {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeLeft .8s .5s ease both;
}

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

  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%)
  }
}

.hero-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card-label {
  font-size: .7rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero-card-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── TICKER ── */
.ticker {
  background: var(--teal);
  padding: .75rem 0;
  overflow: hidden;
}

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

.ticker-item {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  gap: .8rem;
}

.ticker-item::after {
  content: '✦';
  opacity: .6;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── STATS BAR REDESIGN ── */
.stats-bar {
  padding: 4rem 0;
  position: relative;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.stat-cell {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.stat-cell::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(79,255,180,0.05) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.stat-cell:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 255, 180, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.stat-cell:hover::before {
  opacity: 1;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(180deg, #000000 20%, #555555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.8rem;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  opacity: 0.9;
}
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── SECTION COMMON ── */
section {
  padding: 6rem 0;
}

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

.tag {
  display: inline-block;
  background: rgba(0, 180, 166, .1);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-sub {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

/* ── ABOUT ── */
.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 180, 166, .3);
}

.about-badge-float .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: .8rem;
  opacity: .85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #e8edf5;
  transition: box-shadow .2s;
}

.about-feature:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 180, 166, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.about-feature p {
  font-size: .85rem;
  color: #666;
  line-height: 1.5;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  opacity: 0;
  transition: opacity .25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

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

.service-card:hover .service-icon,
.service-card:hover .service-name,
.service-card:hover .service-desc {
  color: var(--white);
}

.service-card:hover .service-icon-wrap {
  background: rgba(255, 255, 255, .15);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(0, 180, 166, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .25s;
}

.service-icon {
  font-size: 1.8rem;
  position: relative;
}

.service-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .4rem;
  position: relative;
  transition: color .25s;
}

.service-desc {
  font-size: .78rem;
  color: #888;
  line-height: 1.5;
  position: relative;
  transition: color .25s;
}

/* ── CLIENTS ── */
.clients {
  background: var(--white);
  padding: 5rem 0;
  overflow: hidden;
}

.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.clients-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: slideClients 30s linear infinite;
}

.client-logo {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s ease;
  object-fit: contain;
}

.client-logo:hover img {
  transform: scale(1.1);
}

@keyframes slideClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── AREAS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.area-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all .2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .15);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-tag {
  font-size: .7rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: .5rem;
}

.area-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.area-desc {
  font-size: .8rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--light);
}

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

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e8edf5;
  transition: box-shadow .2s;
}

.testi-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: .9rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

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

.testi-name {
  font-weight: 700;
  font-size: .9rem;
}

.testi-role {
  font-size: .78rem;
  color: var(--grey);
}

/* ── QUOTE SECTION ── */
.quote-section { background: var(--light); padding: 7rem 0; }
.quote-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: flex-start;
}
.contact-methods { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.contact-method { display: flex; align-items: center; gap: 1.5rem; }
.method-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--white); border: 1px solid #e8edf5;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--teal);
  box-shadow: 0 4px 12px rgba(0,0,0,.03);
}
.method-label { font-size: .8rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .2rem; }
.method-value { font-size: 1.1rem; font-weight: 700; color: var(--navy); text-decoration: none; transition: color .2s; }
.method-value:hover { color: var(--teal); }

.quote-form-wrap {
  background: var(--white); padding: 3rem;
  border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,.06);
  border: 1px solid #e8edf5;
}
.quote-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.quote-form input, 
.quote-form select, 
.quote-form textarea {
  width: 100%; padding: 1rem 1.2rem;
  background: #f8fafc; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-family: inherit; font-size: .95rem;
  transition: all .2s; color: var(--navy);
}
.quote-form input:focus, 
.quote-form select:focus, 
.quote-form textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 4px rgba(79,255,180,.1);
}
.quote-form textarea { resize: none; }

@media (max-width: 1024px) {
  .quote-grid { grid-template-columns: 1fr; gap: 4rem; }
  .quote-form-wrap { padding: 2rem; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, .85);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-band .btn-white {
  background: var(--white);
  color: var(--teal);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  position: relative;
}

.cta-band .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span {
  color: var(--teal);
}

.footer-desc {
  color: var(--grey);
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--grey);
  font-size: .85rem;
  margin-bottom: .5rem;
}

.footer-contact-item a {
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact-item a:hover {
  color: var(--teal);
}

.footer-col h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: .6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: var(--grey);
  font-size: .8rem;
}

.footer-socials {
  display: flex;
  gap: .8rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: .9rem;
  transition: all .2s;
  text-decoration: none;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.1);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(6, 15, 30, .97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-badge-float {
    right: 1rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-cards {
    display: none;
  }

  .hero-image-side {
    width: 100%;
  }

  .hero-image-side::before {
    background: linear-gradient(90deg, #060f1e 30%, rgba(6, 15, 30, .7));
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
  }

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

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

  .hamburger {
    display: flex;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

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

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

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

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