@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy: #002b4e;
  --blue: #00517a;
  --accent: #0088cc;
  --gold: #d4a843;
  --light-bg: #f0f4f8;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --white: #ffffff;
  --border: #d8e2ec;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 17px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ── Hero ── */

.hero {
  background: linear-gradient(160deg, #001a30 0%, #003566 40%, #00517a 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,136,204,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(212,168,67,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.logo {
  width: 110px;
  margin-bottom: 28px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0.9;
  line-height: 1.4;
}

.subtitle {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.88;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.cta-button:hover {
  background: #c49a35;
  transform: translateY(-1px);
}

/* ── Content Sections ── */

.content {
  padding: 0;
}

.content.alt {
  background: var(--light-bg);
}

h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.section-intro {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 720px;
}

/* ── Phase Cards ── */

.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.phase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.2s;
}

.phase-card:hover {
  box-shadow: 0 4px 20px rgba(0,43,78,0.08);
}

.phase-card.highlight-card {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #fffdf5 0%, var(--white) 100%);
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.phase-number {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.phase-cost {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--light-bg);
  padding: 4px 12px;
  border-radius: 20px;
}

.phase-card h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.phase-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.phase-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
}

.deliverable {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px !important;
  color: var(--text) !important;
}

/* ── What We Provide ── */

.provide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.provide-item {
  text-align: center;
  padding: 24px 16px;
}

.provide-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.provide-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.provide-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Expertise List ── */

.expertise-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 28px;
}

.expertise-list li {
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-left: 36px;
}

.expertise-list li::before {
  content: '→';
  position: absolute;
  left: 14px;
  color: var(--accent);
  font-weight: 700;
}

.emphasis {
  font-weight: 600;
  color: var(--navy);
  font-size: 17px;
  margin-top: 8px;
}

/* ── Why This Matters ── */

.why-block {
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

.why-block p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.why-block p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 600;
}

/* ── Contact ── */

.contact-section {
  text-align: center;
}

.contact-section > p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--text-light);
}

.contact-card {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 48px;
  text-align: center;
}

.contact-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-links {
  margin-top: 16px;
}

.contact-links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* ── Footer ── */

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  line-height: 1.7;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 18px;
  }

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

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

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .provide-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 50px 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .contact-card {
    padding: 24px;
  }
}
