/* ============================================
   INDEX PAGE — Homepage Styles
   ============================================ */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2b28 0%, rgb(25,75,70) 40%, #1a5c55 70%, #237a72 100%);
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(245,158,11,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(25,75,70,0.3) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50% { transform: translateY(-60px) translateX(20px); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 120px;
}

.hero-image {
  order: -1;
}

.hero-text {
  color: #fff;
}

.hero-eyebrow {
  color: var(--orange-400) !important;
}

.hero-eyebrow::before {
  background: var(--orange-400) !important;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 540px;
}

.hero .trust-line {
  color: rgba(255,255,255,0.6);
}

.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.hero-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: rgb(25,75,70);
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 2px;
}

/* --- Hero Service Highlights --- */
.hero-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 4px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.hero-service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(59,130,246,0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-service-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(245,158,11,0.35);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-service-item:hover::before {
  opacity: 1;
}

.hero-service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgb(202,80,51), #b84a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(202,80,51,0.35);
  position: relative;
  z-index: 1;
}

.hero-service-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.hero-service-item span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* Stagger animation */
.hero-service-item:nth-child(1) { animation: serviceSlideIn 0.6s 0.4s both; }
.hero-service-item:nth-child(2) { animation: serviceSlideIn 0.6s 0.55s both; }
.hero-service-item:nth-child(3) { animation: serviceSlideIn 0.6s 0.7s both; }

@keyframes serviceSlideIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Hero Opportunity Callout (Below Image) --- */
.hero-opportunity-callout {
  margin-top: 24px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(202,80,51,0.12), rgba(25,75,70,0.1));
  border: 1px solid rgba(202,80,51,0.25);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.opportunity-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.opportunity-icon {
  width: 36px;
  height: 36px;
  color: rgb(202,80,51);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(202,80,51,0.4));
}

.hero-opportunity-callout p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.opportunity-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgb(202,80,51);
  border: 1px solid rgb(202,80,51);
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(202,80,51,0.3);
}

.opportunity-link:hover {
  background: #b84a2a;
  border-color: #b84a2a;
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(202,80,51,0.4);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* --- Pain Section (Redesigned — Stunning Layout) --- */
.pain-section {
  padding: 100px 0 80px;
}

.pain-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.pain-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.pain-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600) !important;
  line-height: 1.7;
}

.pain-subtitle strong {
  color: var(--orange-500);
  font-weight: 700;
}

/* Card Grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

/* Individual Pain Card — Stunning Design */
.pain-card {
  position: relative;
  padding: 36px 32px 32px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(25,75,70,0.08);
  text-align: center;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(25,75,70,0.06);
}

/* Animated gradient top border */
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(25,75,70), rgba(25,75,70,0.8), rgb(202,80,51));
  background-size: 200% 100%;
  animation: cardBorderShimmer 4s ease-in-out infinite;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

@keyframes cardBorderShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pain-card:hover::before {
  opacity: 1;
}

/* Subtle background glow on hover */
.pain-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(25,75,70,0.08), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pain-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(25,75,70,0.12), 0 0 0 1px rgba(25,75,70,0.1);
  border-color: rgba(25,75,70,0.15);
  background: rgba(255,255,255,0.9);
}

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

/* Raised cards (middle column) — staggered effect */
.pain-card--raised {
  margin-top: -20px;
}

