/* ═══════════════════════════════════════════════
   MAJESTIC MOTION — style.css
   ═══════════════════════════════════════════════ */

:root {
  --blue:    #2563c7;
  --navy:    #1a3a8f;
  --purple:  #7c3aed;
  --red:     #dc2626;
  --gold:    #d4a017;
  --green:   #059669;
  --darker:  #080a0f;
  --dark:    #0f1117;
  --surface: #141720;
  --surface2:#1c2030;
  --text:    #f0f2f8;
  --muted:   #8892a4;
  --border:  rgba(255,255,255,0.08);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--darker);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
.cursor {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue); position: fixed; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(37,99,199,0.6);
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: all 0.15s ease;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  padding: 0 60px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,10,15,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  position: relative; width: 46px; height: 62px;
  display: flex; justify-content: center;
}
.nav-logo-mark img { width: 46px; height: 86px; object-fit: contain; }
.nav-logo-mark .m-letter {
  position: absolute; font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 17px; color: #fff;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 19px; letter-spacing: 0.12em; color: var(--text);
}
.logo-sub {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: 0.4em; color: var(--blue);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); border-bottom-color: var(--blue);
}
.menu-toggle { display: none; font-size: 24px; color: #fff; cursor: pointer; z-index: 1000; }

/* ─── PAGE SYSTEM ─── */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero-section { position: relative; height: 100vh; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 3; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 40px;
}
.hero-logo-wrap {
  position: relative; width: 120px; height: 120px;
  margin-bottom: 30px; animation: floatLogo 4s ease-in-out infinite;
}
.hero-logo-wrap img { width: 100px; height: 170px; object-fit: contain; }
.hero-logo-wrap .m-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 34px; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7); line-height: 1;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(52px, 9vw, 120px); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 12px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title .word-majestic { color: var(--text); }
.hero-title .word-motion {
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--red), var(--gold), var(--green));
  background-size: 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: fadeUp 0.8s ease 0.4s both, gradShift 4s ease-in-out infinite;
}
@keyframes gradShift {
  0%,100% { background-position: 0%; }
  50%     { background-position: 100%; }
}
.hero-tagline {
  font-size: 15px; color: var(--muted); letter-spacing: 0.05em;
  max-width: 520px; animation: fadeUp 0.8s ease 0.6s both; margin-bottom: 44px;
}
.hero-cta { display: flex; gap: 18px; animation: fadeUp 0.8s ease 0.8s both; }
.color-bar {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--navy), var(--purple), var(--red), var(--gold), var(--green));
  background-size: 300%; animation: gradShift 4s ease-in-out infinite;
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-hint span {
  font-size: 9px; letter-spacing: 0.35em; color: var(--muted);
  text-transform: uppercase; font-family: 'Montserrat', sans-serif;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   HOME — SERVICES SECTION
   ═══════════════════════════════════════════════ */
.home-services {
  padding: 100px 60px 80px;
  background: var(--darker);
}
.hs-header { max-width: 640px; margin-bottom: 64px; }
.hs-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 56px); font-weight: 900;
  line-height: 1; letter-spacing: -0.02em; color: var(--text);
}
.hs-title span {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hs-sub { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 520px; }

.hs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.hs-card {
  background: var(--surface);
  padding: 48px 44px;
  border: 1px solid transparent;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.hs-card::before {
  content: '';
  position: absolute; left: 0; top: 0; width: 4px; height: 0;
  transition: height 0.5s ease;
}
.hs-card[data-color="blue"]::before   { background: var(--blue); }
.hs-card[data-color="purple"]::before { background: var(--purple); }
.hs-card[data-color="red"]::before    { background: var(--red); }
.hs-card[data-color="green"]::before  { background: var(--green); }
.hs-card:hover { transform: translateY(-5px); border-color: var(--border); }
.hs-card:hover::before { height: 100%; }

.hs-card-icon {
  width: 52px; height: 52px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.hs-card[data-color="blue"]   .hs-card-icon { color: var(--blue);   background: rgba(37,99,199,0.12); }
.hs-card[data-color="purple"] .hs-card-icon { color: var(--purple); background: rgba(124,58,237,0.12); }
.hs-card[data-color="red"]    .hs-card-icon { color: var(--red);    background: rgba(220,38,38,0.12); }
.hs-card[data-color="green"]  .hs-card-icon { color: var(--green);  background: rgba(5,150,105,0.12); }
.hs-card-icon svg { width: 28px; height: 28px; }

.hs-card-num {
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.35em; color: var(--muted);
  margin-bottom: 12px;
}
.hs-card-title {
  font-family: 'Montserrat', sans-serif; font-size: 22px;
  font-weight: 700; color: var(--text); margin-bottom: 14px;
}
.hs-card-desc { font-size: 13px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.hs-card-list {
  list-style: none; margin-bottom: 20px;
}
.hs-card-list li {
  font-size: 12px; color: var(--muted); padding: 5px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 14px; position: relative;
}
.hs-card-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--blue); font-size: 11px;
}
.hs-card[data-color="purple"] .hs-card-list li::before { color: var(--purple); }
.hs-card[data-color="red"]    .hs-card-list li::before { color: var(--red); }
.hs-card[data-color="green"]  .hs-card-list li::before { color: var(--green); }
.hs-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ═══════════════════════════════════════════════
   HOME — WHY US
   ═══════════════════════════════════════════════ */
.home-why {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
}
.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 0;
}
.why-title span {
  background: linear-gradient(90deg, var(--red), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.why-desc { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.why-points { display: flex; flex-direction: column; gap: 14px; }
.why-point {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--muted);
}
.wp-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.wp-dot.blue   { background: var(--blue); }
.wp-dot.purple { background: var(--purple); }
.wp-dot.red    { background: var(--red); }
.wp-dot.green  { background: var(--green); }

.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.ws-card {
  background: var(--darker);
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s;
}
.ws-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.ws-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px; font-weight: 900; line-height: 1;
}
.ws-num span { font-size: 28px; }
.ws-card[data-color="blue"]   .ws-num { color: var(--blue); }
.ws-card[data-color="purple"] .ws-num { color: var(--purple); }
.ws-card[data-color="red"]    .ws-num { color: var(--red); }
.ws-card[data-color="gold"]   .ws-num { color: var(--gold); }
.ws-label {
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   HOME — CTA BAND
   ═══════════════════════════════════════════════ */
.home-cta-band {
  padding: 80px 60px;
  background: linear-gradient(135deg, #06080f 0%, #0d1022 50%, #06080f 100%);
  position: relative; overflow: hidden; text-align: center;
}
.home-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--red), var(--gold), var(--green));
  opacity: 0.04;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  line-height: 1.1; margin-bottom: 18px;
}
.cta-band-title span {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-band-sub { font-size: 15px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   SHARED INNER PAGE STYLES
   ═══════════════════════════════════════════════ */
.inner-page { min-height: 100vh; padding: 120px 60px 80px; }
.page-header { margin-bottom: 64px; }
.page-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.page-tag::before { content: ''; width: 28px; height: 2px; background: var(--blue); }
.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 80px); font-weight: 900;
  line-height: 1; letter-spacing: -0.02em; color: var(--text);
}
.page-title span {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.rainbow-line {
  width: 80px; height: 4px; margin: 28px 0;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--red), var(--gold), var(--green));
  border-radius: 2px;
}

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.about-canvas-box {
  width: 100%; aspect-ratio: 1/1.1;
  background: var(--surface); border-radius: 4px;
  overflow: hidden; position: relative;
}
canvas#about-canvas { display: block; width: 100%; height: 100%; }
.about-badge {
  position: absolute; bottom: 20px; right: 20px;
  width: 94px; height: 94px; background: var(--darker);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about-badge-inner {
  position: relative; width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
}
.about-badge-inner img { width: 68px; height: 68px; object-fit: contain; }
.about-badge-inner .m-sm {
  position: absolute; font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 20px; color: #fff;
}
.about-text p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.about-text strong { color: var(--text); font-weight: 600; }
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 40px; border-top: 1px solid var(--border); padding-top: 36px;
}
.stat { text-align: center; }
.stat-n { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 900; line-height: 1; }
.stat-l {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; font-family: 'Montserrat', sans-serif;
}

