/* ══════════════════════════════════════════
   Harper Morgan — Consolidated Styles
   ══════════════════════════════════════════ */

:root {
  --blue: #214d8d;
  --green: #7db441;
  --blue-light: #8EB8E5;
  --sky: #f49d37;
  --orange: #f49d37;
  --off-white: #FAFDF6;
  --grey-light: #E0E0E2;
  --text: #3a3a3a;
  --text-muted: #5c6a7a;
  --radius: 16px;
  --radius-sm: 10px;
  --footer-bg: #2a2d32;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(32,76,140,0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 32px;
}

.logo svg { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(32,76,140,0.06);
}

.nav-links .nav-cta {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  background: #6da036;
  color: #fff;
}

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  opacity: 0.6;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(32,76,140,0.14);
  min-width: 215px;
  padding: 14px 8px 8px;
  z-index: 200;
  border: 1px solid rgba(32,76,140,0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-menu a {
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 14px;
  border-radius: 8px;
  display: block;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--blue);
  background: rgba(32,76,140,0.06);
}

/* ── Awards Strip ── */
.awards-featured {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.awards-featured img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
  mix-blend-mode: multiply;
}

.awards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 32px;
  margin-top: 40px;
}

.award-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.award-item img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.88;
  transition: opacity 0.2s, filter 0.2s;
}

.award-item--multiply img {
  mix-blend-mode: multiply;
}

