/* ============================================
   Evvolve & Partners — Global Stylesheet
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --dark-1: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --dark-4: #2a2a2a;
  --grey-1: #333333;
  --grey-2: #444444;
  --grey-3: #666666;
  --grey-4: #888888;
  --grey-5: #aaaaaa;
  --light-1: #d0d0d0;
  --light-2: #e8e8e8;
  --light-3: #f2f2f2;
  --white: #ffffff;
  --accent: #c0c0c0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--dark-1);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.8; }

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

ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.25; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--dark-3);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 22px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--grey-5);
  font-size: 14px;
  font-weight: 400;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  opacity: 1;
}

.nav-cta {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--grey-2);
  border-radius: 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  opacity: 1;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}


/* ============================================
   Hero Section (Dark gradient)
   ============================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--black) 0%, var(--dark-2) 50%, var(--dark-4) 100%);
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  color: var(--grey-5);
  line-height: 1.7;
}


/* ============================================
   Service Cards (3-column, icon top)
   ============================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 48px auto 0;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition);
}

.service-card:hover {
  border-color: rgba(255,255,255,0.25);
}

.service-card .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}


/* ============================================
   Breakthrough Section
   ============================================ */
.breakthrough {
  padding: 80px 0;
  background: var(--white);
}

.breakthrough-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.breakthrough-header h2 {
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--dark-1);
  flex-shrink: 0;
  line-height: 1.3;
}

.breakthrough-header p {
  font-size: 15px;
  color: var(--grey-3);
  max-width: 480px;
  line-height: 1.7;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  border-radius: 12px;
  padding: 28px 24px;
  color: var(--white);
}

.feature-card:nth-child(1) {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-4));
}

.feature-card:nth-child(2) {
  background: linear-gradient(135deg, var(--grey-1), var(--grey-2));
}

.feature-card:nth-child(3) {
  background: linear-gradient(135deg, var(--dark-3), var(--grey-1));
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--grey-5);
  line-height: 1.6;
}


/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--black);
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23111"/><rect x="50" y="100" width="40" height="300" rx="2" fill="%23222"/><rect x="100" y="150" width="30" height="250" rx="2" fill="%231a1a1a"/><rect x="140" y="80" width="50" height="320" rx="2" fill="%23252525"/><rect x="200" y="120" width="35" height="280" rx="2" fill="%231e1e1e"/><rect x="260" y="60" width="45" height="340" rx="2" fill="%23222"/><rect x="320" y="140" width="30" height="260" rx="2" fill="%23282828"/><rect x="370" y="90" width="55" height="310" rx="2" fill="%231c1c1c"/><rect x="440" y="110" width="40" height="290" rx="2" fill="%23232323"/><rect x="500" y="50" width="60" height="350" rx="2" fill="%23202020"/><rect x="580" y="130" width="35" height="270" rx="2" fill="%23262626"/><rect x="630" y="70" width="50" height="330" rx="2" fill="%231d1d1d"/><rect x="700" y="100" width="45" height="300" rx="2" fill="%23222"/><rect x="760" y="140" width="30" height="260" rx="2" fill="%23292929"/><rect x="810" y="60" width="55" height="340" rx="2" fill="%231b1b1b"/><rect x="880" y="120" width="40" height="280" rx="2" fill="%23242424"/><rect x="940" y="80" width="50" height="320" rx="2" fill="%23202020"/><rect x="1010" y="110" width="35" height="290" rx="2" fill="%23272727"/><rect x="1060" y="90" width="45" height="310" rx="2" fill="%231e1e1e"/><rect x="1120" y="130" width="40" height="270" rx="2" fill="%23222"/></svg>');
  background-size: cover;
  background-position: center bottom;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 32px;
  font-weight: 600;
  max-width: 560px;
  margin: 0 auto 32px;
  letter-spacing: -0.3px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--grey-2);
}

.btn-outline:hover {
  border-color: var(--white);
  opacity: 1;
}


/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--dark-3);
  padding: 48px 0 24px;
  color: var(--grey-4);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  height: 22px;
  width: auto;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-brand a {
  color: var(--grey-4);
}

.footer-brand a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--grey-4);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--dark-3);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--grey-3);
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 11px !important;
  color: var(--grey-3);
  max-width: 800px;
  line-height: 1.5 !important;
}


/* ============================================
   Services Page — Service Areas
   ============================================ */
.services-hero {
  padding: 140px 0 60px;
  background: linear-gradient(165deg, var(--black) 0%, var(--dark-1) 40%, var(--dark-3) 100%);
  text-align: center;
  color: var(--white);
}

.services-hero h1 {
  font-size: 32px;
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.4;
}

.service-areas {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark-2) 100%);
}

.service-areas .section-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
}

.service-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}

.service-block .block-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-block .block-icon svg {
  width: 72px;
  height: 72px;
  stroke: var(--grey-5);
  fill: none;
  stroke-width: 1;
}

.service-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.service-block .block-desc {
  font-size: 15px;
  color: var(--grey-4);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-block ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-block ul li {
  font-size: 13px;
  color: var(--grey-5);
  padding-left: 16px;
  position: relative;
}

.service-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grey-2);
}

.service-bottom-text {
  text-align: center;
  padding: 32px 0 0;
  color: var(--grey-4);
  font-size: 15px;
  font-style: italic;
}


/* ============================================
   How We Work — Steps
   ============================================ */
.steps-section {
  padding: 0 0 80px;
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark-1) 100%);
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}

.step-card .step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card .step-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--grey-5);
  fill: none;
  stroke-width: 1.5;
}

.step-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--grey-4);
  line-height: 1.7;
}

.steps-bottom {
  margin-top: 40px;
  padding: 0 24px;
}

.steps-bottom p {
  font-size: 15px;
  color: var(--grey-4);
  line-height: 1.7;
  max-width: 720px;
}


/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */
.legal-page {
  padding: 100px 0 60px;
  background: var(--white);
}

.legal-page .legal-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-2);
}

.legal-page .legal-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-1);
  margin-bottom: 8px;
}

.legal-page .legal-header .last-updated {
  font-size: 13px;
  color: var(--grey-3);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-1);
  margin: 36px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--grey-2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 8px 0 16px 0;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--grey-2);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grey-3);
}

.legal-content strong {
  color: var(--dark-1);
  font-weight: 600;
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--dark-3);
  }

  .nav-links.open .nav-cta-mobile {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--grey-2);
    border-radius: 24px;
    color: var(--white);
    font-size: 14px;
    text-align: center;
    width: fit-content;
  }

  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 30px; }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .breakthrough-header {
    flex-direction: column;
    gap: 16px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-block {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .service-block .block-icon {
    width: 64px;
    height: 64px;
  }

  .service-block .block-icon svg {
    width: 48px;
    height: 48px;
  }

  .service-block ul {
    grid-template-columns: 1fr;
  }

  .step-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .step-card .step-icon {
    width: 40px;
    height: 40px;
  }

  .services-hero h1 { font-size: 26px; }

  .cta-banner h2 { font-size: 24px; }

  .legal-page { padding: 80px 0 40px; }
  .legal-page .legal-header h1 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