/* SERVICES PAGE */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.svc {
  padding: 52px 44px; background: var(--surface);
  border: 1px solid transparent; border-radius: 2px;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.svc::after { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 0; transition: height 0.4s; }
.svc:nth-child(1)::after { background: var(--blue); }
.svc:nth-child(2)::after { background: var(--purple); }
.svc:nth-child(3)::after { background: var(--red); }
.svc:nth-child(4)::after { background: var(--green); }
.svc:nth-child(5)::after { background: var(--gold); }
.svc:nth-child(6)::after { background: var(--navy); }
.svc:hover { border-color: var(--border); transform: translateY(-4px); }
.svc:hover::after { height: 100%; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
}
.svc:nth-child(1) .svc-icon { background: rgba(37,99,199,0.12); }
.svc:nth-child(2) .svc-icon { background: rgba(124,58,237,0.12); }
.svc:nth-child(3) .svc-icon { background: rgba(220,38,38,0.12); }
.svc:nth-child(4) .svc-icon { background: rgba(5,150,105,0.12); }
.svc:nth-child(5) .svc-icon { background: rgba(212,160,23,0.12); }
.svc:nth-child(6) .svc-icon { background: rgba(26,58,143,0.12); }
.svc-num { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.3em; color: var(--muted); margin-bottom: 14px; }
.svc-title { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* SHARED TAG */
.tag {
  padding: 5px 13px; font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif;
  border: 1px solid var(--border); color: var(--muted); border-radius: 2px;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; }
.contact-info p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 36px; }
.cinfo-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.cinfo-label {
  font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px; font-weight: 700;
}
.cinfo-value { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 600; color: var(--text); }
.cinfo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fl {
  font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted);
}
.fi, .fta, select.fi {
  background: var(--surface); border: 1px solid var(--border);
  padding: 14px 18px; color: var(--text);
  font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.3s; border-radius: 2px;
  -webkit-appearance: none; appearance: none;
}
.fi:focus, .fta:focus, select.fi:focus { border-color: var(--blue); }
.fi::placeholder, .fta::placeholder { color: var(--muted); }
option { background: var(--surface); color: var(--text); }
.fta { height: 130px; resize: none; }
.fsub {
  padding: 16px 44px; background: var(--blue); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: none; border-radius: 2px;
  transition: all 0.3s; align-self: flex-start;
  box-shadow: 0 0 24px rgba(37,99,199,0.3);
}
.fsub:hover { background: #1d52b0; transform: translateY(-2px); }

/* SHARED BUTTONS */
.btn-primary {
  padding: 15px 40px; background: var(--blue); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: none; border-radius: 2px;
  transition: all 0.3s; box-shadow: 0 0 30px rgba(37,99,199,0.4);
}
.btn-primary:hover { background: #1d52b0; transform: translateY(-3px); }
.btn-ghost {
  padding: 15px 40px; background: transparent; color: var(--text);
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1.5px solid var(--border); cursor: none; border-radius: 2px; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* FOOTER */
footer, .home-footer {
  border-top: 1px solid var(--border);
  padding: 32px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--darker);
}
footer p, .home-footer p { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark {
  position: relative; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark img { width: 36px; height: 66px; object-fit: contain; }
.footer-logo-mark .m-ft {
  position: absolute; font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 13px; color: #fff; top: 1px;
}

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%     { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { cursor: default; }
  .cursor, .cursor-ring { display: none; }
  nav { padding: 0 20px; }
  .menu-toggle { display: block; }

  .nav-links {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(8,10,15,0.98); backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 40px;
    transform: translateY(-100%); opacity: 0;
    transition: all 0.5s ease; z-index: 999;
    display: flex;
  }
  .nav-links.active { transform: translateY(0); opacity: 1; }
  .nav-links a { font-size: 16px; }

  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .hero-tagline { font-size: 13px; }
  .hero-cta { flex-direction: column; gap: 12px; }

  .home-services { padding: 60px 20px; }
  .hs-grid { grid-template-columns: 1fr; }
  .hs-card { padding: 32px 24px; }

  .home-why { padding: 60px 20px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-stats { grid-template-columns: 1fr 1fr; }

  .home-cta-band { padding: 60px 20px; }

  .inner-page { padding: 100px 20px 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { padding: 30px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  footer, .home-footer {
    flex-direction: column; gap: 15px;
    text-align: center; padding: 24px 20px;
  }
}
span.m-sm {
    top: 13px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}