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

:root {
  --primary: #e7382f;
  --secondary: #f6a11a;
  --accent: #0f766e;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #eadfd6;
  --paper: #fffaf4;
  --cream: #fff1df;
  --night: #0d1320;
  --white: #ffffff;
  --green: #16a34a;
  --gradient: linear-gradient(135deg, #e7382f 0%, #f6a11a 100%);
  --premium-gradient: linear-gradient(135deg, #0d1320 0%, #3c1614 42%, #e7382f 100%);
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
  --soft-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(246, 161, 26, 0.14), transparent 38%);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section:nth-of-type(even) {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 118, 110, 0.035));
}

.section-header {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero .eyebrow,
.inner-hero .eyebrow,
.service-feature .eyebrow,
.proof-section .eyebrow,
.industry-lead .eyebrow,
.cta-panel .eyebrow,
.roadmap-aside .eyebrow,
.result-showcase .eyebrow,
.map-panel .eyebrow {
  color: #ffd76d;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

p {
  color: var(--muted);
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--gradient);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(231, 56, 47, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(231, 56, 47, 0.34);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn.light {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 6vw;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-nav.scrolled,
.site-nav.nav-open {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.12rem;
  white-space: nowrap;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand span span {
  color: #ffd76d;
}

.site-nav.scrolled .brand span span,
.site-nav.nav-open .brand span span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.94rem;
  opacity: 0.92;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 118px 0 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 19, 32, 0.96) 0%, rgba(50, 18, 19, 0.9) 48%, rgba(231, 56, 47, 0.72) 100%),
    url("images/22.png") center / cover no-repeat;
  overflow: hidden;
}

.hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 80px),
    linear-gradient(45deg, rgba(246, 161, 26, 0.12), transparent 42%);
  pointer-events: none;
}

.hero::after,
.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(16, 24, 39, 0.36));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.hero-copy h1 {
  max-width: 820px;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 600px;
  margin-top: 42px;
}

.stat-tile {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 8px;
}

.stat-tile strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat-tile span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 210px 150px 150px;
  gap: 14px;
  transform: rotate(1deg);
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-collage img:first-child {
  grid-row: 1 / 3;
}

.hero-collage img:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 2;
}

.hero-collage img:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 3;
}

.about-story {
  background: linear-gradient(180deg, var(--white), #fff7ee);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 520px;
}

.media-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: var(--white);
}

.media-stack img:first-child {
  inset: 0 auto auto 0;
  width: 100%;
  border-radius: 8px;
}

.media-stack img:nth-child(2) {
  right: 0;
  top: 80px;
  width: 52%;
  border-radius: 8px;
}

.media-stack img:nth-child(3) {
  left: 14%;
  bottom: 0;
  width: 66%;
  border-radius: 8px;
}

.quote-mark {
  max-width: 660px;
  margin-bottom: 22px;
  padding-left: 24px;
  border-left: 5px solid var(--primary);
  color: var(--ink);
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-cloud span,
.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid #ffd7c2;
  border-radius: 999px;
  background: #fff2e8;
  color: #8f3324;
  font-size: 0.88rem;
  font-weight: 800;
}

.services-preview {
  background: linear-gradient(180deg, #fff4ea 0%, #ffffff 100%);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
}

.service-feature {
  position: sticky;
  top: 110px;
  min-height: 520px;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(13, 19, 32, 0.93), rgba(231, 56, 47, 0.76)),
    url("images/23.png") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-feature h3 {
  max-width: 430px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-feature p {
  max-width: 500px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-mini {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-mini:hover,
.value-tile:hover,
.team-roles > div:hover,
.service-detail:hover,
.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 52px rgba(17, 24, 39, 0.13);
  border-color: rgba(231, 56, 47, 0.22);
}

.service-mini i {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.15rem;
}

.service-mini p {
  margin-top: 8px;
  font-size: 0.92rem;
}

.proof-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 19, 32, 1), rgba(24, 32, 48, 0.98));
  color: var(--white);
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/24.png") center / cover no-repeat;
  opacity: 0.18;
}

