/* =====================================================
   growwithERP — Main Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --gw-bg:            #F4F2EE;
  --gw-dark:          #111111;
  --gw-accent:        #B9FF2C;
  --gw-text:          #111111;
  --gw-text-sec:      #6F6F6F;
  --gw-card-dark:     #1A1A1A;
  --gw-border:        rgba(17,17,17,0.12);
  --gw-border-light:  rgba(17,17,17,0.10);
  --gw-border-hair:   rgba(17,17,17,0.18);
  --radius:           10px;
  --font-display:     'Space Grotesk', sans-serif;
  --font-body:        'Inter', sans-serif;
  --section-px:       clamp(1.5rem, 8vw, 7rem);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--gw-bg);
  color: var(--gw-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Grain overlay ─── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Utility classes ─── */
.section-padding { padding-left: var(--section-px); padding-right: var(--section-px); }

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gw-text-sec);
}

.hairline-v { width: 1px; background: var(--gw-border-hair); }
.hairline-h { height: 1px; background: var(--gw-border-hair); }

.image-grade { filter: saturate(.75) contrast(1.05); }

.card-light {
  background: var(--gw-bg);
  border: 1px solid var(--gw-border-light);
  border-radius: var(--radius);
}

.card-dark {
  background: var(--gw-card-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gw-accent);
  color: #000;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: .875rem;
  padding: .6rem 1.25rem;
  border-radius: 8px; /* Slightly more rounded to match image */
  border: none;
  cursor: pointer;
  transition: filter .3s ease, transform .2s ease;
}
.btn-primary:hover  { filter: brightness(0.95); transform: scale(1.02); }
.btn-primary:active { transform: scale(.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: none;
  border: none;
  color: var(--gw-text);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: .875rem;
  cursor: pointer;
  transition: color .2s ease;
}
.btn-ghost:hover { color: var(--gw-text-sec); }
.btn-ghost svg { transition: transform .2s ease; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ─── Scroll bar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gw-bg); }
::-webkit-scrollbar-thumb { background: rgba(17,17,17,.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(17,17,17,.33); }

::selection { background: rgba(185,255,44,.3); color: var(--gw-text); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: background .5s ease, padding .4s ease, box-shadow .4s ease;
  background: var(--gw-bg); /* Ensuring background is always light for visibility matching the screenshot */
  box-shadow: 0 1px 0 rgba(17,17,17,.06);
}

.nav.scrolled {
  background: rgba(244,242,238,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: clamp(2.5rem, 5vw, 3.5rem); /* Scaled down slightly so it fits inside the new solid navbar cleanly */
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 15px; /* exactly matching screenshot proportions */
  font-weight: 500;
  color: #111; /* exactly matching screenshot color */
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.nav__link:hover { color: var(--gw-text-sec); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--gw-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform .5s ease;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gw-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu__link:hover { color: var(--gw-text-sec); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin-top: clamp(4.5rem, 8vw, 5.5rem); /* Added to sit below solid navbar */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.6) 50%, rgba(17,17,17,0.3) 100%);
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__text-col {
  max-width: 600px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__headline span { display: block; }

.hero__subhead {
  font-size: clamp(.9rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__form-col {
  display: flex;
  justify-content: flex-end;
}

.hero-form-card {
  width: 100%;
  max-width: 440px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(17,17,17,0.85); /* semi-transparent black */
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}

.hero-form-card__title {
  color: #fff;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.hero-form-card__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .hero__container { grid-template-columns: 1fr; }
  .hero__form-col { justify-content: flex-start; }
  .hero__bg-overlay { background: rgba(17,17,17,0.75); }
}

/* =====================================================
   WHAT WE DO
   ===================================================== */
.what-we-do {
  position: relative;
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.what-we-do__header { margin-bottom: clamp(3rem,6vw,5rem); }

.what-we-do__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.capability-card {
  padding: clamp(2rem,3vw,2.5rem);
  position: relative;
  overflow: hidden;
  transition: box-shadow .5s ease;
}
.capability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gw-accent);
}
.capability-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); }

.capability-card__icon {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.5;
  margin-bottom: 1.5rem;
  color: var(--gw-text);
}

.capability-card h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  color: var(--gw-text);
  margin-bottom: 1rem;
}

.capability-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gw-text-sec);
}

