:root {
  --black:   #050505;
  --deep:    #0f0f11;
  --surface: #17181a;
  --lift:    #1d1e20;
  --border:  #2b2b2e;
  --border2: #35363a;
  --mid:     #e30613;
  --muted:   #c4c4c4;
  --light:   #f4f4f4;
  --pure:    #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }

body {
  background: var(--black);
  color: var(--light);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; mix-blend-mode: overlay;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(8,9,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.nav-logo img,
.foot-logo img,
.hero-brand-mark {
  display: block;
  filter: brightness(0) invert(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--pure);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pure);
  border-radius: 999px;
  position: relative;
  transition: transform .3s ease, background .3s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--pure);
  border-radius: 999px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

body.nav-open .nav-toggle span { transform: rotate(45deg); background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(90deg); }
body.nav-open .nav-toggle span::after { opacity: 0; }

.nav-mark { width: 120px; height: auto; flex-shrink: 0; }

.foot-logo-img { width: 40px; height: auto; }

.nav-kksp {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px; letter-spacing: 4px;
  color: var(--pure); line-height: 1;
}

.nav-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400; font-size: 10px; letter-spacing: 6px;
  color: var(--muted); text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--pure); }

.nav-cta {
  background: var(--mid) !important; color: var(--pure) !important;
  padding: 9px 20px; font-weight: 700 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: #ff1f2b !important; transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden; padding-top: 68px;
}

.hero-bg {
  position: absolute; inset: 0; background: var(--black);
}

/* angled right panel */
.hero-panel {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: var(--deep);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -14deg, transparent, transparent 52px,
    rgba(255,255,255,0.012) 52px, rgba(255,255,255,0.012) 53px
  );
}

/* diagonal accent lines */
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute; top: -30%; left: 44%;
  width: 1px; height: 160%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 70%, transparent);
  transform: rotate(-12deg); transform-origin: center;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 80px 100px;
  animation: fadeUp .9s ease-out forwards;
  opacity: 0; transform: translateY(28px);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 28px;
}

.tag-diamond {
  width: 7px; height: 7px; background: var(--mid);
  transform: rotate(45deg);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(62px, 8vw, 112px); line-height: .92;
  color: var(--pure); letter-spacing: -1px; margin-bottom: 32px;
}

.hero-h1 .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
}

.hero-body {
  font-size: 17px; line-height: 1.7; color: var(--light);
  max-width: 400px; margin-bottom: 48px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  padding: 15px 32px; transition: all .2s;
}

.btn-white { background: var(--mid); color: var(--pure); }
.btn-white:hover { background: #ff1f2b; transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--pure);
  border: 1px solid var(--mid);
}
.btn-ghost:hover { border-color: #ff1f2b; color: var(--pure); }

/* Hero right - large mark */
.hero-mark-side {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fadeUp 1.1s ease-out .25s forwards;
  opacity: 0; transform: translateY(28px);
}

.hero-mark-frame {
  position: relative; width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at top left, rgba(227,6,19,.18), transparent 42%),
              linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.hero-mark-frame::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(45deg);
}
.hero-mark-frame::after {
  content: '';
  position: absolute; inset: 36px;
  border: 1px solid rgba(255,255,255,.03);
  transform: rotate(45deg);
}

.hero-mark-frame img {
  width: auto; height: 80%;
  object-fit: contain;
  border-radius: 18px;
  z-index: 1;
}

/* Stats strip */
.stats-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; border-top: 1px solid var(--border);
}

.stat-cell {
  flex: 1; padding: 22px 28px;
  background: rgba(8,9,10,.85);
  backdrop-filter: blur(8px);
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }

.stat-n {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 36px; color: var(--pure); line-height: 1; letter-spacing: -1px;
}

.stat-l {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid); margin-top: 3px;
}

/* TICKER */
.ticker {
  background: var(--pure); height: 44px;
  display: flex; align-items: center; overflow: hidden;
  position: relative; z-index: 10;
}

.ticker-inner {
  display: flex; animation: tick 22s linear infinite; white-space: nowrap;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.t-item {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 28px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--black);
}

.t-sep { color: rgba(0,0,0,.2); font-size: 8px; }

/* SECTION */
.s { padding: 100px 80px; }

.s-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--mid); display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.s-tag::before { content: ''; display: block; width: 18px; height: 2px; background: var(--mid); }

.s-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(36px, 4.5vw, 58px); letter-spacing: -.5px;
  color: var(--pure); line-height: 1; margin-bottom: 14px;
}

.s-lead { font-size: 16px; line-height: 1.65; color: var(--light); max-width: 480px; }

/* SERVICES */
#services {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.svc-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 24px; }

.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
}