.proof-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 19, 32, 0.98) 0%, rgba(13, 19, 32, 0.9) 48%, rgba(13, 19, 32, 0.72) 100%),
    radial-gradient(circle at 80% 50%, rgba(231, 56, 47, 0.24), transparent 38%);
  pointer-events: none;
}

.proof-grid {
  position: relative;
  z-index: 1;
}

.proof-section .reveal {
  opacity: 1;
  transform: none;
}

.proof-section h2,
.proof-section h3 {
  color: var(--white);
}

.proof-section p,
.proof-section .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: center;
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.proof-row span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  font-weight: 900;
}

.proof-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.proof-visual img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.proof-caption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-caption div {
  padding: 18px;
  background: #172033;
}

.proof-caption strong {
  display: block;
  font-size: 1.45rem;
}

.impact-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 20px;
}

.impact-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.impact-card.large {
  grid-row: span 2;
}

.impact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.35s ease;
}

.impact-card:hover img {
  transform: scale(1.04);
}

.impact-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(16, 24, 39, 0.92));
}

.industries-band {
  background: var(--white);
}

.industry-strip {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 18px;
}

.industry-lead {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.12), rgba(16, 24, 39, 0.9)),
    url("images/2.png") center / cover no-repeat;
  border-radius: 8px;
}

.industry-column {
  display: grid;
  gap: 18px;
}

.industry-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px;
  background: #fff5ed;
  border: 1px solid #ffe0cd;
  border-radius: 8px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.industry-tile:hover {
  transform: translateX(4px);
  background: #ffffff;
}

.industry-tile i {
  color: var(--primary);
  font-size: 1.25rem;
}

.cta-panel {
  padding: 72px 0;
  background:
    linear-gradient(100deg, rgba(13, 19, 32, 0.92), rgba(231, 56, 47, 0.9), rgba(246, 161, 26, 0.86)),
    url("images/24.png") center / cover no-repeat;
  color: var(--white);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-row p {
  color: rgba(255, 255, 255, 0.84);
}

.inner-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 150px 0 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 19, 32, 0.94), rgba(92, 23, 20, 0.78)),
    var(--hero-image, url("images/22.png")) center / cover no-repeat;
  overflow: hidden;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.about-page-story {
  background: var(--white);
}

.story-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.story-copy {
  display: grid;
  gap: 24px;
}

.story-copy article {
  padding-left: 22px;
  border-left: 4px solid var(--primary);
}

