/* ==========================================================================
   AMP Engineering Services — Stylesheet
   Colors derived from logo:
     Navy:        #223C5C
     Steel Gray:  #6D7C85
     Light Steel: #A0ABB3
     Charcoal:    #232C35
     Medium Gray: #4F4E4E
   ========================================================================== */

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

:root {
  --navy: #223C5C;
  --navy-dark: #192d45;
  --navy-light: #2d4f75;
  --steel: #6D7C85;
  --steel-light: #A0ABB3;
  --charcoal: #232C35;
  --gray-medium: #4F4E4E;
  --gray-light: #E8EBED;
  --gray-bg: #F4F5F6;
  --white: #FFFFFF;
  --accent: #3A7CA5;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --max-width: 1200px;
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

.section-heading {
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--steel-light);
  margin: 16px auto 0;
}

.section-heading--left {
  text-align: left;
}

.section-heading--left::after {
  margin: 16px 0 0;
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--steel);
  font-size: 1.05rem;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-height);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(34, 60, 92, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.25s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link--cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: var(--navy-light);
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&h=900&fit=crop') center/cover no-repeat;
  margin-top: var(--header-height);
}

.hero--page {
  min-height: 50vh;
}

.hero--page .hero-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 45, 69, 0.88) 0%,
    rgba(34, 60, 92, 0.78) 40%,
    rgba(109, 124, 133, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: 80px 0;
}

.hero-headline {
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-weight: 700;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero-region {
  color: var(--steel-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Credibility Strip
   ========================================================================== */
.credibility-strip {
  background: var(--charcoal);
  padding: 40px 0;
}

.credibility-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.credibility-item {
  text-align: center;
}

.credibility-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.credibility-label {
  display: block;
  font-size: 0.85rem;
  color: var(--steel-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 200px;
}

.credibility-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   Primary Services (3-card grid)
   ========================================================================== */
.primary-services {
  padding: 96px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 60, 92, 0.1);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px 24px;
}

.service-card-body h3 {
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link::after {
  content: '\2192';
  transition: transform 0.2s;
}

.service-link:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   Expanded Services Grid
   ========================================================================== */
.expanded-services {
  padding: 96px 0;
  background: var(--gray-bg);
}

.expanded-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.expanded-item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 6px;
  border: 1px solid var(--gray-light);
  transition: border-color 0.25s;
}

.expanded-item:hover {
  border-color: var(--steel-light);
}

.expanded-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--navy);
}

.expanded-icon svg {
  width: 100%;
  height: 100%;
}

.expanded-item h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.expanded-item p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.6;
}

/* ==========================================================================
   Why AMP
   ========================================================================== */
.why-amp {
  padding: 96px 0;
  background: var(--white);
}

.why-amp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.why-amp-image {
  border-radius: 6px;
  overflow: hidden;
}

.why-amp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.why-amp-points {
  margin-top: 32px;
}

.why-point {
  margin-bottom: 28px;
}

.why-point h4 {
  margin-bottom: 8px;
  color: var(--navy);
}

.why-point p {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

/* ==========================================================================
   Featured Project
   ========================================================================== */
.featured-project {
  padding: 96px 0;
  background: var(--gray-bg);
}

.project-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.project-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.project-details h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.project-location {
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.project-details p {
  color: var(--gray-medium);
  margin-bottom: 24px;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--gray-light);
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 3px;
}

/* ==========================================================================
   Permit Guidance
   ========================================================================== */
.permit-guidance {
  padding: 96px 0;
  background: var(--white);
}

.permit-guidance-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.permit-lead {
  font-size: 1.1rem;
  color: var(--gray-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.permit-content p {
  color: var(--gray-medium);
  margin-bottom: 24px;
}

.permit-list {
  list-style: none;
  padding: 0;
}

.permit-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--gray-medium);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-light);
}

.permit-list li:last-child {
  border-bottom: none;
}

.permit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

.permit-image {
  border-radius: 6px;
  overflow: hidden;
}

.permit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ==========================================================================
   Service Area
   ========================================================================== */
.service-area {
  padding: 96px 0;
  background: var(--charcoal);
  color: var(--white);
}

