/* ============================================
   INTELLISTORE — style.css
   Shared stylesheet imported by all pages
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

/* --- Brand Tokens --- */
:root {
  --navy:         #1B3A52;
  --red:          #CC2222;
  --white:        #FFFFFF;
  --surface:      #F4F7FA;
  --border:       #E5E9ED;
  --text-primary: #0D1F2D;
  --text-muted:   #5A7080;
  --text-hint:    #9AAAB8;
  --dark-strip:   #0D1F2D;
  --font:         'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

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

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.125rem; }

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Eyebrow --- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-rule {
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* --- Red / Navy links --- */
.link-red {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s;
}
.link-red:hover { color: #A81C1C; }

/* --- Buttons --- */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-red:hover { background: #A81C1C; }

.btn-navy-outline {
  display: inline-block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  transition: background 0.2s, color 0.2s;
}
.btn-navy-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Fade-up animation --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-wordmark {
  font-size: 22px;
  line-height: 1;
}
.logo-wordmark sup {
  font-size: 10px;
  color: var(--navy);
  font-weight: 600;
  font-style: normal;
  vertical-align: super;
}
.nav-tagline {
  font-size: 11px;
  color: var(--text-hint);
  margin-top: 3px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  color: #4B5E6D;
  font-weight: 600;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active {
  color: var(--navy);
  border-bottom: 2px solid var(--red);
}
.nav-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-cta:hover { background: #A81C1C; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--red); }
.nav-overlay a.active { color: var(--red); }
.nav-overlay .nav-cta {
  font-size: 16px;
  margin-top: 8px;
}
.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0D1F2D;
  padding: 0;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 56px 64px 48px;
}

/* Brand column */
.footer-logo {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}
.footer-logo-intelli {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
}
.footer-logo-store {
  color: #CC4444;
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
}
.footer-logo-tm {
  color: #3A5A72;
  font-size: 10px;
  margin-left: 2px;
  vertical-align: super;
}
.footer-tagline {
  font-size: 11px;
  color: #5A8099;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-description {
  font-size: 12px;
  color: #3A5A72;
  line-height: 1.7;
  max-width: 280px;
}

/* Nav columns */
.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list li a {
  font-size: 13px;
  color: #4A6E84;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}
.footer-nav-list li a:hover {
  color: #CC4444;
}

/* Contact column */
.footer-contact-col { }
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-icon {
  color: #CC4444;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list li div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-list li span,
.footer-contact-list li a {
  font-size: 13px;
  color: #4A6E84;
  text-decoration: none;
  line-height: 1.5;
  display: block;
}
.footer-contact-list li a:hover {
  color: #CC4444;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 64px;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 64px;
}
.footer-copy {
  font-size: 12px;
  color: #2A4A5E;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 12px;
  color: #2A4A5E;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover {
  color: #CC4444;
}

/* ============================================
   HOME — HERO
   ============================================ */
.hero-wrap {
  background: var(--white);
}
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  gap: 48px;
}
.hero-left .eyebrow { margin-bottom: 20px; }
.hero-left h1       { margin-bottom: 20px; }
.hero-sub {
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Metrics strip */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--white);
}
.metric-card {
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.metric-card:last-child { border-right: none; }
.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-number .accent { color: var(--red); }
.metric-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Core capabilities panel */
.hero-capabilities {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}
.capabilities-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-hint);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.capability-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.capability-row:last-child { border-bottom: none; }
.cap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.cap-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.cap-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
  text-align: right;
}

/* ============================================
   TRUST BAND
   ============================================ */
.trust-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ============================================
   HOME — SOLUTIONS PREVIEW
   ============================================ */
.solutions-preview {
  padding: 88px 24px;
  background: var(--white);
}
.solutions-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header h2 { margin-top: 8px; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.solution-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.solution-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.solution-icon-box {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-num {
  font-size: 14px;
  font-weight: 800;
  color: #D0D7DE;
}
.solution-card h3 {
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 8px;
}
.solution-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ============================================
   HOME — GALLERY STRIP
   ============================================ */
.gallery-strip {
  background: var(--dark-strip);
  padding: 64px 24px;
}
.gallery-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-strip .eyebrow       { color: #CC6666; }
.gallery-strip .eyebrow-rule  { background: #CC6666; }
.gallery-strip h2 {
  color: var(--white);
  margin-bottom: 32px;
}
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.gallery-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1B3A52;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-card:hover { opacity: 0.85; }
.gallery-card video,
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-play-btn {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
}
.gallery-strip-link {
  display: block;
  text-align: right;
  color: #CC6666;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s;
}
.gallery-strip-link:hover { color: var(--red); }

/* ============================================
   HOME — CONTACT TEASER
   ============================================ */
.contact-teaser {
  padding: 88px 24px;
  background: var(--white);
}
.contact-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 64px;
  align-items: start;
}
.contact-teaser-left h2 { margin-bottom: 16px; }
.contact-teaser-left > p { margin-bottom: 28px; }
.contact-detail-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-hint);
  text-transform: uppercase;
}
.contact-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   CONTACT FORM (shared home + contact page)
   ============================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: #A81C1C; }

#form-success {
  display: none;
  border-left: 3px solid var(--navy);
  background: var(--surface);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: 80px 24px 64px;
  background: var(--white);
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero h1  { margin-bottom: 16px; }
.page-hero > p { font-size: 1.125rem; max-width: 640px; }

.pull-quote-section {
  background: var(--surface);
  padding: 72px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pull-quote {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}

.story-section {
  padding: 88px 24px;
  background: var(--white);
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 64px;
  align-items: start;
}
.story-left p + p { margin-top: 20px; }

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num .accent { color: var(--red); }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.why-section {
  padding: 88px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-inner .eyebrow { margin-bottom: 8px; }
.why-inner h2       { margin-bottom: 40px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  padding: 28px;
}
.why-card h3 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 12px;
}
.why-card p { font-size: 14px; }

/* ============================================
   SOLUTIONS PAGE
   ============================================ */
.solution-section {
  border-bottom: 1px solid var(--border);
  padding: 88px 24px;
}
.solution-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-text { position: relative; padding-top: 40px; }
.solution-ghost-num {
  position: absolute;
  top: -20px;
  left: -12px;
  font-size: 120px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}
.solution-text h2  { position: relative; z-index: 1; margin-bottom: 16px; }
.solution-text p   { position: relative; z-index: 1; margin-bottom: 16px; }
.solution-specs {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 20px 0 28px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solution-specs li {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.solution-cta { position: relative; z-index: 1; }

.solution-media {
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
  gap: 10px;
}
.solution-media svg { opacity: 0.35; }
.solution-media-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-hint);
  letter-spacing: 0.5px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-main {
  padding: 0 24px 88px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-masonry {
  columns: 3;
  column-gap: 12px;
}
.gallery-masonry-card {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
  display: block;
}
.gallery-masonry-card:hover { transform: scale(1.02); }
.gallery-masonry-card.ratio-169 { aspect-ratio: 16 / 9; }
.gallery-masonry-card.ratio-43  { aspect-ratio: 4 / 3; }
.gallery-masonry-card video,
.gallery-masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent rgba(255,255,255,0.3);
}
.gallery-caption-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  padding: 8px 12px;
  font-size: 11px;
  color: var(--white);
  font-weight: 600;
}
.gallery-note {
  margin-top: 48px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-wrap {
  padding: 80px 24px 88px;
}
.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 64px;
  align-items: start;
}
.contact-left h1 { margin-bottom: 16px; }
.contact-left > p {
  margin-bottom: 32px;
  font-size: 1rem;
}
.contact-note {
  background: var(--surface);
  border-left: 3px solid var(--navy);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-section-inner { gap: 40px; }
  .hero { gap: 36px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 32px 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-divider { margin: 0 32px; }
  .footer-bottom { padding: 16px 32px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 24px 56px;
    gap: 40px;
  }
  .cap-desc { display: none; }

  .trust-band-inner {
    gap: 20px;
    justify-content: flex-start;
  }

  .solutions-grid { grid-template-columns: 1fr; }
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }

  .contact-teaser-inner { grid-template-columns: 1fr; gap: 40px; }

  .story-inner        { grid-template-columns: 1fr; gap: 40px; }
  .why-grid           { grid-template-columns: 1fr; }

  .solution-section-inner { grid-template-columns: 1fr; gap: 32px; }
  .solution-ghost-num { font-size: 80px; }

  .gallery-masonry { columns: 2; }

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

  .footer-top {
    grid-template-columns: 1fr;
    padding: 32px 20px 24px;
    gap: 28px;
  }
  .footer-brand { grid-column: auto; }
  .footer-divider { margin: 0 20px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 20px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .gallery-masonry        { columns: 1; }
  .gallery-grid-preview   { grid-template-columns: 1fr; }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .metric-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .metric-card:last-child { border-bottom: none; }
}