/* =====================================================
   SOLUTIONS
   ===================================================== */
.solutions {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.solutions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,4vw,6rem);
}

.solutions__header h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--gw-text);
  margin-bottom: 1.5rem;
}

.solutions__header p {
  font-size: clamp(.9rem,1.1vw,1.1rem);
  color: var(--gw-text-sec);
  line-height: 1.7;
}

.solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.solution-cell {
  padding: clamp(1.25rem,2vw,2rem);
  position: relative;
}
.solution-cell:nth-child(odd)  { border-right: 1px solid var(--gw-border-hair); }
.solution-cell:nth-child(-n+4) { border-bottom: 1px solid var(--gw-border-hair); }

.solution-cell__plus {
  position: absolute;
  top: 1rem; right: 1rem;
  width: .75rem; height: .75rem;
  color: var(--gw-text-sec);
}

.solution-cell h3 {
  font-size: clamp(1rem,1.2vw,1.2rem);
  color: var(--gw-text);
  margin-bottom: .75rem;
}

.solution-cell p {
  font-size: .875rem;
  color: var(--gw-text-sec);
  line-height: 1.65;
}

/* =====================================================
   PROCESS
   ===================================================== */
.process {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.process__header { margin-bottom: clamp(3rem,6vw,5rem); }
.process__header h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.process__header p { font-size: clamp(.9rem,1.1vw,1.1rem); color: var(--gw-text-sec); line-height: 1.7; max-width: 34vw; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step-card {
  padding: clamp(1.25rem,2vw,2rem);
  border-left: 1px solid var(--gw-border-hair);
}
.step-card:first-child { border-left: none; }

.step-card__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem,4vw,4rem);
  color: rgba(17,17,17,.12);
  display: block;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: clamp(1.1rem,1.4vw,1.4rem);
  color: var(--gw-text);
  margin-bottom: 1rem;
}

.step-card p {
  font-size: .875rem;
  color: var(--gw-text-sec);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* =====================================================
   INDUSTRIES
   ===================================================== */
.industries {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
  overflow: hidden;
}

.industries__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.industries__header h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.industries__header p {
  font-size: clamp(.9rem,1.1vw,1.1rem);
  color: var(--gw-text-sec);
  line-height: 1.7;
  max-width: 34vw;
  margin-bottom: 2rem;
}

.industries__ribbon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.industry-card {
  position: relative;
  height: clamp(200px, 28vh, 320px);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.industry-card:hover img { transform: scale(1.05); }

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}

.industry-card__title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem,1.3vw,1.25rem);
  color: #fff;
}

/* =====================================================
   PLATFORMS
   ===================================================== */
.platforms {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.platforms__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,4vw,6rem);
  align-items: center;
}

.platforms__content .eyebrow { display: block; margin-bottom: 1rem; }

.platforms__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.15;
  color: var(--gw-text);
  margin-bottom: 1.5rem;
}

.platforms__headline a:hover { color: var(--gw-accent); }

.platforms__desc {
  font-size: clamp(.9rem,1.1vw,1.1rem);
  color: var(--gw-text-sec);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.platforms__features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.platforms__feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--gw-text);
}

.platforms__check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gw-accent);
  flex-shrink: 0;
}

.platforms__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.platforms__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   IMPACT
   ===================================================== */
.impact {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.impact__header { margin-bottom: clamp(3rem,5vw,5rem); }
.impact__header h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.1; }

.impact__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem,4vw,4rem);
  margin-bottom: clamp(3rem,5vw,5rem);
}

.stat-item__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4vw, 64px);
  color: var(--gw-text);
  display: block;
  margin-bottom: .5rem;
}

.stat-item__label {
  font-size: .9375rem;
  color: var(--gw-text-sec);
}

.impact__testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem,2.5vw,2rem);
}

.testimonial-card { padding: clamp(2rem,3vw,2.5rem); }

.testimonial-card__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem,1.6vw,1.5rem);
  line-height: 1.25;
  color: var(--gw-text);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  font-size: .875rem;
  color: var(--gw-text-sec);
}

