/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --navy:        #0e3a3c;
  --navy-dark:   #082527;
  --navy-light:  #155f61;
  --gold:        #5ec9c2;
  --gold-light:  #8ddbd6;
  --orange:      #f4742b;
  --orange-light: #ff8f4d;
  --white:       #ffffff;
  --off-white:   #f7f6f2;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --text:        #1e293b;
  --text-light:  #64748b;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:   0 10px 30px rgba(0,0,0,.14);

  --max-width:   1160px;
  --section-gap: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(244,116,43,.4);
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ============================================================
   Navigation
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.nav-wrapper.scrolled {
  background: rgba(8, 37, 39, .97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  margin-left: 8px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(94,201,194,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at -10% 60%, rgba(21,95,97,.6) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #1c5456 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.proof-item:first-child { padding-left: 0; }

.proof-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.proof-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

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

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-org {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(14,58,60,.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

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

/* ============================================================
   How It Works
   ============================================================ */
.how-it-works { background: var(--navy-dark); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-eyebrow { color: var(--gold); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 40px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  text-align: center;
}

.step-num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.step-arrow {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  opacity: .5;
  margin-top: 60px;
}

/* ============================================================
   About
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content .section-eyebrow { display: block; }

.about-content .section-title {
  text-align: left;
  margin-bottom: 4px;
}

.about-title {
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.credential svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--off-white); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 72px;
  line-height: .8;
  color: var(--gold);
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: .02em;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.author-title {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================================
   Case Studies
   ============================================================ */
.results { background: var(--white); }

.case-studies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.case-study {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  transition: box-shadow .25s;
}
.case-study:hover { box-shadow: var(--shadow-lg); }

.case-study-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.case-study-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}

.case-study-org {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 20px;
}

.case-study-body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

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

.result-num {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.result-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ============================================================
   Insights / Blog
   ============================================================ */
.insights { background: var(--off-white); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.blog-card.featured {
  padding: 40px;
}

.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gray-100);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card.featured .blog-title {
  font-size: 22px;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.blog-link:hover { color: var(--gold); }

.insights-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--navy-dark); }
.contact .section-title { color: var(--white); text-align: left; }
.contact .section-eyebrow { color: var(--gold); }

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

.contact-content p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.75);
}
.contact-detail svg { flex-shrink: 0; color: var(--gold); }
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,58,60,.1);
}

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

.form-group select { appearance: none; cursor: pointer; }

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

.form-success {
  padding: 40px;
  text-align: center;
  color: var(--navy);
}
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 15px;
  color: var(--text-light);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   Blog Pages
   ============================================================ */
.blog-page-hero {
  background: var(--navy-dark);
  padding: 120px 0 72px;
}

.blog-page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  transition: color .2s;
}
.blog-page-back:hover { color: var(--gold); }

.blog-page-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-page-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 760px;
  margin-bottom: 20px;
}

.blog-page-meta {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

.blog-article {
  padding: 72px 0 96px;
}

.blog-article-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.prose {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.prose h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
  line-height: 1.3;
}

.prose h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.prose p { margin-bottom: 20px; }

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.prose ul li { margin-bottom: 8px; }

.prose strong { font-weight: 600; color: var(--navy); }

.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

.blog-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.sidebar-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Blog listing */
.blog-listing-hero {
  background: var(--navy-dark);
  padding: 120px 0 72px;
  text-align: center;
}
.blog-listing-hero .section-title { color: var(--white); }

.blog-listing {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: span 2; }
  .blog-article-inner { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 15px; }
  .nav-cta { text-align: center; margin-left: 0 !important; margin-top: 8px; }

  .nav-toggle { display: flex; }

  .hero-actions { flex-direction: column; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .proof-item { padding: 0; flex-direction: row; align-items: center; gap: 12px; }
  .proof-divider { width: 100%; height: 1px; }

  .trust-bar .container { flex-direction: column; align-items: flex-start; }

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

  .steps {
    flex-direction: column;
    gap: 16px;
  }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; width: 100%; text-align: center; }

  .about-inner { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4/3; max-height: 224px; }
  .about-credentials { grid-template-columns: 1fr; }

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

  .case-studies { grid-template-columns: 1fr; }
  .case-study-results { grid-template-columns: repeat(3, 1fr); }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-brand { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .blog-listing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .result-stat { text-align: left; }
  .case-study-results { grid-template-columns: 1fr; gap: 12px; }
  .contact-form-wrap { padding: 28px 20px; }
}
