/* HOME PAGE */
.teal { color: var(--teal); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.section-center { text-align: center; margin-bottom: 3rem; }
.section-center .section-sub { margin: 0 auto; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #060e1e 0%, #0b1729 60%, #0d1f35 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(0,194,168,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 79px, rgba(255,255,255,0.012) 80px
  ), repeating-linear-gradient(
    0deg, transparent, transparent 79px, rgba(255,255,255,0.012) 80px
  );
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; animation: heroFadeUp 0.8s ease both; }

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin: 1rem 0 1.3rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.trust-item { display: flex; flex-direction: column; }
.t-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--teal); }
.t-lbl { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.05em; }
.trust-div { width: 1px; height: 40px; background: #2a3a50; }

.hero-image-wrap {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.8s 0.15s ease both;
}
.hero-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  border: 1px solid rgba(0,194,168,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,194,168,0.08);
}
.hero-badge {
  position: absolute;
  bottom: -18px; left: 24px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,194,168,0.3);
}

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

/* STRIP */
.strip {
  background: var(--teal);
  padding: 0.9rem 5%;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.strip .dot { color: rgba(11,17,32,0.5); font-size: 0.6rem; }

/* HOME SERVICES */
.home-services { padding: 6rem 0; }

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

.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,194,168,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.svc-img-wrap { overflow: hidden; height: 180px; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-card:hover .svc-img-wrap img { transform: scale(1.05); }

.svc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.svc-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.svc-body p { font-size: 0.87rem; color: var(--gray); line-height: 1.65; flex: 1; }
.svc-link { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-top: 1rem; display: inline-block; }

/* PROMO */
.promo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
}
.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.promo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}
.promo-card:hover .promo-img { transform: scale(1.04); }
.promo-overlay {
  position: relative;
  z-index: 2;
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(7,13,26,0.92) 0%, rgba(7,13,26,0.5) 60%, transparent 100%);
}
.promo-overlay h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0.8rem 0;
}
.promo-overlay p { font-size: 0.9rem; color: #b0c0d0; line-height: 1.65; margin-bottom: 1.4rem; }

/* WHY US */
.why-section { padding: 6rem 0; background: var(--navy2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.2rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.why-item:hover { border-color: rgba(0,194,168,0.35); }
.why-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-item h4 { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; font-size: 1rem; }
.why-item p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }

/* TESTIMONIALS */
.testi-section { padding: 6rem 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.testi-card:hover { border-color: rgba(0,194,168,0.3); transform: translateY(-4px); }
.stars { color: var(--amber); font-size: 0.95rem; margin-bottom: 1rem; }
.testi-card p { font-size: 0.9rem; color: var(--light); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { font-size: 0.82rem; color: var(--gray); }
.testi-author strong { color: var(--teal); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #062a22 0%, #0a1f30 50%, #062a22 100%);
  border-top: 1px solid rgba(0,194,168,0.2);
  border-bottom: 1px solid rgba(0,194,168,0.2);
  padding: 5rem 5%;
  text-align: center;
}
.cta-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-content p { color: var(--gray); font-size: 1rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 120px 5% 60px; }
  .hero-image-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .promo-section { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
}
