/* ============================================================
   RESET
   ============================================================ */

.gradient-text {
  background: linear-gradient(180deg, #F6BF41 0%, #FFECC1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ============================================================
   DESIGN TOKENS — exact values from Figma
   ============================================================ */
:root {
  /* Colours */
  --purple: #7e52ff;
  --purple-dark: #291660;
  --yellow: #ffbc00;
  --navy-hero: #001736;
  --navy: #001836;
  --navy-icon: #012f69;
  --text-dark: #0d121f;
  --text-body: #00224f;
  --text-body-alt: #012f69;
  --text-muted-d: #a8aeb4;
  /* nav links */
  --text-muted-b: #7391b9;
  /* CTA subtitle */
  --text-light: #e7ebf1;
  /* hero subtitle, journey body */
  --text-grey: #c6ccd5;
  /* journey card body */
  --grey-light: #e7ebf1;
  /* SmartPrep bg */
  --icon-purple: #6546c1;
  /* solution grid icon bg */
  --icon-yellow: #ffbc00;
  --icon-dark: #012f69;
  --icon-prep: #e1d4f4;
  --card-border: #7391b9;
  --eyebrow-dark: #baa2ff;
  /* journey eyebrow */
  --phase-eyebrow: #f6bf41;

  /* Typography */
  --ff: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --container: 1184px;
  --side-pad: 128px;
}

/* ============================================================
   BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  padding: 13px 30px;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.btn-purple {
  background: var(--purple);
  color: #fff;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy-icon);
  padding: 13px 24px 15px 24px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  padding: 8px 16px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn-text-link:hover {
  background: var(--purple);
  color: #fff;
}

/* ============================================================
   00 — NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 28px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .3s, backdrop-filter .3s, border-color .3s, padding .3s;
}

#navbar.scrolled {
  background: rgba(0, 23, 54, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, .1);
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted-d);
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

/* ============================================================
   01 — HERO
   ============================================================ */
#hero {
  background: var(--navy-hero);
  padding: 240px 0 120px;
  min-height: 753px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}

.hero-headline {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 21px;
}

.hero-sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  background: linear-gradient(180deg, #F6BF41 4%, #FFECC1 37%, #F6BF41 100%);
  border-radius: 1px;
}

.hero-sub {
  position: relative;
  padding-left: 18px;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-img-wrap {
  position: relative;
  overflow: visible;
}

.hero-img-wrap img {
  width: 100%;
  display: block;
  transform: scale(1.15);
}

/* ============================================================
   SECTION-PURPLE-WRAPPER (02 + 03)
   ============================================================ */
.purple-wrapper {
  background: linear-gradient(180deg, #7E52FF 30%, #291760 100%);
  border-radius: 10px;
  margin: 16px;
  overflow: hidden;
  padding: 128px 0;
  position: relative;
}

.orb {
  position: absolute;
  top: 80px;
  z-index: 0;
  pointer-events: none;
}

.orb-left {
  left: 0;
  top: 40px;
}

.orb-right {
  right: 0;
}

.decor-line {
  position: absolute;
  top: 300px;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}


/* ============================================================
   02 — PROBLEM
   ============================================================ */
.section-problem {
  position: relative;
  z-index: 1;
}

.problem-heading {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  max-width: 840px;
  margin: 0 auto 64px;
  line-height: 1.25;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 72px;
  padding: 0 24px;
}

.problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-item p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

/* ============================================================
   03 — SOLUTION OVERVIEW
   ============================================================ */
.section-solutions {
  position: relative;
  z-index: 1;
  margin-top: 216px;
}

.solutions-header {
  text-align: left;
  margin-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
}

.solutions-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.solutions-header p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  max-width: 600px;
  margin: 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 64px;
}

.sol-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
}


.icon-container {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.icon-container img {
  width: 32px;
  height: 32px;
}

.sol-card p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

/* ============================================================
   SHARED PRODUCT SECTION STYLES
   ============================================================ */
.section-product {
  padding: 128px 0;
}

.eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-heading {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.product-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 32px;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 32px;
}

.feature-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon-yellow {
  background: var(--yellow);
}

.feat-icon-yellow svg path,
.feat-icon-yellow svg rect,
.feat-icon-yellow svg circle {
  stroke: #ffffff;
}

.feat-icon-dark {
  background: var(--navy-icon);
}

.feat-icon-dark svg path,
.feat-icon-dark svg rect,
.feat-icon-dark svg circle {
  stroke: #7E52FF;
  fill: none;
}

.feat-icon-prep {
  background: var(--icon-prep);
}

.feat-text h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.feat-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.product-img {
  width: 100%;
  display: block;
}

/* ============================================================
   04 — DIGIPULSE (light bg)
   ============================================================ */
.section-digipulse {
  background: #ffffff;
}

.section-digipulse .eyebrow {
  color: var(--purple);
}

.section-digipulse .product-heading {
  color: var(--text-dark);
}

.section-digipulse .product-body {
  color: var(--text-dark);
}

.section-digipulse .feat-text h4 {
  color: var(--text-dark);
}

.section-digipulse .feat-text p {
  color: var(--text-dark);
}

/* image right */
.col-text-left {
  order: 1;
}

.col-image-right {
  order: 2;
}

/* ============================================================
   05 — 1000EYES (dark bg)
   ============================================================ */
.section-1000eyes {
  background: var(--navy);
}

.section-1000eyes .eyebrow {
  color: var(--yellow);
}

.section-1000eyes .product-heading {
  color: #fff;
}

.section-1000eyes .product-body {
  color: #fff;
}

.section-1000eyes .feat-text h4 {
  color: #fff;
}

.section-1000eyes .feat-text p {
  color: var(--text-light);
}

/* image left */
.col-image-left {
  order: 1;
}

.col-text-right {
  order: 2;
}

/* ============================================================
   06 — SMARTCOOK (light bg)
   ============================================================ */
.section-smartcook {
  background: #ffffff;
}

.section-smartcook .eyebrow {
  color: var(--purple);
}

.section-smartcook .product-heading {
  color: var(--text-dark);
}

.section-smartcook .product-body {
  color: var(--text-dark);
}

.section-smartcook .feat-text h4 {
  color: var(--text-dark);
}

.section-smartcook .feat-text p {
  color: var(--text-dark);
}

/* ============================================================
   07 — SMARTPREP (grey bg)
   ============================================================ */
.section-smartprep {
  background: var(--grey-light);
}

.section-smartprep .product-img {
  width: 100%;
}

.section-smartprep .two-col {
  gap: 64px;
}

.section-smartprep .eyebrow {
  color: var(--purple);
}

.section-smartprep .product-heading {
  color: #000000;
}

.section-smartprep .product-body {
  color: var(--text-body);
}

.section-smartprep .feat-text h4 {
  color: var(--navy);
}

.section-smartprep .feat-text p {
  color: var(--navy);
}

/* ============================================================
   08 — QUOTE BANNER
   ============================================================ */
.section-quote {
  background: var(--purple);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 16px;
  border-radius: 10px;
}

.section-quote .orb-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.section-quote .orb-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.quote-orb {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  filter: blur(60px);
  background: #fff;
  pointer-events: none;
}

.quote-orb-left {
  width: 520px;
  height: 320px;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
}

.quote-orb-right {
  width: 560px;
  height: 560px;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
}

.quote-text {
  position: relative;
  z-index: 1;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  font-style: normal;
}

/* ============================================================
   09 — WHO WE ARE (light bg)
   ============================================================ */
.section-who {
  background: #ffffff;
  padding: 128px 0;
}

.section-who .eyebrow {
  color: var(--purple);
}

.section-who .who-heading {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.section-who .who-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.who-img {
  border-radius: 12px;
  width: 100%;
}

/* ============================================================
   10 — JOURNEY (dark bg)
   ============================================================ */
.section-journey {
  background: var(--navy);
  padding: 133px 0;
}

.journey-header {
  margin-bottom: 64px;
}

.journey-header .eyebrow {
  color: var(--eyebrow-dark);
}

.journey-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
  max-width: 100%;
}

.journey-header p {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  max-width: 70%;
  line-height: 1.5;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.phase-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  overflow: visible;
  padding-top: 16px;
  position: relative;
}

.phase-illustration {
  height: 202px;
  background: #f2f4f6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.phase-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  left: -16px;
  border: 5px solid #001836;
  z-index: 2;
}

.phase-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--phase-eyebrow);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}

