/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --navy: #1a1a2e;
  --navy-mid: #16213e;
  --gold: #f39c12;
  --light: #f7f9fc;
  --gray: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--navy); color: #fff; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,204,113,0.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-nav { background: var(--green); color: #fff !important; padding: 9px 16px; border-radius: 50px; white-space: nowrap; }
.btn-nav:hover { background: var(--green-dark); }
.btn-text { color: var(--green); font-weight: 600; padding: 0; border: none; background: none; }
.btn-text:hover { color: var(--green-dark); gap: 12px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== TOP BAR ===== */
.topbar { background: var(--navy); color: rgba(255,255,255,0.8); font-size: 0.82rem; padding: 8px 0; }
.topbar-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-inner i { margin-right: 6px; color: var(--green); }
.topbar-links { margin-left: auto; display: flex; gap: 16px; }
.topbar-links a { color: rgba(255,255,255,0.8); font-weight: 500; transition: color 0.2s; }
.topbar-links a:hover { color: var(--green); }

/* ===== NAVBAR ===== */
.navbar {
  background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: sticky; top: 0; z-index: 1000; padding: 0;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.logo { display: flex; align-items: baseline; gap: 2px; font-size: 1.2rem; font-weight: 800; line-height: 1; flex-direction: column; }
.logo-high { color: var(--navy); }
.logo-five { color: var(--green); font-size: 1.5rem; }
.logo-pm { color: var(--navy); }
.logo-sub { font-size: 0.58rem; font-weight: 500; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.nav-links li a { padding: 8px 10px; border-radius: 8px; font-size: 0.84rem; font-weight: 500; color: #374151; transition: all 0.2s; }
.nav-links li a:hover, .nav-links li a.active { color: var(--green); background: rgba(46,204,113,0.07); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 40%, #16213e 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><polygon points="720,0 1440,0 1440,900" fill="rgba(46,204,113,0.06)"/><polygon points="0,900 600,0 0,0" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat center/cover;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(46,204,113,0.08) 0%, transparent 60%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 80px 0; }
.hero-badge {
  display: inline-block; background: rgba(46,204,113,0.15); border: 1px solid rgba(46,204,113,0.4);
  color: var(--green); padding: 6px 18px; border-radius: 50px; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-content h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 24px; }
.accent { color: var(--green); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat span { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-inner > span { font-size: 0.82rem; color: var(--gray); font-weight: 500; }
.trust-logos { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--navy);
}
.trust-badge i { color: var(--green); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 12px; color: var(--navy); }
.section-header.light h2 { color: #fff; }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-header.light p { color: rgba(255,255,255,0.65); }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.feature-icon {
  width: 56px; height: 56px; background: rgba(46,204,113,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green); margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.93rem; line-height: 1.65; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-body { padding: 28px; }
.service-ico { font-size: 1.8rem; color: var(--green); margin-bottom: 14px; display: block; }
.service-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.steps { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; justify-content: center; }
.step {
  flex: 1; min-width: 200px; max-width: 240px;
  text-align: center; padding: 32px 20px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
}
.step-number {
  width: 56px; height: 56px; background: var(--green); color: #fff;
  border-radius: 50%; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--gray); }
.step-arrow { color: var(--green); font-size: 1.4rem; margin-top: 60px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { font-size: 0.85rem; color: var(--green); font-weight: 600; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-banner .btn-primary { background: #fff; color: var(--green-dark); border-color: #fff; }
.cta-banner .btn-primary:hover { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-mid); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-col p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; margin-bottom: 10px; }
.contact-list li i { color: var(--green); width: 16px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.social-links a:hover { background: var(--green); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px;
    gap: 4px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-inner { position: relative; flex-wrap: wrap; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 24px; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar-inner { justify-content: center; }
  .topbar-links { margin-left: 0; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .trust-inner { justify-content: center; }
}