.service-area .section-heading {
  color: var(--white);
}

.service-area .section-heading::after {
  background: var(--steel);
}

.service-area .section-intro {
  color: var(--steel-light);
}

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

.area-column h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.area-column ul {
  list-style: none;
}

.area-column li {
  padding: 8px 0;
  color: var(--steel-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  padding: 96px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-method {
  margin-bottom: 28px;
}

.contact-method h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--steel);
  margin-bottom: 6px;
}

.contact-method a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-method p {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.optional {
  font-weight: 400;
  color: var(--steel);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(34, 60, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  align-self: flex-start;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

.footer-contact p {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .why-amp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-amp-image img {
    min-height: 350px;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .permit-guidance-inner {
    grid-template-columns: 1fr;
  }

  .permit-image {
    order: -1;
  }

  .permit-image img {
    min-height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 24px;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link--cta {
    text-align: center;
    margin-top: 12px;
    border-bottom: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 48px 0;
  }

  .credibility-inner {
    flex-direction: column;
    gap: 24px;
  }

  .credibility-divider {
    width: 48px;
    height: 1px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .primary-services,
  .expanded-services,
  .why-amp,
  .featured-project,
  .permit-guidance,
  .service-area,
  .contact {
    padding: 64px 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .credibility-number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Projects Grid (projects.html)
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.projects-grid .service-card-body .project-location {
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.projects-grid .service-card-body .project-tags {
  margin-top: 16px;
}

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

/* ==========================================================================
   Service Page Styles
   ========================================================================== */
.service-page-content {
  padding: 80px 0;
  background: var(--white);
}

.service-page-content p {
  color: var(--gray-medium);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 780px;
}

.service-page-content .section-heading {
  text-align: left;
  margin-bottom: 24px;
}

.service-page-content .section-heading::after {
  margin: 16px 0 0;
}

.deliverables-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

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

.deliverable-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 6px;
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--navy);
}

.deliverable-item h4 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.deliverable-item p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
}

.related-services {
  padding: 80px 0;
  background: var(--white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 60, 92, 0.08);
}

.related-card h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.related-card p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cta-section {
  padding: 80px 0;
  background: var(--charcoal);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section h2::after {
  background: var(--steel);
}

.cta-section p {
  color: var(--steel-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
}

.cta-contact-info {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.cta-contact-info a {
  color: rgba(255, 255, 255, 0.7);
}

.cta-contact-info a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .service-page-content,
  .deliverables-section,
  .related-services,
  .cta-section {
    padding: 56px 0;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.expanded-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.expanded-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.expanded-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.expanded-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.expanded-grid .reveal:nth-child(6) { transition-delay: 0.35s; }
.expanded-grid .reveal:nth-child(7) { transition-delay: 0.42s; }

.credibility-inner .reveal:nth-child(2) { transition-delay: 0.15s; }
.credibility-inner .reveal:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================================================
   Service Page Content Sections (Agent 2 additions)
   ========================================================================== */
.service-page-content {
  padding: 80px 0;
  background: var(--white);
}

.service-page-content p {
  color: var(--gray-medium);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 780px;
}

.service-page-content h2 {
  margin-bottom: 24px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.deliverable-item {
  background: var(--gray-bg);
  padding: 32px 28px;
  border-radius: 6px;
  border-left: 3px solid var(--navy);
}

.deliverable-item h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.deliverable-item p {
  font-size: 0.9rem !important;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 0;
}

.related-services {
  padding: 80px 0;
  background: var(--gray-bg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.related-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 6px;
  border: 1px solid var(--gray-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 60, 92, 0.08);
}

.related-card h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.related-card p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-cta {
  padding: 80px 0;
  background: var(--charcoal);
  text-align: center;
}

.service-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.service-cta h2::after {
  background: var(--steel);
}

.service-cta p {
  color: var(--steel-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.service-cta .btn-primary {
  display: inline-block;
}

@media (max-width: 768px) {
  .deliverables-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-page-content,
  .related-services,
  .service-cta {
    padding: 56px 0;
  }
}

@media (max-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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