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

:root {
  --navy:    #0e1b2e;
  --navy2:   #162338;
  --navy3:   #1d2e47;
  --orange:  #f5821f;
  --orange2: #e06e0a;
  --white:   #ffffff;
  --light:   #f4f6f9;
  --border:  #e2e8f0;
  --text:    #374151;
  --muted:   #6b7280;
  --f-head:  'Crimson Text', Georgia, serif;
  --f-body:  'Work Sans', sans-serif;
  --r:       6px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--f-body); background: #fff; color: var(--text); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--navy); padding: 0 5%; height: 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-left { display: flex; align-items: center; gap: 28px; }
.topbar-item { font-size: 12.5px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 7px; font-family: var(--f-body); font-weight: 400; }
.topbar-item svg { opacity: 0.6; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-link { font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.topbar-link:hover { color: var(--orange); }

/* ─── NAV ─── */
nav { position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.08); padding: 0 5%; }
.nav-inner { max-width: 1200px; margin: 0 auto; height: 76px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark { width: 46px; height: 46px; border-radius: var(--r); background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 800; font-size: 16px; color: var(--orange); letter-spacing: -.5px; flex-shrink: 0; }
.nav-logo-name { font-family: var(--f-head); font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: .5px; line-height: 1; }
.nav-logo-sub { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-links a { font-family: var(--f-body); font-size: 14.5px; font-weight: 600; color: var(--navy); text-decoration: none; padding: 8px 14px; border-radius: var(--r); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); background: rgba(245,130,31,0.07); }
.nav-cta-btn { background: var(--orange) !important; color: #fff !important; padding: 10px 22px !important; border-radius: var(--r) !important; transition: background .2s !important; }
.nav-cta-btn:hover { background: var(--orange2) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(14,27,46,0.97); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--f-head); font-size: 28px; font-weight: 700; color: rgba(255,255,255,0.8); text-decoration: none; padding: 12px 48px; border-radius: var(--r); transition: color .2s; }
.mobile-menu a:hover { color: var(--orange); }
.mob-close { position: absolute; top: 24px; right: 5%; background: none; border: none; cursor: pointer; font-size: 28px; color: rgba(255,255,255,0.5); line-height: 1; }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  background-image: linear-gradient(135deg, rgba(10,20,40,0.92) 0%, rgba(14,27,46,0.82) 55%, rgba(10,20,40,0.75) 100%), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center right;
  padding: 80px 5% 0; overflow: hidden; position: relative; min-height: 580px; display: flex; align-items: flex-end;
}
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(245,130,31,0.08) 1.5px, transparent 1.5px); background-size: 32px 32px; }
.hero-accent { position: absolute; top: -120px; right: -80px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(245,130,31,0.12) 0%, transparent 70%); }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-end; position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: rgba(245,130,31,0.15); border: 1px solid rgba(245,130,31,0.3); border-radius: 4px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); padding: 5px 14px; margin-bottom: 24px; }
.hero-title { font-family: var(--f-head); font-weight: 700; font-size: clamp(44px, 5.5vw, 74px); color: #fff; line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 20px; }
.hero-title span { color: var(--orange); }
.hero-desc { font-size: 16.5px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 440px; margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-visual { position: relative; align-self: flex-end; display: flex; justify-content: center; }
.hero-img-wrap { width: 100%; max-width: 480px; background: var(--navy3); border-radius: 12px 12px 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); border-bottom: none; }
.hero-mockup { padding: 28px 28px 0; background: linear-gradient(180deg, var(--navy3) 0%, var(--navy2) 100%); }
.mockup-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.mockup-screen { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px 8px 0 0; padding: 20px; }
.mockup-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mockup-row:last-child { border-bottom: none; }
.mockup-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.mockup-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.badge-green { background: rgba(16,185,129,0.15); color: #34d399; }
.badge-orange { background: rgba(245,130,31,0.15); color: var(--orange); }
.badge-blue { background: rgba(59,130,246,0.15); color: #60a5fa; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background-size: cover; background-position: center;
  padding: 80px 5%; position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--f-head); font-weight: 700; font-size: clamp(42px,6vw,76px); color: #fff; line-height: 1.05; letter-spacing: -.5px; margin-bottom: 16px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.7; font-weight: 300; }

/* ─── LOGO STRIP ─── */
.logo-strip { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; overflow: hidden; position: relative; }
.logo-strip::before, .logo-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.logo-strip::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.logo-strip::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }
.logo-track { display: flex; gap: 16px; align-items: center; animation: scroll-logos 32s linear infinite; width: max-content; }
.logo-track:hover { animation-play-state: paused; }
.logo-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; width: 130px; height: 84px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; flex-shrink: 0; opacity: 0.7; transition: opacity .25s, border-color .25s, box-shadow .25s; cursor: default; }
.logo-item:hover { opacity: 1; border-color: #c8d4e8; box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.logo-item svg { display: block; width: auto; height: 32px; max-width: 80px; flex-shrink: 0; }
.logo-item-name { font-family: var(--f-body); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section-eyebrow::before { content: ''; width: 28px; height: 3px; border-radius: 2px; background: var(--orange); }
.section-title { font-family: var(--f-head); font-weight: 700; font-size: clamp(32px, 4vw, 52px); color: var(--navy); line-height: 1.1; letter-spacing: -0.3px; }
.section-title span { color: var(--orange); }
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 540px; margin-top: 14px; }

/* ─── BUTTONS ─── */
.btn-orange { background: var(--orange); color: #fff; font-family: var(--f-body); font-size: 14.5px; font-weight: 600; padding: 13px 30px; border-radius: var(--r); border: 2px solid var(--orange); cursor: pointer; text-decoration: none; display: inline-block; transition: .25s; }
.btn-orange:hover { background: var(--orange2); border-color: var(--orange2); }
.btn-outline-white { background: transparent; color: #fff; font-family: var(--f-body); font-size: 14.5px; font-weight: 600; padding: 13px 30px; border-radius: var(--r); border: 2px solid rgba(255,255,255,0.3); cursor: pointer; text-decoration: none; display: inline-block; transition: .25s; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); }
.btn-navy { background: var(--navy); color: #fff; font-family: var(--f-body); font-size: 14.5px; font-weight: 600; padding: 13px 30px; border-radius: var(--r); border: 2px solid var(--navy); cursor: pointer; text-decoration: none; display: inline-block; transition: .25s; }
.btn-navy:hover { background: var(--navy2); }
.btn-outline-navy { background: transparent; color: var(--navy); font-family: var(--f-body); font-size: 14.5px; font-weight: 600; padding: 13px 30px; border-radius: var(--r); border: 2px solid var(--navy); cursor: pointer; text-decoration: none; display: inline-block; transition: .25s; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ─── SERVICES TABS ─── */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-top: 56px; }
.svc-tabs { display: flex; flex-direction: column; gap: 8px; }
.svc-tab { display: flex; align-items: flex-start; gap: 18px; padding: 22px 24px; border-radius: var(--r); border: 1px solid transparent; cursor: pointer; transition: .25s; text-decoration: none; }
.svc-tab:hover, .svc-tab.active { background: var(--light); border-color: var(--border); }
.svc-tab.active { border-left: 3px solid var(--orange); padding-left: 21px; }
.svc-num { font-family: var(--f-head); font-weight: 800; font-size: 28px; color: var(--border); line-height: 1; flex-shrink: 0; min-width: 34px; transition: color .25s; }
.svc-tab.active .svc-num { color: var(--orange); }
.svc-tab-name { font-family: var(--f-body); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.svc-tab-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.svc-visual { background: var(--navy); border-radius: 12px; padding: 40px; color: #fff; position: relative; overflow: hidden; min-height: 460px; display: flex; flex-direction: column; }
.svc-visual-pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 24px 24px; }
.svc-visual-icon { font-size: 52px; margin-bottom: 24px; position: relative; z-index: 1; }
.svc-visual-title { font-family: var(--f-head); font-weight: 800; font-size: 28px; margin-bottom: 16px; line-height: 1.1; position: relative; z-index: 1; }
.svc-visual-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 340px; position: relative; z-index: 1; flex: 1; }
.svc-visual-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; position: relative; z-index: 1; }
.svc-vtag { font-size: 12px; padding: 5px 14px; border-radius: 20px; background: rgba(245,130,31,0.15); border: 1px solid rgba(245,130,31,0.25); color: var(--orange); font-weight: 500; }
.svc-visual-glow { position: absolute; bottom: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,130,31,0.15) 0%, transparent 70%); }

/* ─── ABOUT LAYOUT ─── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; border-radius: 12px; overflow: hidden; background: var(--navy2); min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; }
.about-img-inner { padding: 36px; background: linear-gradient(0deg, var(--navy) 0%, transparent 100%); }
.about-stat-row { display: flex; gap: 32px; }
.about-stat-num { font-family: var(--f-head); font-size: 44px; font-weight: 800; color: #fff; line-height: 1; }
.about-stat-num span { color: var(--orange); }
.about-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.about-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%); display: flex; align-items: center; justify-content: center; font-size: 100px; opacity: 0.12; }
.about-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.about-list li::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; border-radius: 50%; background: var(--orange); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; }
.about-btns { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── WHY CHOOSE ─── */
.why-section { background: var(--light); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 56px; }
.why-card { background: #fff; border-radius: 10px; padding: 32px 28px; border: 1px solid var(--border); transition: .25s; position: relative; }
.why-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.09); transform: translateY(-3px); }
.why-card-num { font-family: var(--f-head); font-size: 56px; font-weight: 800; color: rgba(14,27,46,0.06); line-height: 1; margin-bottom: -8px; }
.why-icon { font-size: 34px; margin-bottom: 16px; }
.why-title { font-family: var(--f-body); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card { background: var(--light); border-radius: 10px; padding: 32px 28px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.testi-quote { font-size: 36px; color: var(--orange); line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testi-text { font-size: 14.5px; color: var(--text); line-height: 1.75; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 16px; color: var(--orange); }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--navy); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(245,130,31,0.07) 1.5px, transparent 1.5px); background-size: 30px 30px; }
.cta-title { font-family: var(--f-head); font-weight: 800; font-size: clamp(28px, 4vw, 50px); color: #fff; line-height: 1.1; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-title span { color: var(--orange); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── MISSION / VISION ─── */
.mv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.mv-card { border-radius: 12px; padding: 40px; }
.mv-card-navy { background: var(--navy); }
.mv-card-light { background: var(--light); border: 1px solid var(--border); }
.mv-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; color: var(--orange); }
.mv-title { font-family: var(--f-head); font-weight: 800; font-size: 26px; margin-bottom: 14px; line-height: 1.15; }
.mv-card-navy .mv-title { color: #fff; }
.mv-card-light .mv-title { color: var(--navy); }
.mv-text { font-size: 15px; line-height: 1.75; }
.mv-card-navy .mv-text { color: rgba(255,255,255,0.6); }
.mv-card-light .mv-text { color: var(--muted); }

/* ─── SERVICES DETAIL ─── */
.sd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.sd-card { border: 1px solid var(--border); border-radius: 10px; padding: 32px; transition: .25s; background: #fff; }
.sd-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.09); border-color: var(--orange); transform: translateY(-3px); }
.sd-icon { font-size: 38px; margin-bottom: 16px; }
.sd-num { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--orange); margin-bottom: 8px; }
.sd-title { font-family: var(--f-head); font-weight: 800; font-size: 20px; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.sd-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.sd-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.sd-tag { font-size: 11px; padding: 4px 12px; border-radius: 20px; background: var(--light); border: 1px solid var(--border); color: var(--muted); font-weight: 500; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 56px; align-items: start; }
.ci-block { display: flex; flex-direction: column; gap: 18px; }
.ci-card { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px; transition: .25s; }
.ci-card:hover { border-color: var(--orange); }
.ci-icon-wrap { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--r); background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.ci-val { font-size: 15px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.contact-form-wrap { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 40px; }
.form-title { font-family: var(--f-head); font-weight: 800; font-size: 26px; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-input { width: 100%; padding: 12px 16px; border-radius: var(--r); border: 1.5px solid var(--border); background: #fff; font-family: var(--f-body); font-size: 14.5px; color: var(--text); outline: none; transition: .2s; -webkit-appearance: none; }
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,31,0.1); }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-input::placeholder { color: #bbb; }
#form-msg { display: none; margin-top: 14px; padding: 13px 18px; border-radius: var(--r); font-size: 14px; font-weight: 500; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #059669; }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 72px 5% 40px; display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.footer-logo-mark { width: 44px; height: 44px; border-radius: var(--r); background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; line-height: 1.75; max-width: 260px; margin-top: 10px; }
.footer-col-head { font-family: var(--f-head); font-weight: 700; font-size: 14px; color: #fff; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 5%; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; }
.footer-slogan { font-size: 13px; color: var(--orange); font-style: italic; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .sd-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .testi-grid { grid-template-columns: 1fr; }
  .sd-grid { grid-template-columns: 1fr; }
  .mv-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; }
  .hero { padding-top: 56px; min-height: auto; }
  .hero-inner { padding-bottom: 56px; }
}
@media (max-width: 480px) {
  section { padding: 64px 5%; }
  .why-grid { grid-template-columns: 1fr; }
}