/* =====================================================
   INSIGHTS
   ===================================================== */
.insights {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.insights__header { margin-bottom: clamp(3rem,4vw,4rem); }
.insights__header h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.1; margin-bottom: 1rem; }
.insights__header p { font-size: clamp(.9rem,1.1vw,1.1rem); color: var(--gw-text-sec); margin-bottom: 1.5rem; max-width: 34vw; line-height: 1.7; }

.insights__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem,2.5vw,2rem);
}

.insight-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .5s ease;
}
.insight-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); }

.insight-card__image {
  height: clamp(180px, 24vh, 280px);
  overflow: hidden;
}
.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.insight-card:hover .insight-card__image img { transform: scale(1.05); }

.insight-card__body { padding: clamp(1.25rem,2vw,2rem); }

.insight-card__body h3 {
  font-size: clamp(1rem,1.2vw,1.2rem);
  color: var(--gw-text);
  margin-bottom: .75rem;
  transition: color .2s;
}
.insight-card:hover .insight-card__body h3 { color: var(--gw-text-sec); }

.insight-card__body p {
  font-size: .875rem;
  color: var(--gw-text-sec);
  line-height: 1.65;
}

/* =====================================================
   TEAM
   ===================================================== */
.team {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,4vw,6rem);
  align-items: center;
}

.team__content h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.team__content p {
  font-size: clamp(.9rem,1.1vw,1.1rem);
  color: var(--gw-text-sec);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.team__collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  height: clamp(380px, 60vh, 600px);
}

.collage-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.collage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-image:nth-child(1) { grid-column: 1/3; grid-row: 1/3; }
.collage-image:nth-child(2) { grid-column: 3/4; grid-row: 1/2; }
.collage-image:nth-child(3) { grid-column: 3/4; grid-row: 2/3; }
.collage-image:nth-child(4) { grid-column: 1/2; grid-row: 3/4; }
.collage-image:nth-child(5) { grid-column: 2/3; grid-row: 3/4; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-bg);
}

.pricing__header {
  text-align: center;
  margin-bottom: clamp(3rem,5vw,5rem);
}

.pricing__header h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.1; margin-bottom: 1rem; }
.pricing__header p { font-size: clamp(.9rem,1.1vw,1.1rem); color: var(--gw-text-sec); max-width: 40vw; margin: 0 auto; line-height: 1.7; }

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem,2.5vw,2rem);
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-card {
  padding: clamp(2rem,3vw,2.5rem);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s ease, transform .2s ease;
}
.pricing-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); }

.pricing-card.recommended {
  outline: 2px solid var(--gw-accent);
  animation: pulse-accent 2s ease-in-out 2;
}

.pricing-card.recommended::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gw-accent);
}

@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185,255,44,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(185,255,44,0); }
}

.pricing-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gw-accent);
  color: var(--gw-text);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 9999px;
}

.pricing-card h3 {
  font-size: clamp(1.4rem,1.8vw,1.8rem);
  color: var(--gw-text);
  margin-bottom: .5rem;
}

.pricing-card__desc {
  font-size: .875rem;
  color: var(--gw-text-sec);
  margin-bottom: 2rem;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.pricing-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gw-accent);
  flex-shrink: 0;
  margin-top: .1rem;
}

.pricing-feature span { font-size: .875rem; color: var(--gw-text); }

.pricing-card__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  font-family: var(--font-body);
  transition: all .3s ease;
}

.pricing-card__cta--accent {
  background: var(--gw-accent);
  color: var(--gw-text);
  border: none;
  cursor: pointer;
}
.pricing-card__cta--accent:hover { filter: brightness(1.1); }

.pricing-card__cta--ghost {
  background: rgba(17,17,17,.05);
  color: var(--gw-text);
  border: none;
  cursor: pointer;
}
.pricing-card__cta--ghost:hover { background: rgba(17,17,17,.1); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: clamp(6rem,10vh,12rem) 0;
  background: var(--gw-dark);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,4vw,6rem);
  align-items: start;
}

