:root {
  --navy: #06162d;
  --navy-2: #0b2445;
  --blue: #123f73;
  --gold: #c99a2e;
  --gold-2: #f3cf78;
  --white: #ffffff;
  --soft: #f3f6fa;
  --soft-2: #eaf0f7;
  --gray: #667085;
  --ink: #172033;
  --line: #dce4ee;
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 60px rgba(6, 22, 45, 0.14);
  --shadow-soft: 0 14px 34px rgba(6, 22, 45, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(6, 22, 45, 0.68);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(6, 22, 45, 0.96);
  box-shadow: 0 10px 30px rgba(6, 22, 45, 0.28);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(243, 207, 120, 0.86);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(201, 154, 46, 0.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.16;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold-2); }

.nav-cta {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 24px rgba(201, 154, 46, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay,
.hero-grid-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/mark-trade-global-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 34%, rgba(243, 207, 120, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(6, 22, 45, 0.96), rgba(6, 22, 45, 0.76) 48%, rgba(6, 22, 45, 0.3));
}

.hero-grid-overlay {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: end;
  padding-top: 112px;
  padding-bottom: 58px;
}

.hero-content {
  max-width: 850px;
  padding-bottom: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 900;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 900;
}

h3 {
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.btn-outline {
  color: var(--blue);
  border-color: var(--gold);
  background: var(--white);
}

.hero-stat-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-stat-panel article {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-panel strong {
  display: block;
  color: var(--gold-2);
  font-size: 28px;
  line-height: 1;
}

.hero-stat-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.section { padding: 92px 0; }
.bg-soft { background: linear-gradient(180deg, var(--soft), #fff); }

.trust-strip {
  padding: 30px 0;
  background: var(--navy);
  color: var(--white);
}

.stats-grid,
.service-grid,
.testimonial-grid,
.blog-grid,
.process-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.stats-grid { grid-template-columns: repeat(4, 1fr); }

.stats-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 22px;
}

.stats-grid strong {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.stats-grid strong[data-counter]::after,
.metric-wall strong[data-counter]::after {
  content: "+";
}

.stats-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.reverse { grid-template-columns: 0.98fr 1.02fr; }

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(6, 22, 45, 0.72));
  pointer-events: none;
}

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

.image-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 22, 45, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.image-badge strong,
.image-badge span {
  display: block;
}

.image-badge span {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.light h2,
.section-heading.light p { color: var(--white); }
.section-heading p { color: var(--gray); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.icon,
.service-icon,
.industry-grid span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-weight: 900;
}

.icon {
  width: 38px;
  height: 38px;
}

.service-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card,
.testimonial-card,
.blog-card,
.process-step,
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 286px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 63, 115, 0.08), rgba(201, 154, 46, 0.12));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 154, 46, 0.56);
  box-shadow: var(--shadow);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 13px;
}

.service-card p,
.process-step p,
.testimonial-card small,
.blog-card p,
.site-footer p,
.contact-list,
.form-note {
  color: var(--gray);
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.why-section {
  background:
    linear-gradient(180deg, #fff, var(--soft));
}

.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.comparison-panel {
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.comparison-panel div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-panel div:last-child { border-bottom: 0; }

.comparison-head {
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.comparison-panel span { color: var(--gray); }
.comparison-head span { color: var(--white); }
.comparison-panel strong { color: var(--navy); }

.metric-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-wall article {
  padding: 26px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.metric-wall strong {
  display: block;
  color: var(--gold-2);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.metric-wall span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--white);
}

.industries {
  background:
    linear-gradient(rgba(6, 22, 45, 0.9), rgba(6, 22, 45, 0.88)),
    url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.industry-grid article {
  min-height: 142px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.industry-grid span {
  width: 44px;
  height: 44px;
  font-size: 12px;
}

.industry-grid strong {
  font-size: 15px;
  line-height: 1.25;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill-grid span {
  padding: 13px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(244, 214, 138, 0.28);
  font-weight: 800;
}

.process-section {
  position: relative;
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.process-step {
  position: relative;
  padding: 24px;
  z-index: 1;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 18px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.42s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 30px;
  align-items: start;
}

.testimonial-card img {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 19px;
  color: #344054;
  margin-bottom: 18px;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.stars {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}

.slider-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.blog-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.blog-card div { padding: 20px; }
.blog-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.center-action { text-align: center; margin-top: 34px; }

.cta-band {
  background:
    linear-gradient(100deg, rgba(6, 22, 45, 0.96), rgba(18, 63, 115, 0.9)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-grid h2 { color: var(--white); margin-bottom: 0; }

.contact-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(201, 154, 46, 0.12), transparent 28%),
    linear-gradient(180deg, #fff, var(--soft));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-list a:hover { color: var(--blue); }

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 260px;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 16px;
  border-color: rgba(201, 154, 46, 0.28);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.newsletter-form input:focus {
  outline: 3px solid rgba(201, 154, 46, 0.22);
  border-color: var(--gold);
}

.site-footer {
  background: #06172d;
  color: var(--white);
  padding-top: 62px;
}

.footer-grid {
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
}

.site-footer a:hover { color: var(--gold-2); }
.footer-brand { margin-bottom: 18px; }

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 18px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.newsletter-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-weight: 900;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-weight: 900;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 44px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.64);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #06172d;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.36);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 119;
  display: none;
  gap: 8px;
  transform: translateX(-50%);
  padding: 8px;
  border-radius: 8px;
  background: rgba(6, 22, 45, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.sticky-cta a {
  min-width: 150px;
  padding: 11px 14px;
  text-align: center;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
}

.sticky-cta a:last-child {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  padding: 150px 0 82px;
  background:
    linear-gradient(90deg, rgba(6, 22, 45, 0.95), rgba(6, 22, 45, 0.7)),
    var(--page-image, url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80")) center/cover;
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

@media (min-width: 861px) {
  .sticky-cta.is-visible { display: flex; }
}

@media (max-width: 1180px) {
  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(6, 22, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: block; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-stat-panel { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero { min-height: 900px; }
  .stats-grid,
  .split-grid,
  .reverse,
  .testimonial-grid,
  .cta-grid,
  .contact-grid,
  .footer-grid,
  .feature-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .image-panel img { height: 390px; }
  .cta-actions { justify-content: flex-start; }
  .testimonial-card { grid-template-columns: 1fr; }
  .footer-grid { gap: 34px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { padding-left: 14px; padding-right: 14px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 11px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero {
    min-height: 980px;
    align-items: start;
  }
  .hero-shell {
    padding-top: 116px;
    padding-bottom: 46px;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 22, 45, 0.95), rgba(6, 22, 45, 0.82));
  }
  .section { padding: 66px 0; }
  .process-grid,
  .service-grid,
  .blog-grid,
  .industry-grid,
  .hero-stat-panel,
  .metric-wall,
  .comparison-panel div {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: auto; }
  .btn { width: 100%; }
  .contact-actions .btn { width: auto; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form button { min-height: 46px; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
  .sticky-cta { display: none !important; }
}
