/* =========================================================
   Namaste Media Solution — Global Styles
   ========================================================= */
:root {
  --black: #0B0B0B;
  --white: #FFFFFF;
  --red: #E31E24;
  --red-dark: #b8161b;
  --grey-light: #F5F5F5;
  --grey-dark: #1A1A1A;
  --grey-mid: #6b6b6b;
  --border: #e6e6e6;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
  --maxw: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: #2a2a2a; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--grey { background: var(--grey-light); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark p { color: #c9c9c9; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--grey-mid); font-size: 1.08rem; margin-top: 14px; }
.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: 50px; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(227, 30, 36, .3); }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 14px 30px rgba(227, 30, 36, .4); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--grey-dark); }
.btn--ghost { background: transparent; color: var(--black); border-color: rgba(0,0,0,.18); }
.btn--ghost:hover { border-color: var(--black); }
.btn--light { background: #fff; color: var(--black); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; }
.btn--wa { background: #25D366; color: #062e16; }
.btn--wa:hover { background: #1fb959; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  transition: height .3s var(--ease), background .3s, box-shadow .3s;
  background: transparent;
}
.header.scrolled { height: 64px; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.07); backdrop-filter: blur(12px); }
/* light text while transparent over dark hero */
.header:not(.scrolled) .logo { color: #fff; }
.header:not(.scrolled) .logo small { color: #b3b3b3; }
.header:not(.scrolled) .nav a { color: #eaeaea; }
.header:not(.scrolled) .nav a.active { color: #fff; }
.header:not(.scrolled) .hamburger span { background: #fff; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px; background: var(--red); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; flex-shrink: 0;
}
.logo span { color: var(--red); }
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-mid); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red);
  transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px; padding: 0;
}
.hamburger span { display: block; height: 2.5px; width: 26px; background: var(--black); border-radius: 3px; transition: .3s var(--ease); margin: 0 auto; }
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: #fff; padding: 100px 28px 40px;
  transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav a.active { color: var(--red); }
.mobile-nav .btn { margin-top: 26px; }

/* ---------- Hero ---------- */
.hero { padding: calc(var(--header-h) + 76px) 0 90px; position: relative; overflow: hidden; }

/* ---------- Bold typographic hero (dark) ---------- */
.hero--type {
  background: radial-gradient(120% 100% at 80% 0%, #1d1d1d 0%, var(--black) 55%);
  color: #fff; padding: calc(var(--header-h) + 110px) 0 120px; min-height: 92vh;
  display: flex; align-items: center;
}
.hero--type::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227,30,36,.6), transparent);
}
.hero-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-head); font-weight: 800; font-size: clamp(8rem, 26vw, 26rem);
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.04); letter-spacing: -.04em;
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.hero-type-inner { position: relative; z-index: 1; max-width: 980px; }
.hero-eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .22em; text-transform: uppercase; color: #ff5c61; margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.9rem, 8vw, 6.4rem); line-height: .98; letter-spacing: -.03em;
  margin-bottom: 30px; max-width: 16ch; color: #fff;
}
.hero-title .u { position: relative; color: var(--red); white-space: nowrap; }
.hero-title .u::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .09em;
  background: var(--red); border-radius: 4px;
}
.hero-sub { font-size: 1.2rem; color: #b9b9b9; max-width: 580px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 54px;
  color: #8c8c8c; font-family: var(--font-head); font-weight: 500; font-size: .8rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); opacity: .65; }

.contact-info-item .ic svg .il { stroke: #ff6b6f; }
.contact-info-item .ic svg .is { fill: #ff6b6f; }
.contact-info-item .ic svg [fill="currentColor"] { fill: #ff6b6f; }

/* ---------- About preview ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  border-radius: var(--radius); min-height: 420px; background: linear-gradient(150deg, var(--grey-dark), #000);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg); display: grid; place-items: center; color: #fff; padding: 30px;
}
.about-visual .ring { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.about-visual .quote { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; text-align: center; line-height: 1.3; position: relative; }
.about-visual .quote b { color: var(--red); }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.07); }
/* ---------- Duotone icon system ---------- */
.ic svg { width: 30px; height: 30px; display: block; }
.ic svg .is { fill: var(--red); opacity: .14; }
.ic svg .il { stroke: var(--red); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.ic svg [fill="currentColor"] { fill: var(--red); }
.feature .ic svg .is, .about-visual .ic svg .is, .contact-info-item .ic svg .is { opacity: .26; }

.card { position: relative; }
.card .ic {
  width: 58px; height: 58px; border-radius: 16px; background: var(--white); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 22px; transition: .3s var(--ease);
}
.card:hover .ic { border-color: var(--red); background: rgba(227,30,36,.06); }
.card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.card p { color: var(--grey-mid); font-size: .97rem; }
.card-arrow {
  position: absolute; top: 30px; right: 30px; color: var(--border); font-size: 1.3rem;
  transition: .3s var(--ease); transform: translateX(-4px);
}
.card:hover .card-arrow { color: var(--red); transform: none; }

/* ---------- Why choose / features ---------- */
.feature { background: var(--grey-dark); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 32px; }
.feature .ic { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; }
.feature .ic svg .il { stroke: #ff5c61; }
.feature .ic svg .is { fill: #ff5c61; }
.feature .ic svg [fill="currentColor"] { fill: #ff5c61; }
.feature h3 { color: #fff; }
.feature p { color: #b3b3b3; }
.feature .num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: rgba(255,255,255,.14); }

/* ---------- Process timeline ---------- */
.process { position: relative; }
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process-track::before {
  content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(227,30,36,.2)); z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step .circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: #fff; margin: 0 auto 18px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(227,30,36,.35);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--grey-mid); }

/* ---------- Counters / results ---------- */
.result-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.result-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.result-card .cat { font-size: .82rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.metric { background: var(--grey-light); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.metric .val { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--black); }
.metric .lbl { font-size: .76rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Portfolio / work cards ---------- */
.work-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.work-thumb { aspect-ratio: 4/5; background: linear-gradient(150deg, var(--grey-dark), #000); position: relative; overflow: hidden; display: grid; place-items: center; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.06); }
.work-thumb .ph { color: rgba(255,255,255,.4); font-size: 2.5rem; }
.work-thumb .tag { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,.6); color: #fff; font-size: .72rem; padding: 5px 12px; border-radius: 50px; font-weight: 600; backdrop-filter: blur(4px); }
.work-body { padding: 22px; }
.work-body .brand { font-size: .8rem; color: var(--red); font-weight: 600; }
.work-body h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.work-body p { font-size: .92rem; color: var(--grey-mid); }
.work-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.chip { background: var(--grey-light); font-size: .76rem; padding: 5px 11px; border-radius: 50px; font-weight: 600; }
.chip b { color: var(--black); }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filters.scroll { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.filter-btn {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem; padding: 9px 20px; border-radius: 50px;
  border: 1px solid var(--border); background: #fff; cursor: pointer; white-space: nowrap; transition: .25s;
}
.filter-btn:hover { border-color: var(--black); }
.filter-btn.active { background: var(--black); color: #fff; border-color: var(--black); }

/* ---------- Clients ---------- */
.client-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 150px; transition: .3s var(--ease);
}
.client-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.client-logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; }
.client-card .ind { font-size: .8rem; color: var(--grey-mid); margin-top: 6px; }

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center; padding: 60px 20px; border: 2px dashed var(--border); border-radius: var(--radius);
  color: var(--grey-mid); font-family: var(--font-head); font-weight: 500; font-size: 1.05rem;
}
.empty-state .ic { font-size: 2.4rem; margin-bottom: 12px; opacity: .5; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; max-width: 760px; margin: 0 auto 16px; }
.cta-band p { max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Service detail (services page) ---------- */
.service-detail { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 38px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: .3s var(--ease); }
.service-detail:hover { box-shadow: var(--shadow-lg); }
.service-detail .ic { width: 66px; height: 66px; border-radius: 18px; background: rgba(227,30,36,.08); border: 1px solid rgba(227,30,36,.18); display: grid; place-items: center; }
.service-detail .ic svg { width: 34px; height: 34px; }
.service-detail h3 { font-size: 1.6rem; margin-bottom: 10px; }
.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 22px; margin: 18px 0; }
.deliverables li { position: relative; padding-left: 26px; font-size: .94rem; color: #333; }
.deliverables li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.suited { font-size: .9rem; color: var(--grey-mid); margin-bottom: 18px; }
.suited b { color: var(--black); }

/* ---------- Page hero (inner) ---------- */
.page-hero { padding: calc(var(--header-h) + 70px) 0 70px; background: linear-gradient(160deg, var(--black), var(--grey-dark)); color: #fff; }
.page-hero h1 { color: #fff; max-width: 900px; }
.page-hero p { color: #c9c9c9; max-width: 640px; margin-top: 18px; font-size: 1.15rem; }
.breadcrumb { font-size: .85rem; color: #9a9a9a; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ---------- Values / lists ---------- */
.value-pill { background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 12px 22px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 8px; }
.value-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.pill-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.mv-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.mv-card .ic { font-size: 2rem; color: var(--red); margin-bottom: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--black); color: #fff; border-radius: var(--radius); padding: 38px; }
.contact-info-card h3 { color: #fff; }
.contact-info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(227,30,36,.2); color: #ff7a7e; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-item .lbl { font-size: .78rem; color: #9a9a9a; text-transform: uppercase; letter-spacing: .08em; }
.contact-info-item .val { color: #fff; font-weight: 500; }

form .field { margin-bottom: 18px; }
form label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .88rem; margin-bottom: 7px; }
form .req { color: var(--red); }
form input, form select, form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: #fff; transition: border-color .2s, box-shadow .2s;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,30,36,.12); }
form textarea { resize: vertical; min-height: 120px; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { color: var(--red); font-size: .8rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }
.field.invalid .field-error { display: block; }
.form-success { background: #ecfdf3; border: 1px solid #abefc6; color: #067647; border-radius: var(--radius); padding: 24px; text-align: center; }
.form-success h3 { color: #067647; margin-bottom: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: #c9c9c9; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.footer a { color: #b3b3b3; font-size: .95rem; line-height: 2.1; transition: color .2s; }
.footer a:hover { color: var(--red); }
.footer .desc { font-size: .95rem; line-height: 1.7; margin-top: 16px; }
.footer .logo { color: #fff; }
.footer .logo small { color: #9a9a9a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #8a8a8a; }
.footer-bottom a { font-size: .85rem; }
.footer-bottom .links { display: flex; gap: 22px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.5); transition: transform .25s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 404 ---------- */
.err-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 120px 20px 60px; }
.err-wrap .code { font-family: var(--font-head); font-weight: 800; font-size: clamp(6rem, 20vw, 12rem); color: var(--red); line-height: 1; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal p, .legal li { color: #444; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn:not(.hamburger) { display: none; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr; gap: 0; }
  .process-track::before { display: none; }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; text-align: left; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .step .circle { margin: 0; }
  .hero-visual { order: -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-4, .grid-3, .grid-2, .footer-grid, .deliverables { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; padding: 26px; }
  .form .row, form .row { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .links { justify-content: center; }
  .collage-card.tall { grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
