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

:root {
  --dark:        #0d1117;
  --dark-2:      #161b22;
  --dark-3:      #1c2128;
  --green:       #fd9f19;
  --green-light: #fe640e;
  --green-glow:  rgba(253, 159, 25, 0.15);
  --orange:      #f07c2a;
  --orange-dark: #d4681e;
  --white:       #ffffff;
  --gray-100:    #f6f8fa;
  --gray-200:    #eaeef2;
  --gray-400:    #8b949e;
  --gray-600:    #4a5568;
  --text:        #0d1117;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}

.logo-box {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.logo-text strong {
  font-weight: 900;
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

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

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

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

.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg-shape {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,60,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.h1-light {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 4px;
}

.h1-heavy {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 0.9;
}

.h1-heavy.accent {
  color: var(--green-light);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  max-width: 420px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-outline {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.float-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.float-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.5px;
}

.wave {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 350px;
  display: block;
}

.hero-logo {
  position: absolute;
  right: 80px;
  bottom: 0px;
  width: 280px;
  max-width: 32vw;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.hero-image-mobile {
  display: none;
}

.hero-logo-mobile {
  display: none;
}

/* ── TRUST INDICATORS ── */
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  cursor: pointer;
}

.scroll-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-arrow {
  color: rgba(255,255,255,0.4);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ── VISION ── */
.vision {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0;
}

.vision-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.vision-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  max-width: 780px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--green-light);
  background: rgba(34,160,80,0.15);
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 480px;
}

/* ── SERVICES ── */
.services-overview {
  padding: 100px 0;
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--green);
}

.service-icon-wrap {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-arrow {
  font-size: 1rem;
  color: var(--green);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}

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

/* ── WHY CHOOSE US ── */
.why-us {
  padding: 100px 0;
  background: var(--dark);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-left p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.why-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-light);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── INFO ── */
.info {
  padding: 100px 0;
  background: var(--white);
}

.info .section-header h2 {
  color: var(--text);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.info-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.08;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #fd9f19 0%, #fe640e 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .h1-heavy { font-size: 3.8rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--dark-2);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .wave { height: 120px; }
  .hero-logo { display: none; }
  .wavedesign { position: relative; }
  .hero-image-mobile {
    display: block;
    position: absolute;
    top: -100px;
    right: 16px;
    z-index: 3;
  }
  .hero-logo-mobile {
    display: block;
    width: 110px;
    height: auto;
    pointer-events: none;
  }

  .nav-links.open { display: flex; }
  .btn-primary { display: none; }

  .hero-inner { flex-direction: column; padding-top: 40px; }
  .hero-image-wrap { width: 100%; height: 240px; }
  .hero-float-card { display: none; }
  .h1-heavy { font-size: 2.8rem; }

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

  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