.phase-name {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.phase-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-grey);
  line-height: 1.6;
}

.phase-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phase-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.phase-tag::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: var(--purple);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='%23001836' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   11 — BLOG (white bg)
   ============================================================ */
.section-blog {
  background: #ffffff;
  padding: 128px 0;
}

.blog-header {
  margin-bottom: 64px;
}

.blog-header .eyebrow {
  color: var(--purple);
}

.blog-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.blog-header p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  max-width: 800px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-img-wrap {
  height: 230px;
  background: var(--text-dark);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============================================================
   SECTION-LIGHT-WRAPPER (12-Full-Stack + 12-Results)
   ============================================================ */
.section-light-wrapper {
  margin: 16px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #E7EBF1 0%, #FFFFFF 100%);
  padding: 128px 0;
}

/* ============================================================
   12 — FULL STACK
   ============================================================ */
.fullstack-header {
  margin-bottom: 64px;
  text-align: center;
}

.fullstack-header .eyebrow {
  color: var(--purple);
}

.fullstack-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--navy-icon);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.fullstack-header p {
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-icon);
  max-width: 700px;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 72px;
  margin-bottom: 72px;
}

.stack-card {
  background: linear-gradient(135deg, #E8ECF2 38%, rgba(255, 255, 255, 0.8) 63%);
  border: 2px solid rgba(115, 146, 186, 0.36);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 300px;
}

.stack-icon {
  width: 76px;
  height: 76px;
  background: #F3EEFB;
  border-radius: 7.75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.stack-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-icon);
  margin-bottom: 8px;
}