/* Numbered badge */
.pain-card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(25,75,70,0.08), rgba(25,75,70,0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.pain-card:hover .pain-card-number {
  background: linear-gradient(135deg, rgba(25,75,70,0.25), rgba(245,158,11,0.2));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Glowing icon container */
.pain-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(25,75,70,0.1), rgba(25,75,70,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(25,75,70,0.7);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.pain-card-icon svg {
  width: 28px;
  height: 28px;
}

.pain-card:hover .pain-card-icon {
  background: linear-gradient(135deg, rgba(25,75,70,0.9), rgba(25,75,70,0.7));
  color: #fff;
  box-shadow: 0 8px 24px rgba(25,75,70,0.25);
  transform: scale(1.08) rotate(-3deg);
}

.pain-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--gray-900);
  position: relative;
  z-index: 1;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* --- Pain Callout Banner (Dramatic) --- */
.pain-callout {
  margin-top: 56px;
  text-align: center;
}

.pain-callout-inner {
  position: relative;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(25,75,70,0.95), rgba(14,45,115,0.9));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(25,75,70,0.2);
}

.pain-callout-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

.pain-callout p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.pain-callout p strong {
  color: #fff;
}

.callout-emphasis {
  font-family: var(--font-heading);
  font-size: 1.75rem !important;
  font-weight: 800;
  color: var(--orange-400) !important;
  margin-top: 16px !important;
  position: relative;
  z-index: 1;
}

.pain-callout .btn {
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

/* --- Solution Section (Redesigned — Stunning 2-Column) --- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card wrapper — houses the animated border */
.solution-card {
  position: relative;
  border-radius: 24px;
  padding: 3px;
  background: transparent;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Animated rotating gradient border */
.solution-card-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 3px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    rgb(25,75,70) 0%,
    rgb(202,80,51) 25%,
    rgba(25,75,70,0.3) 50%,
    rgb(202,80,51) 75%,
    rgb(25,75,70) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  animation: rotateBorder 4s linear infinite;
  transition: opacity 0.4s ease;
}

@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

.solution-card:hover .solution-card-border {
  opacity: 1;
}

/* Ambient glow on hover */
.solution-card-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(25,75,70,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.solution-card:hover .solution-card-glow {
  opacity: 1;
}

/* Inner content area */
.solution-card-inner {
  position: relative;
  z-index: 1;
  padding: 44px 40px 36px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
}

.solution-card:hover .solution-card-inner {
  background: rgba(255,255,255,0.95);
}

/* Header row: icon + step number */
.solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* Glowing icon container */
.solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(25,75,70), #1a5c55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(25,75,70,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.solution-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

.solution-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-icon {
  background: linear-gradient(135deg, rgb(202,80,51), #b84a2a);
  box-shadow: 0 8px 28px rgba(202,80,51,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: scale(1.08) rotate(-5deg);
}

.solution-card:hover .solution-icon svg {
  transform: scale(1.1);
}

/* Step number */
.solution-step {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(25,75,70,0.1), rgba(25,75,70,0.04));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  user-select: none;
}

.solution-card:hover .solution-step {
  background: linear-gradient(135deg, rgba(202,80,51,0.3), rgba(25,75,70,0.15));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Card content */
.solution-card-inner h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--gray-900);
  transition: color 0.3s ease;
}

.solution-card:hover .solution-card-inner h3 {
  color: rgb(25,75,70);
}

.solution-card-inner p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-600);
  flex: 1;
}

/* Service tags */
.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(25,75,70,0.08);
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgb(25,75,70);
  background: rgba(25,75,70,0.06);
  border: 1px solid rgba(25,75,70,0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-tag {
  background: rgba(202,80,51,0.08);
  border-color: rgba(202,80,51,0.2);
  color: rgb(202,80,51);
}

/* Stagger the card border animation */
.solution-card:nth-child(2) .solution-card-border { animation-delay: -1s; }
.solution-card:nth-child(3) .solution-card-border { animation-delay: -2s; }
.solution-card:nth-child(4) .solution-card-border { animation-delay: -3s; }

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

/* --- Who We Serve Section --- */
.serve-section {
  padding: 100px 0;
}

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

.serve-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(25,75,70,0.08);
  box-shadow: 0 4px 24px rgba(25,75,70,0.06);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.serve-card:hover {
  box-shadow: 0 20px 60px rgba(25,75,70,0.12), 0 0 0 1px rgba(25,75,70,0.1);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(25,75,70,0.15);
}

.serve-img {
  height: 200px;
  overflow: hidden;
}

.serve-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.serve-content {
  padding: 28px;
}

.serve-content h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.serve-content p {
  font-size: 0.9rem;
}

/* --- Why Choose Us --- */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.why-left > p {
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.why-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(25,75,70,0.08);
  box-shadow: 0 4px 24px rgba(25,75,70,0.06);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(25,75,70), rgba(25,75,70,0.8), rgb(202,80,51));
  background-size: 200% 100%;
  animation: cardBorderShimmer 4s ease-in-out infinite;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  box-shadow: 0 20px 60px rgba(25,75,70,0.12), 0 0 0 1px rgba(25,75,70,0.1);
  border-color: rgba(25,75,70,0.15);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.9);
}

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

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(25,75,70,0.1), rgba(25,75,70,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(25,75,70,0.7);
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(25,75,70,0.9), rgba(25,75,70,0.7));
  color: #fff;
  box-shadow: 0 6px 20px rgba(25,75,70,0.25);
  transform: scale(1.08) rotate(-3deg);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.875rem;
}

/* --- Mission Section --- */
.mission-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.mission-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-base);
}

.mission-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.mission-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-400);
  margin-bottom: 16px;
}

.mission-card p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* --- Impact Section --- */
.impact-section {
  padding: 100px 0;
}

.impact-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.impact-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-md);
}

.impact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.impact-photo:hover img {
  transform: scale(1.05);
}

/* --- Final CTA (styles now in global.css) --- */

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { margin: 0 auto; }
  .hero .btn-group { justify-content: center; }
  .hero .trust-line { justify-content: center; }
  .hero-image { max-width: 560px; margin: 0 auto; order: 0; }
  .hero-services { align-items: center; }
  .hero-service-item { max-width: 420px; }
  .hero-opportunity-callout { flex-direction: column; text-align: center; }
  .opportunity-link { align-self: center; }
  .pain-layout { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-card--raised { margin-top: 0; }
  .why-layout { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .mission-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-callout-inner { padding: 40px 28px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card-inner { padding: 32px 24px 28px; min-height: auto; }
  .solution-icon { width: 52px; height: 52px; }
  .solution-step { font-size: 2.5rem; }
  .serve-grid { grid-template-columns: 1fr; }
  .impact-photos { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-img-wrapper img { height: 340px; }
}