.svc-card {
  background: var(--surface); padding: 44px 32px;
  position: relative; overflow: hidden; transition: background .25s;
}

.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--pure);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--lift); }

.svc-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 66px;
  font-weight: 900; color: rgba(255,255,255,.18);
  position: absolute; top: 16px; right: 20px; line-height: 1;
  pointer-events: none; transition: color .3s;
}
.svc-card:hover .svc-num { color: rgba(255,255,255,.32); }

.svc-ico { width: 44px; height: 44px; margin-bottom: 26px; color: var(--pure); }

.svc-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 23px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--pure); margin-bottom: 12px;
}

.svc-desc { font-size: 14px; line-height: 1.7; color: var(--light); }

/* ABOUT */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 120px 80px;
  background: var(--black);
}

.ab-visual { position: relative; }

.ab-box {
  background: var(--surface); border: 1px solid var(--border2);
  padding: 60px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}

.ab-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 56px; height: 56px;
  border-top: 2px solid var(--pure); border-left: 2px solid var(--pure);
}
.ab-box::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 56px; height: 56px;
  border-bottom: 2px solid rgba(255,255,255,.15); border-right: 2px solid rgba(255,255,255,.15);
}

.ab-svg { width: 240px; height: 240px; filter: drop-shadow(0 0 50px rgba(255,255,255,.06)); }

.ab-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--pure); color: var(--black);
  padding: 16px 22px; line-height: 1.2;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
}
.ab-badge small {
  display: block; font-weight: 400; font-size: 10px;
  letter-spacing: 3px; color: rgba(0,0,0,.45); margin-top: 3px;
}

.pillars { margin-top: 44px; display: flex; flex-direction: column; gap: 1px; background: var(--border); }

.pillar {
  background: var(--surface); display: flex;
  gap: 18px; align-items: flex-start; padding: 22px 26px;
  transition: background .2s;
}
.pillar:hover { background: var(--lift); }

.pill-arrow {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--pure);
  clip-path: polygon(0 0, 65% 0, 100% 50%, 65% 100%, 0 100%, 35% 50%);
  position: relative;
}

.pill-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 17px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--pure); margin-bottom: 5px;
}
.pill-text { font-size: 13px; line-height: 1.6; color: var(--light); }

/* SECTORS */
#sectors {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 80px;
}

.sec-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--border); margin-top: 52px;
}

.sec-cell {
  background: var(--surface); padding: 30px 18px;
  text-align: center; cursor: default;
  position: relative; overflow: hidden; transition: background .2s;
}
.sec-cell::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--pure);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.sec-cell:hover::before { transform: scaleX(1); }
.sec-cell:hover { background: var(--lift); }

.sec-ico { width: 44px; height: 44px; margin: 0 auto 14px; display: block; color: var(--light); }

.sec-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light); transition: color .2s;
}
.sec-cell:hover .sec-name { color: var(--pure); }

/* PROCESS */
#process { padding: 100px 80px; background: var(--black); }

.proc-head { text-align: center; margin-bottom: 68px; }
.proc-head .s-tag { justify-content: center; }
.proc-head .s-tag::before { display: none; }

.proc-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
}

.proc-step {
  background: var(--surface); padding: 44px 30px; position: relative; overflow: hidden;
}

.proc-n {
  font-family: 'Barlow Condensed', sans-serif; font-size: 82px;
  font-weight: 900; color: rgba(255,255,255,.18);
  position: absolute; top: 8px; right: 14px; line-height: 1;
  pointer-events: none; letter-spacing: -3px;
}

.proc-arrow {
  width: 46px; height: 46px; background: var(--mid);
  clip-path: polygon(0 0, 65% 0, 100% 50%, 65% 100%, 0 100%, 35% 50%);
  margin-bottom: 26px;
}

.proc-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--pure); margin-bottom: 12px;
}

.proc-desc { font-size: 14px; line-height: 1.65; color: var(--light); }

/* TESTIMONIALS */
#testimonials {
  background: var(--deep);
  border-top: 1px solid var(--border); padding: 100px 80px;
}

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); margin-top: 52px;
}

.testi-card {
  background: var(--surface); padding: 44px 34px;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"'; position: absolute; top: -20px; left: 18px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 150px;
  font-weight: 900; color: rgba(255,255,255,.1); line-height: 1;
  pointer-events: none;
}

.t-stars { font-size: 11px; letter-spacing: 3px; color: var(--pure); margin-bottom: 18px; position: relative; z-index: 1; }
.t-text { font-size: 15px; line-height: 1.75; color: var(--light); font-style: italic; margin-bottom: 28px; position: relative; z-index: 1; }
.t-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: var(--pure); }
.t-role { font-size: 12px; color: var(--muted); letter-spacing: 1px; margin-top: 3px; }