.award-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── About page styles ── */
.about-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 24px;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  border-radius: 12px;
  padding: 18px 24px;
  border: 1px solid rgba(32,76,140,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.story-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 36px 32px;
  border: 1px solid rgba(32,76,140,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-quote-mark {
  font-size: 72px;
  line-height: 0.6;
  color: var(--green);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  display: block;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  margin: 0 0 28px;
}

.testimonial-attribution {
  border-top: 1px solid rgba(32,76,140,0.08);
  padding-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

.testimonial-attribution span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Client Logos Grid ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 32px 48px;
  margin-top: 48px;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-item img,
.client-logo-item svg {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.2s, filter 0.2s;
}

.client-logo-item img:hover,
.client-logo-item svg:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo-item--wide img,
.client-logo-item--wide svg {
  width: 220px;
  height: auto;
}

.client-logo-item--sm img,
.client-logo-item--sm svg {
  height: 50px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Home Hero ── */
.hero {
  padding: 100px 0 80px;
  background: url('img/city-scape-unsplash.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.95) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(124,179,66,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(244,157,55,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-chart-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(32,76,140,0.12), 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.chart-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-top: 4px;
}

.chart-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(244,157,55,0.12);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.chart-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Growth line animation */
.growth-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2s ease-out 0.5s forwards;
}

.growth-area {
  opacity: 0;
  animation: fadeArea 1.5s ease-out 1.2s forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeArea {
  to { opacity: 1; }
}

/* Stat pills */
.hero-stat-pills {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.stat-pill {
  flex: 1;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.stat-pill-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-pill-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Floating accent cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(32,76,140,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  z-index: 2;
  animation: floatIn 0.8s ease-out both;
}

.floating-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-partners {
  top: -10px;
  right: -20px;
  animation-delay: 1.8s;
}

.float-partners .floating-card-icon {
  background: rgba(244,157,55,0.1);
}

.float-partners .floating-card-icon svg { stroke: var(--orange); }

.float-revenue {
  bottom: 60px;
  left: -24px;
  animation-delay: 2.2s;
}

.float-revenue .floating-card-icon {
  background: rgba(244,157,55,0.1);
}

.float-revenue .floating-card-icon svg { stroke: var(--orange); }

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Inner Page Hero ── */
.inner-hero {
  padding: 80px 0 60px;
  background: url('img/city-scape-unsplash.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0.98) 100%);
  pointer-events: none;
  z-index: 0;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}

.inner-hero .hero-lead {
  margin-bottom: 28px;
}

/* ── Typography ── */
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--blue);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

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

.hero-lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 660px;
}

.hero-sub {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 20px 0 0;
}

/* ── Buttons ── */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(32,76,140,0.25);
}

.btn-primary:hover {
  background: #1a3f74;
  box-shadow: 0 4px 20px rgba(32,76,140,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid rgba(32,76,140,0.2);
}

.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(32,76,140,0.03);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(124,179,66,0.3);
}

.btn-green:hover {
  background: #6da036;
  box-shadow: 0 4px 20px rgba(124,179,66,0.4);
  transform: translateY(-1px);
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ── Trust Strip ── */
.trust-strip {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--grey-light);
}

.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(124,179,66,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Section Styles ── */
section { padding: 100px 0; }

.section-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 48px;
}

.bg-soft { background: var(--off-white); }
.bg-blue-soft { background: #f4f8fc; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: rgba(32,76,140,0.15);
  box-shadow: 0 8px 32px rgba(32,76,140,0.08);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:nth-child(2)::before { background: var(--green); }
.service-card:nth-child(3)::before { background: var(--orange); }
.service-card:nth-child(4)::before { background: var(--orange); }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-icon-1 { background: rgba(32,76,140,0.08); }
.service-icon-1 svg { stroke: var(--blue); }
.service-icon-2 { background: rgba(124,179,66,0.1); }
.service-icon-2 svg { stroke: var(--green); }
.service-icon-3 { background: rgba(244,157,55,0.1); }
.service-icon-3 svg { stroke: var(--orange); }
.service-icon-4 { background: rgba(244,157,55,0.1); }
.service-icon-4 svg { stroke: var(--orange); }

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

.card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Why HM ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  background: #fff;
  position: relative;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover::after { opacity: 1; }

.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Generic Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px;
}

.left-accent { border-left: 4px solid var(--blue); }

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

.card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.card p, .card li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.card ul {
  padding-left: 20px;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Outcomes ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.outcome-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--grey-light);
  transition: all 0.3s;
}

.outcome-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.outcome-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.outcome-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.outcome-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Process ── */
.process-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-card {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px;
}

.faq-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.faq-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Intro Text ── */
.intro-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 780px;
}

.intro-text + .intro-text { margin-top: 16px; }

.highlight { color: var(--blue); font-weight: 700; }

.note {
  font-size: 14px;
  color: var(--text-muted);
}

.note strong { color: var(--blue); }

/* ── Contact Layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* ── Contact Form ── */
.contact-form {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 40px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--orange);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(32,76,140,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8c4;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235c6a7a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(32,76,140,0.25);
  width: 100%;
  justify-content: center;
}

.form-submit:hover {
  background: #1a3f74;
  box-shadow: 0 4px 20px rgba(32,76,140,0.35);
  transform: translateY(-1px);
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ── Contact Sidebar ── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 32px;
}

.sidebar-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.sidebar-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.sidebar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sidebar-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-icon-blue { background: rgba(32,76,140,0.08); }
.sidebar-icon-blue svg { stroke: var(--blue); }
.sidebar-icon-green { background: rgba(124,179,66,0.1); }
.sidebar-icon-green svg { stroke: var(--green); }
.sidebar-icon-orange { background: rgba(244,157,55,0.1); }
.sidebar-icon-orange svg { stroke: var(--orange); }

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

.expect-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* ── CTA ── */
.cta-section {
  padding: 100px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,179,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-section .btn-group {
  justify-content: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand .logo-footer svg {
  height: 30px;
  width: auto;
}

.footer-brand .logo-footer svg .cls-1,
.footer-brand .logo-footer svg .cls-2 {
  fill: rgba(255,255,255,0.8);
}

.footer-tagline {
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--grey-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-links.open .nav-cta { margin-left: 0; align-self: flex-start; }
  .header-inner { position: relative; }
  .nav-dropdown-menu {
    position: static;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    border: none;
    border-radius: 0;
    border-left: 2px solid rgba(32,76,140,0.12);
    padding: 4px 0 4px 12px;
    margin: 2px 0 6px 14px;
    min-width: 0;
  }
  section { padding: 72px 0; }
  .hero, .inner-hero { padding: 72px 0 56px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .floating-card { display: none; }
  .trust-row { justify-content: center; }
  .why-grid, .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .card-grid.two, .card-grid.three { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .client-logo-item img, .client-logo-item svg { height: 48px; max-width: 140px; }
  .client-logo-item--wide img, .client-logo-item--wide svg { width: 140px; height: auto; }
  .client-logo-item--sm img, .client-logo-item--sm svg { height: 34px; }
}

@media (max-width: 600px) {
  .services-grid,
  .why-grid,
  .outcomes-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero { padding: 56px 0 48px; }
  .inner-hero { padding: 56px 0 40px; }
  section { padding: 56px 0; }
  .hero-stat-pills { flex-direction: column; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-grid { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo-item img, .client-logo-item svg { height: 40px; max-width: 120px; }
  .client-logo-item--wide img, .client-logo-item--wide svg { width: 120px; height: auto; }
  .client-logo-item--sm img, .client-logo-item--sm svg { height: 28px; }
}