.wide-image {
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.wide-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.values-lane {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-tile {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.value-tile:nth-child(even) {
  background: var(--night);
  color: var(--white);
}

.value-tile:nth-child(even) p {
  color: rgba(255, 255, 255, 0.72);
}

.value-tile i {
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.55rem;
}

.capability-wall {
  background:
    linear-gradient(180deg, #fff7ed 0%, #f7eee8 100%);
}

.capability-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.capability-grid span {
  display: block;
  break-inside: avoid;
  margin-bottom: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(21, 32, 51, 0.06);
  border-radius: 6px;
}

.team-roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.team-roles > div {
  min-height: 160px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.team-roles i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gradient);
  margin-bottom: 18px;
}

.team-roles strong {
  display: block;
  font-size: 1.05rem;
}

.team-roles span {
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

.service-list-page {
  display: grid;
  gap: 28px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
}

.service-detail:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  display: grid;
  place-items: center;
  min-height: 300px;
  height: 100%;
  padding: 14px;
  overflow: hidden;
  background: #fff4ea;
  border: 1px solid #ffe0cd;
  border-radius: 8px;
}

.service-image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
}

.service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 28px 18px;
}

.service-body h2,
.contact-card h2,
.contact-form h2,
.map-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.service-body i {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.roadmap-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 42px;
  align-items: start;
}

.roadmap-aside {
  position: sticky;
  top: 110px;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.roadmap-aside img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  opacity: 0.86;
}

.roadmap-aside div {
  padding: 28px;
}

.roadmap-aside p {
  color: rgba(255, 255, 255, 0.74);
}

.roadmap-steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.step-number {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 900;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
}

.filter-note {
  padding: 24px;
  background: var(--white);
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 638px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .info {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(16, 24, 39, 0.9));
}

.result-showcase {
  background: var(--night);
  color: var(--white);
}

.result-showcase p {
  color: rgba(255, 255, 255, 0.72);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.result-card {
  overflow: hidden;
  background: #172033;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.result-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.result-card div {
  padding: 22px;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

.contact-card,
.contact-form {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-method {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-method i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
}

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dccdc4;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
}

.map-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
}

.map-strip img,
.map-panel {
  min-height: 260px;
  border-radius: 8px;
}

.map-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: var(--night);
  color: var(--white);
}

.map-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.footer {
  padding: 38px 0;
  background: #0b1120;
  color: #94a3b8;
  text-align: center;
}

.footer p {
  color: #94a3b8;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 1.65rem;
  box-shadow: 0 16px 30px rgba(22, 163, 74, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 42px rgba(22, 163, 74, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .proof-grid,
  .story-panel,
  .roadmap-wrap,
  .portfolio-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-collage {
    max-width: 680px;
  }

  .service-feature-grid,
  .industry-strip,
  .values-lane,
  .map-strip {
    grid-template-columns: 1fr 1fr;
  }

  .roadmap-aside {
    position: relative;
    top: 0;
  }

  .service-feature {
    position: relative;
    top: 0;
    min-height: 430px;
  }

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

  .team-roles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .site-nav {
    padding: 12px 16px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand {
    font-size: 1rem;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-stats,
  .service-mini-grid,
  .proof-caption,
  .impact-bento,
  .service-feature-grid,
  .industry-strip,
  .values-lane,
  .team-roles,
  .contact-form form,
  .map-strip,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-template-rows: 180px 130px 130px;
    transform: none;
  }

  .media-stack {
    min-height: auto;
  }

  .media-stack img,
  .media-stack img:first-child,
  .media-stack img:nth-child(2),
  .media-stack img:nth-child(3) {
    position: static;
    width: 100%;
    height: auto;
  }

  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
  }

  .service-detail:nth-child(even) .service-image {
    order: 0;
  }

  .service-image {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    padding: 10px;
  }

  .service-image img {
    max-height: none;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.1rem, 13vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.35rem);
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .hero-actions,
  .pill-cloud {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 380px;
    padding: 128px 0 54px;
  }

  .service-feature,
  .contact-card,
  .contact-form,
  .map-panel {
    padding: 24px;
  }

  .step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .step-number {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .gallery-item .info,
  .impact-card div {
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-nav {
    padding-inline: 11px;
  }

  .brand {
    gap: 8px;
    font-size: 0.92rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   CLIENT PREVIEW MODE (प्रतिमा लपवण्यासाठी / Hide Images for Client Demo)
   हा कोड सर्व प्रतिमा लपवून त्यांच्या जागी रिकामी जागा (blank space) ठेवतो.
   प्रतिमा पुन्हा दाखवण्यासाठी खालील कोड कमेंट किंवा डिलीट करा.
   ========================================================================== */
img:not(.brand img) {
  visibility: hidden !important;
}

/* Remove section background images but keep gradients */
.hero {
  background-image: linear-gradient(90deg, rgba(13, 19, 32, 0.96) 0%, rgba(50, 18, 19, 0.9) 48%, rgba(231, 56, 47, 0.72) 100%) !important;
}
.inner-hero {
  background-image: linear-gradient(90deg, rgba(13, 19, 32, 0.94), rgba(92, 23, 20, 0.78)) !important;
}
.proof-section::before {
  background-image: none !important;
}
.cta-panel {
  background-image: linear-gradient(100deg, rgba(13, 19, 32, 0.92), rgba(231, 56, 47, 0.9), rgba(246, 161, 26, 0.86)) !important;
}
.industry-lead {
  background-image: linear-gradient(180deg, rgba(16, 24, 39, 0.12), rgba(16, 24, 39, 0.9)) !important;
}

@media (max-width: 780px) {
  .brand img {
    width: 70px;
    height: 70px;
  }
}
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 6px 6vw; /* 18px varun 6px */
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.brand img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}