/* ── Custom Properties ─────────────────────────────────────────────────── */
:root {
  --navy: #0a1628;
  --navy-mid: #1a2a4a;
  --navy-light: #2d4a7a;
  --blue-accent: #4a7fc7;
  --accent: #b8432f;
  --accent-light: #d97a5a;
  --cream: #faf7f2;
  --surface: #ffffff;
  --border: #e0dcd0;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-muted: #888880;
  --red: #c62828;
  --red-bg: #ffebee;
  --navy-bg: #e8f0fe;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --font: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
  --nav-h: 68px;
}

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

/* ── Base ───────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
  margin: 0 auto;
  padding: 0 5.5rem;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ── Section ────────────────────────────────────────────────────────────── */
.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent);
  border-bottom-width: 3px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow 0.2s;
  height: var(--nav-h);
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

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

.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin: 0 auto;
    padding: 5px;
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-light);
}

.nav-cta {
  font-size: 0.82rem !important;
  padding: 0.4rem 1rem !important;
}

/* Toggle button (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu (hidden by default) */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 0.25rem;
  z-index: 999;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-sm { font-size: 0.82rem; padding: 0.4rem 1rem; }
.btn-md { font-size: 0.88rem; padding: 0.55rem 1.25rem; }
.btn-lg { font-size: 0.95rem; padding: 0.7rem 1.8rem; }

/* Fill variants */
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover,
a.btn-accent:hover,
button.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

/* Outline variants */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ── Card ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.card-link:hover {
  gap: 0.5rem;
}

/* ── Flash messages ─────────────────────────────────────────────────────── */
.flash-messages {
  position: fixed;
  top: calc(var(--nav-h) + 8px);
  right: 16px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 380px;
}

.flash {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  animation: flashIn 0.3s ease-out;
}

@keyframes flashIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.flash-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.flash-error {
  background: var(--red-bg);
  color: var(--red);
  border-left: 4px solid var(--red);
}

.flash-info {
  background: var(--navy-bg);
  color: var(--navy);
  border-left: 4px solid var(--blue-accent);
}

.flash-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: auto;
  color: inherit;
  opacity: 0.5;
}

.flash-close:hover {
  opacity: 1;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

footer h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

footer ul li {
  margin-bottom: 0.35rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}

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

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}

.social-link:hover {
  color: var(--accent-light);
}

.social-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .footer-bar a:hover {
    color: var(--accent-light);
  }
}

/* ── Hero (homepage specific) ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-out;
  will-change: opacity, transform;
}

.hero-bg-layer.active {
  opacity: 1;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 22, 40, 0.15) 40%,
    rgba(10, 22, 40, 0.4) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  padding-bottom: 1rem;
}

.hero-icon {
  margin-bottom: 0.75rem;
  color: var(--accent);
  opacity: 0.9;
}

.hero-section h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-section .hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  height: 3em;
  display: flex;
  align-items: center;
  transition: opacity 400ms ease-out;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-indicators {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: default;
  transition: background-color 200ms ease-out, transform 200ms ease-out;
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.25);
}

/* ── Hero Entrance Animations ──────────────────────────────────────────── */
.hero-section h1 {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s ease-out 0.15s forwards;
}

.hero-section .hero-sub {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.6s ease-out 0.35s forwards;
}

.hero-section .hero-actions {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.5s ease-out 0.55s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slow ken burns zoom on active background */
.hero-bg-layer.active {
  animation: kenBurns 10s ease-in-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* ── Reveal on scroll ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 0.4s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Directional reveal — alternating slide */
.reveal-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-right.revealed,
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stats count-up animation */
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Stats bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ── Services grid ──────────────────────────────────────────────────────── */
/* ── Alternating Service Rows ──────────────────────────────────────────── */
.service-row {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-row-image {
  flex: 0 0 45%;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-row-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, scale 0.5s ease;
}

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

.service-row-text {
  flex: 1;
}

.service-row-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-row-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.service-row.even {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .service-row-image {
    flex: none;
    width: 100%;
  }

  .service-row-image img {
    height: 220px;
  }

  .service-row.even {
    flex-direction: column;
  }
}

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

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .service-icon {
  height: 200px;
  overflow: hidden;
}

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

.service-card:hover .service-icon img {
  transform: scale(1.08);
}

.service-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps-grid {
  display: flex;
}

.step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.0rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 0 0.75rem;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  flex-shrink: 0;
  align-self: center;
  position: relative;
}

.step-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: 0.2;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.step-connector i {
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0.85;
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 0 0.3rem;
}

/* ── Team Section ───────────────────────────────────────────────────────── */
.team-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5.75rem;
  margin-top: 2.5rem;
}

.team-item {
  text-align: center;
  flex: 0 0 220px;
}

.team-avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: #eef2f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .team-item:hover .team-avatar {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(18, 26, 31, 0.12);
  }
}

.team-item:active .team-avatar {
  transform: scale(0.99);
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark, #0f1720);
  margin: 0.45rem 0 0.15rem;
}

.team-role {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-mid, #8f9aa3);
  margin: 0;
}

@media (max-width: 768px) {
  .team-row {
    gap: 1.25rem;
    flex-direction: column;
  }

  .team-item {
    flex: 0 0 140px;
  }

  .team-avatar {
    width: 120px;
    height: 120px;
    padding: 6px;
  }

  .team-name {
    font-size: 0.95rem;
  }

  .team-role {
    font-size: 0.85rem;
  }
}

/* ── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy-mid);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* ── Two-column layout ──────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* ── Team grid ──────────────────────────────────────────────────────────── */
.team-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.team-wrap .team-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 1 320px;
  background: var(--surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 250ms ease;
}

.team-wrap .team-item:hover {
  box-shadow: var(--shadow-md);
}

.team-wrap .team-item .team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.team-wrap .team-body h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.team-wrap .team-body p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ── Values grid ────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Page intro ──────────────────────────────────────────────────────────── */
.section-intro {
  padding: 5.5rem 0 0;
}

/* ── Page title ──────────────────────────────────────────────────────────── */
.page-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
}

.page-subtitle {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 600px;
  margin-top: 0.75rem;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-section {
    height: 100dvh;
    padding: 5rem 1.25rem 2rem;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section .hero-sub {
    font-size: 0.9rem;
    height: 2.8em;
    margin-bottom: 100px;
  }

  .hero-fade {
    height: 50%;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .page-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .service-card {
    flex-direction: column;
  }

  .service-icon {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .service-body {
    padding: 1rem;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step {
    padding: 1.5rem 1rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .step-connector {
    width: auto;
    height: 2.5rem;
    align-self: center;
  }

  .step-connector::before {
    width: 1px;
    height: 100%;
  }

  .step-connector i {
    font-size: 0.9rem;
    transform: rotate(90deg);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bar .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}