.contact__content h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact__content p {
  font-size: clamp(.9rem,1.1vw,1.1rem);
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.contact__form { padding: clamp(2rem,3vw,2.5rem); }

.form__group { margin-bottom: 1.5rem; }

.form__label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  margin-bottom: .5rem;
}

.form__input,
.form__textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .9375rem;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color .2s ease;
  outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(255,255,255,.4); }
.form__input:focus,
.form__textarea:focus { border-color: rgba(185,255,44,.5); }

.form__textarea { resize: none; }

.form__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--gw-accent);
  color: var(--gw-text);
  font-weight: 600;
  font-size: .9375rem;
  font-family: var(--font-body);
  padding: .875rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter .3s ease, transform .2s ease;
}
.form__submit:hover  { filter: brightness(1.1); transform: scale(1.01); }
.form__submit:active { transform: scale(.98); }

/* Success state */
.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form__success.visible { display: block; }
.form__success svg { width: 4rem; height: 4rem; color: var(--gw-accent); margin: 0 auto 1.5rem; }
.form__success h3 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.form__success p { color: rgba(255,255,255,.6); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--gw-dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: clamp(3rem,5vw,5rem);
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem,4vw,4rem);
  margin-bottom: clamp(2.5rem,4vw,4rem);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 22rem;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  color: rgba(255,255,255,.6);
  transition: color .2s;
  display: flex;
}
.footer__social-link:hover { color: #fff; }
.footer__social-link svg { width: 1.25rem; height: 1.25rem; }

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__link {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.footer__link:hover { color: #fff; }

.footer__contact p { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .5rem; }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy { font-size: .875rem; color: rgba(255,255,255,.4); }

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-btn {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.footer__legal-btn:hover { color: rgba(255,255,255,.6); }

/* =====================================================
   SECTION HEADINGS (shared style)
   ===================================================== */
.section-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--gw-text);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity .7s ease, transform .7s ease;
}
.anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-up:nth-child(2) { transition-delay: .1s; }
.anim-fade-up:nth-child(3) { transition-delay: .2s; }
.anim-fade-up:nth-child(4) { transition-delay: .3s; }

.anim-fade-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity .7s ease, transform .7s ease;
}
.anim-fade-left.in-view { opacity: 1; transform: translateX(0); }

.anim-fade-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity .7s ease, transform .7s ease;
}
.anim-fade-right.in-view { opacity: 1; transform: translateX(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: block; }

  .hero__image-panel { width: 100%; opacity: .25; }
  .hero__hairline { display: none; }
  .hero__content {
    position: relative;
    width: 100%;
    padding: 6rem var(--section-px) 3rem;
    justify-content: flex-end;
    min-height: 100vh;
  }
  .hero__inner { max-width: 100%; }
  .hero__subhead { max-width: 100%; }

  .solutions__inner { grid-template-columns: 1fr; }
  .solutions__header p { max-width: 100%; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .step-card { border-left: none; border-top: 1px solid var(--gw-border-hair); }
  .step-card:first-child { border-top: none; }

  .industries__inner { grid-template-columns: 1fr; }
  .industries__header p { max-width: 100%; }
  .industries__ribbon { grid-template-columns: 1fr 1fr; }

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

  .impact__stats { grid-template-columns: 1fr 1fr; }
  .impact__testimonials { grid-template-columns: 1fr; }

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

  .team__inner { grid-template-columns: 1fr; }
  .team__content { max-width: 100%; }

  .pricing__cards { grid-template-columns: 1fr 1fr; }
  .pricing__header p { max-width: 100%; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__content { max-width: 100%; }

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

@media (max-width: 640px) {
  .hero__ctas { flex-direction: column; }
  .process__steps { grid-template-columns: 1fr; }
  .industries__ribbon { grid-template-columns: 1fr; }
  .impact__stats { grid-template-columns: 1fr; }
  .insights__cards { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .what-we-do__cards { grid-template-columns: 1fr; }
  .solutions__grid { grid-template-columns: 1fr; }
  .solution-cell:nth-child(odd) { border-right: none; }
  .solution-cell:nth-child(-n+4) { border-bottom: 1px solid var(--gw-border-hair); }
  .solution-cell:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