/* CONTACT */
#contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }

.contact-l {
  background: var(--pure); color: var(--black);
  padding: 100px 68px; position: relative; overflow: hidden;
}
.contact-l::before {
  content: ''; position: absolute; bottom: -70px; right: -70px;
  width: 300px; height: 300px;
  border: 1px solid rgba(0,0,0,.05); transform: rotate(45deg);
}

.contact-l .s-tag { color: rgba(0,0,0,.6); }
.contact-l .s-tag::before { background: var(--black); }
.contact-l .s-title { color: var(--black); }
.contact-l .s-lead { color: rgba(0,0,0,.7); }

.c-details { margin-top: 42px; display: flex; flex-direction: column; gap: 18px; }

.c-row { display: flex; gap: 14px; align-items: center; }

.c-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--black); color: var(--pure);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 65% 0, 100% 50%, 65% 100%, 0 100%, 35% 50%);
}

.c-lbl {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,.55); display: block; margin-bottom: 2px;
}

.c-val { font-size: 16px; font-weight: 600; color: var(--mid); }
.c-val a { color: var(--mid); text-decoration: none; }
.c-val a:hover { text-decoration: underline; }

.contact-r {
  background: var(--surface); padding: 80px 68px;
  border-left: 1px solid var(--border);
}

.form { display: flex; flex-direction: column; gap: 14px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.f-field { display: flex; flex-direction: column; gap: 5px; }

.f-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
}

.f-input, .f-select, .f-area {
  background: var(--lift); border: 1px solid var(--border2);
  color: var(--light); padding: 12px 14px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  outline: none; transition: border-color .2s; width: 100%;
  -webkit-appearance: none;
}
.f-input:focus, .f-select:focus, .f-area:focus {
  border-color: rgba(255,255,255,.3);
}
.f-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.f-select option { background: #1a1b1e; }
.f-area { min-height: 108px; resize: vertical; }

.f-submit { width: 100%; margin-top: 6px; cursor: pointer; }

.social-feed {
  background: var(--surface); border: 1px solid var(--border2);
  padding: 60px 40px; margin-top: 40px;
}
.social-feed .s-lead { max-width: 620px; margin-bottom: 28px; }
.social-feed .fb-page {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 700px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 38px 80px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
}

.foot-logo { display: flex; align-items: center; gap: 12px; }
.foot-logo img { width: 40px; height: auto; display: block; }
.foot-mark { display: none; }
.foot-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 18px; letter-spacing: 3px; color: var(--pure);
}

.foot-copy {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 2px; color: var(--light); text-align: center;
}

.foot-links { display: flex; gap: 26px; }
.foot-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .2s;
}
.foot-links a:hover { color: var(--pure); }

/* SCROLL ANIM */
.fu { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 10px 20px; min-height: 68px; }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(0,0,0,0.99); backdrop-filter: blur(18px); padding: 90px 20px 30px; gap: 16px; opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none; transition: opacity .25s ease, transform .25s ease, visibility .25s; z-index: 190; }
  .nav-links::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.85); pointer-events: none; }
  .nav-links li { width: 100%; position: relative; z-index: 1; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a { padding: 18px 20px; border-radius: 14px; display: inline-flex; width: 100%; justify-content: center; background: rgba(255,255,255,0.08); color: var(--pure); position: relative; z-index: 1; }
  .nav-links a:hover { background: rgba(255,255,255,0.16); }
  .nav-links a.nav-cta { width: auto; background: var(--mid); color: var(--pure); }
  body.nav-open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero-content { padding: 60px 24px 100px; }
  .hero-mark-side { display: none; }
  .stats-strip { position: relative; flex-wrap: wrap; }
  .stat-cell { flex: 1 1 50%; }
  .s { padding: 64px 24px; }
  #services { padding: 64px 24px; }
  .svc-head { flex-direction: column; align-items: flex-start; }
  .svc-grid { grid-template-columns: 1fr; }
  #about { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }
  .ab-badge { position: static; margin-top: 14px; display: inline-block; }
  #sectors { padding: 64px 24px; }
  .sec-grid { grid-template-columns: repeat(2,1fr); }
  #process { padding: 64px 24px; }
  .proc-row { grid-template-columns: 1fr 1fr; }
  #testimonials { padding: 64px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; }
  .contact-l { padding: 64px 24px; }
  .contact-r { padding: 64px 24px; border-left: none; border-top: 1px solid var(--border); }
  .f-row { grid-template-columns: 1fr; }
  .hero-body { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas .btn { padding: 14px 20px; }
  .social-feed { padding: 40px 20px; }
  .social-feed .fb-page { min-height: 520px; }
  footer { padding: 30px 24px; flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
}