.stack-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy-icon);
  line-height: 1.6;
}

.stack-cta {
  text-align: center;
}

/* ============================================================
   12 — RESULTS
   ============================================================ */
.results-section {
  padding-top: 128px;
  margin-bottom: 60px;
}

.results-header {
  margin-bottom: 48px;
  text-align: center;
}

.results-header .eyebrow {
  color: var(--purple);
}

.results-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--navy-icon);
  margin-bottom: 20px;
}

.results-header p {
  font-size: 22px;
  font-weight: 400;
  color: #8d8aae;
  max-width: 780px;
  line-height: 1.5;
  margin: 0 auto;
}

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

.stat-block {
  text-align: center;
  padding: 0;
}

.stat-number {
  font-size: 64px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 36px;
  font-weight: 600;
  color: var(--navy-icon);
  margin-bottom: 12px;
  line-height: 1.2;
}

.stat-desc {
  font-size: 22px;
  font-weight: 400;
  color: var(--navy-icon);
  line-height: 1.5;
}

/* ============================================================
   13 — CTA
   ============================================================ */
.section-cta {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

#cta .orb {
  opacity: 0.5;
}

#cta .orb-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#cta .orb-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}



.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted-b);
  line-height: 1.5;
  margin-bottom: 40px;
}

/* ============================================================
   14 — FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 100px var(--side-pad);
  border-top: 1px solid #312d5c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 284px 1fr 301px;
  gap: 60px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-taglines {
  margin-top: 24px;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
}

.footer-taglines span {
  opacity: .55;
  font-weight: 400;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
}

.footer-nav {
  padding: 0 24px;
  border-left: 2px solid rgba(255, 255, 255, .15);
  border-right: 2px solid rgba(255, 255, 255, .15);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: opacity .2s;
}

.footer-nav a:hover {
  opacity: .7;
}

.footer-contact h4 {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--ff);
  font-size: 15px;
  color: var(--text-dark);
}

.form-input:focus {
  outline: 2px solid var(--purple);
}

.form-input::placeholder {
  color: #aaa;
}

.btn-submit {
  height: 45px;
  background: transparent;
  border: 2px solid var(--purple);
  border-radius: 10px;
  color: #fff;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.btn-submit:hover {
  background: var(--purple);
}

/* ============================================================
   HAMBURGER — hidden on desktop
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ============================================================
   RESPONSIVE — stack at 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --side-pad: 20px;
  }

  /* Container */
  .container {
    padding: 0 20px;
  }

  /* Nav */
  #navbar {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px 20px;
  }

  .nav-cta-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    padding: 120px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    justify-items: center;
  }

  .hero-headline {
    text-align: center;
    font-size: 48px;
  }

  .hero-sub {
    font-size: 16px;
    text-align: center;
  }

  .hero-sub::before {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    padding-bottom: 120px;
  }

  .hero-img-wrap {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  /* Orbs */
  .purple-wrapper .orb-left,
  .purple-wrapper .orb-right,
  .purple-wrapper .decor-line {
    display: none;
  }

  .section-quote .orb-left,
  .section-quote .orb-right {
    display: none;
  }

  .section-cta .orb-left,
  .section-cta .orb-right {
    display: none;
  }

  /* Wrappers */
  .purple-wrapper {
    margin: 8px;
    padding: 60px 0;
  }

  .section-light-wrapper {
    margin: 8px;
    padding: 60px 0;
  }

  .section-quote {
    margin: 8px;
    padding: 60px 0;
  }

  /* Two-col sections */
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .col-image-left,
  .col-text-right,
  .col-text-left,
  .col-image-right {
    order: 0;
  }

  .col-image-left {
    order: -1;
  }

  .section-digipulse .two-col {
    display: flex;
    flex-direction: column;
  }

  .section-digipulse .col-image-right {
    order: -1;
  }

  .section-smartcook .two-col {
    display: flex;
    flex-direction: column;
  }

  .section-smartcook .col-image-right {
    order: -1;
  }

  /* Sections */
  .section-product {
    padding: 60px 0;
  }

  .section-journey {
    padding: 60px 0;
  }

  .section-blog,
  .section-who {
    padding: 60px 0;
  }

  .section-cta {
    padding: 60px 0;
  }

  /* Headings */
  .problem-heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .solutions-header {
    text-align: center;
  }

  .solutions-header h2 {
    font-size: 24px;
  }

  .product-heading {
    font-size: 28px;
  }

  .journey-header h2 {
    font-size: 28px;
  }

  .blog-header h2 {
    font-size: 28px;
  }

  .fullstack-header h2 {
    font-size: 32px;
  }

  .results-header h2 {
    font-size: 32px;
  }

  .cta-heading {
    font-size: 26px;
  }

  .quote-text {
    font-size: 18px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 24px;
  }

  /* Grids */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .sol-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .sol-card .icon-container {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .sol-card p {
    font-size: 14px;
  }

  .phase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .stack-card {
    text-align: center;
    align-items: center;
  }

  .stack-card .stack-icon {
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-block {
    padding: 0;
    border-bottom: 1px solid #e8e8f0;
    padding-bottom: 32px;
  }

  .stat-block:last-child {
    border-bottom: none;
  }

  /* Footer */
  .footer {
    padding: 60px 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    border: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 32px 0;
  }

  .footer-nav ul {
    padding: 0;
  }

  .footer-taglines {
    align-items: center;
  }

  .footer a img {
    display: block;
    margin: 0 auto 24px;
  }
}