/* ============================================================
   FormDays — style inspired by bold agency aesthetic:
   dark navy, condensed uppercase display type, bright bubbles
   ============================================================ */

:root {
  --navy: #2C444E;
  --navy-2: #35525E;
  --orange: #E1A36F;
  --orange-deep: #CE8B52;
  --red: #9C6233;
  --purple: #A9C6C2;
  --purple-deep: #4E727C;
  --green: #6F9F9C;
  --lime: #E2D8A5;
  --yellow: #DEC484;
  --cream: #FFFFFF;
  --paper: #F6F5F2;
  --ink: #2C444E;
  --grey: #5B6572;
  --grey-light: #AEB6C2;
  --radius: 26px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* color helpers */
.c-white  { color: #fff; }
.c-purple { color: var(--purple); }
.c-orange { color: var(--orange); }
.c-navy   { color: var(--navy); }
.c-grey   { color: var(--grey-light); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn__arrow { width: 15px; height: 15px; transition: transform 0.2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { box-shadow: 0 10px 30px rgba(255, 255, 255, 0.18); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { box-shadow: 0 10px 26px rgba(44, 68, 78, 0.35); }
.btn--orange { background: var(--navy); color: #fff; }
.btn--orange:hover { background: #223740; }
.btn--ghost { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: #fff; }
.btn--lg { padding: 18px 34px; font-size: 0.88rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.3rem;
}

/* wordmark: slab serif with offset accent bars */
.logo-type {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 0.3em 0 0.28em;
}
.logo-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.03em;
  width: 40%;
  height: 0.12em;
  background: var(--orange);
}
.logo-type::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 37%;
  width: 20%;
  height: 0.12em;
  background: #9CAF9A;
}
.nav__links {
  display: flex;
  gap: 26px;
  margin-left: 12px;
  flex: 1;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--orange); }
.nav__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav__cta { padding: 12px 22px; }

/* language switch */
.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang-switch__btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-switch__btn.is-active { background: var(--orange); color: var(--navy); }
.lang-switch__btn:not(.is-active):hover { color: #fff; }

/* ============ Hero ============ */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 24px 96px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 7.2rem);
  margin-bottom: 30px;
}
.hero__line { display: block; }
.hero__line .hero__spring {
  display: inline-block;
  width: 0.62em;
  height: 0.62em;
  vertical-align: -0.05em;
  margin-left: 0.12em;
  animation: bounce 3s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}
/* inline hero illustration */
.hero__art {
  display: inline-block;
  width: 1.55em;
  vertical-align: -0.12em;
  margin: 0 0.1em;
  transform: rotate(-5deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.hero__art:hover {
  transform: rotate(2deg) scale(1.1);
}
.hero__art svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
  animation: artFloat 5s ease-in-out infinite;
}
@keyframes artFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__badge {
  position: absolute;
  top: 6px;
  right: 4%;
  width: clamp(70px, 9vw, 116px);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__sub {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* decorations */
.deco {
  position: absolute;
  font-size: 1.6rem;
  line-height: 1;
  pointer-events: none;
}
.deco--plus { color: #A9C6C2; font-weight: 700; }
.deco--star { color: var(--yellow); }
.deco--p1 { top: 18%; left: 3%; font-size: 2rem; }
.deco--p2 { bottom: 34%; right: 6%; color: #6F9F9C; }
.deco--s1 { top: 42%; left: 8%; font-size: 1.8rem; color: var(--purple); }
.deco--s2 { top: 10%; right: 18%; font-size: 1.2rem; }
.deco--cta1 { top: 14%; left: 8%; font-size: 2rem; color: var(--purple); }
.deco--cta2 { bottom: 20%; right: 8%; font-size: 2rem; color: #6F9F9C; }

/* hero stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 64px auto 0;
}
.stat-bubble {
  border-radius: 22px;
  padding: 22px 24px;
  text-align: left;
  position: relative;
  color: var(--navy);
}
.stat-bubble::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 26px;
  width: 26px;
  height: 20px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.stat-bubble--green  { background: #E1A36F; }
.stat-bubble--lime   { background: var(--lime); }
.stat-bubble--purple { background: var(--purple); }
.stat-bubble__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  display: block;
  margin-bottom: 4px;
}
.stat-bubble__label { font-size: 0.82rem; font-weight: 600; line-height: 1.4; display: block; padding-right: 20px; }
.stat-bubble__arrow { width: 15px; height: 15px; position: absolute; top: 22px; right: 20px; }

/* ============ Curved section dividers ============ */
.divider {
  line-height: 0;
  color: var(--navy);
  background: transparent;
  margin-top: -1px;
}
.divider svg {
  display: block;
  width: 100%;
  height: clamp(44px, 8vw, 110px);
}
.divider--flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

/* ============ Sections ============ */
.section { padding: 104px 0; }
.section--tight { padding: 84px 0; }
.section--dark { background: var(--navy); color: #fff; }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
}
.section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow--purple { color: var(--purple-deep); }
.eyebrow--onDark { color: var(--orange); }
.section__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  max-width: 640px;
}
.section__title--onDark { max-width: 800px; }
.section__lead {
  max-width: 360px;
  color: var(--grey);
  font-size: 0.95rem;
}
.section__lead--onDark { color: rgba(255,255,255,0.7); max-width: 480px; margin-top: 18px; }

/* ============ Bubble cards (services) ============ */
.bubble-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.bubble {
  border-radius: var(--radius);
  padding: 34px 30px 60px;
  color: #fff;
  position: relative;
  transition: transform 0.25s ease;
}
.bubble:hover { transform: translateY(-6px); }
.bubble::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 34px;
  width: 30px;
  height: 22px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.bubble--orange { background: var(--orange); }
.bubble--purple { background: var(--purple); }
.bubble--red    { background: var(--red); }
.bubble--green  { background: var(--green); }
.bubble--navy   { background: var(--navy); }
.bubble--yellow { background: var(--yellow); color: var(--navy); }
.bubble--orange, .bubble--purple, .bubble--green { color: var(--navy); }
.bubble h3 { font-size: 1.45rem; margin-bottom: 14px; }
.bubble p { font-size: 0.88rem; opacity: 0.92; line-height: 1.55; }
.bubble__arrow {
  position: absolute;
  bottom: 22px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: transform 0.2s ease;
}
.bubble__arrow svg { width: 14px; height: 14px; }
.bubble:hover .bubble__arrow { transform: rotate(45deg); }

/* ============ Why ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.why-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}
.why-item h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-item p { color: var(--grey); font-size: 0.92rem; }

/* ============ Work / case fan ============ */
.section--work { padding-top: 0; }
.work-card {
  position: relative;
  border-radius: 34px;
  padding: 72px 56px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #4E727C 0%, #6F9F9C 55%, #E1A36F 100%);
  isolation: isolate;
}
.work-card__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.work-card__blob--blue {
  width: 55%; height: 90%;
  right: -12%; top: -20%;
  background: radial-gradient(circle at 40% 40%, #577E89 0%, #3A5560 60%, transparent 75%);
  animation: blobFloat 16s ease-in-out infinite alternate;
}
.work-card__blob--pink {
  width: 42%; height: 70%;
  left: -10%; bottom: -25%;
  background: radial-gradient(circle at 60% 40%, #DEC484 0%, #C0A055 55%, transparent 75%);
  animation: blobFloat 13s ease-in-out infinite alternate-reverse;
}
.work-card__blob--purple {
  width: 34%; height: 55%;
  left: 30%; top: -18%;
  background: radial-gradient(circle at 50% 60%, #E2D8A5 0%, transparent 70%);
  animation: blobDrift 19s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  from { transform: translate(0, 0) scale(1) rotate(0deg); }
  to   { transform: translate(-8%, 10%) scale(1.18) rotate(24deg); }
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(14%, 12%) scale(1.25); }
}
.work-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow--onWork { color: #DEC484; }
.work-card__title { color: #fff; margin-bottom: 18px; }
.work-card__lead {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  max-width: 380px;
  margin-bottom: 26px;
}
.work-card__tags { display: flex; flex-wrap: wrap; gap: 10px; }

/* the fanned stack */
.fan {
  position: relative;
  aspect-ratio: 5 / 4;
  perspective: 1200px;
}
.fan__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 66%;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #2C444E;
  border: 4px solid #fff;
  box-shadow: 0 22px 55px rgba(10, 12, 40, 0.45);
  /* fan spread driven by card index --i (0..3) */
  --mid: 1.5;
  --step: calc(var(--i) - var(--mid));
  --rot: calc(var(--step) * 7deg);
  --shift: calc(var(--step) * 13%);
  --lift: calc(var(--step) * var(--step) * 1.6%);
  transform: translate(calc(-50% + var(--shift)), calc(-50% + var(--lift))) rotate(var(--rot));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  cursor: pointer;
  z-index: calc(1 + var(--i));
}
.fan__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* container hover: spread the fan wider */
.fan:hover .fan__card {
  --rot: calc(var(--step) * 10deg);
  --shift: calc(var(--step) * 20%);
}
/* individual card hover: straighten, lift, come to front */
.fan .fan__card:hover {
  --rot: 0deg;
  --lift: -6%;
  transform: translate(calc(-50% + var(--shift)), calc(-50% + var(--lift))) rotate(var(--rot)) scale(1.12);
  box-shadow: 0 34px 80px rgba(10, 12, 40, 0.6);
  z-index: 10;
}
.fan__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(44, 68, 78, 0.9);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.72rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.fan__label strong { font-size: 0.78rem; }
.fan__label span { opacity: 0.75; }
.fan__card:hover .fan__label { opacity: 1; transform: translateY(0); }

/* ============ Process steps ============ */
.steps { display: grid; gap: 26px; }
.step {
  border-radius: var(--radius);
  padding: 44px 46px;
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 60px;
  width: 30px;
  height: 22px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.step--orange { background: var(--orange); }
.step--purple { background: var(--purple-deep); }
.step--green  { background: var(--green); }
.step--navy   { background: var(--navy); }
.step--orange, .step--green { color: var(--navy); }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
}
.step__body h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: 10px; }
.step__body p { font-size: 0.92rem; opacity: 0.92; max-width: 520px; }
.step__tags { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

.tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.tag--yellow { background: var(--yellow); color: var(--navy); }
.tag--white  { background: #fff; color: var(--navy); }
.tag--navy   { background: var(--navy); color: #fff; }
.tag--orange { background: var(--orange); color: #fff; }
.tag--red    { background: var(--red); color: #fff; transform: rotate(-4deg); }

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 900px;
  margin: 56px auto 0;
}
.price-card {
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: var(--orange);
  color: var(--navy);
}
.price-card--featured::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 40px;
  width: 30px;
  height: 22px;
  background: var(--orange);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.price-card__flag {
  position: absolute;
  top: -16px;
  left: 32px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  transform: rotate(-3deg);
}
.price-card__head h3 { font-size: 1.6rem; margin-bottom: 8px; }
.price-card__head p { font-size: 0.88rem; opacity: 0.8; min-height: 42px; }
.price-card__price {
  font-family: var(--font-display);
  font-size: 3.4rem;
  margin: 22px 0 2px;
  line-height: 1;
}
.price-card__cur { font-size: 1.4rem; }
.price-card__terms {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-bottom: 26px;
}
.price-card__list { flex: 1; margin-bottom: 30px; display: grid; gap: 11px; }
.price-card__list li {
  font-size: 0.9rem;
  padding-left: 28px;
  position: relative;
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--green);
}
.price-card--featured .price-card__list li::before { color: var(--navy); }

/* ============ Quote / testimonial ============ */
.quote { max-width: 900px; margin: 0 auto; }
.quote__mark { display: block; width: 48px; margin-bottom: 22px; }
.quote__text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.08;
}
.quote__by { margin-top: 22px; color: var(--grey); font-size: 0.9rem; font-weight: 600; }

/* ============ About ============ */
.about-statement {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  text-align: center;
  max-width: 940px;
  margin: 0 auto 76px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about__heading { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 20px; }
.about__p { color: var(--grey); font-size: 0.97rem; max-width: 500px; }
.about__p + .about__p { margin-top: 16px; }
.about__btn { margin-top: 30px; }
.about__art {
  position: relative;
  padding: 10px 18px 26px 10px;
}
.about__art-card {
  background: var(--purple);
  border-radius: 30px;
  padding: 34px 26px 26px;
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about__art-card::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 44px;
  width: 32px;
  height: 24px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
.about__art:hover .about__art-card { transform: rotate(0deg) scale(1.02); }
.about__art-card svg { width: 100%; height: auto; display: block; }
.about__tag {
  position: absolute;
  box-shadow: 0 10px 26px rgba(44, 68, 78, 0.22);
  font-size: 0.82rem;
  padding: 9px 18px;
}
.about__tag--1 { top: -6px; left: -12px; transform: rotate(-6deg); }
.about__tag--2 { bottom: 4px; left: 8%; transform: rotate(3deg); }
.about__tag--3 { top: 38%; right: -10px; transform: rotate(6deg); }
.about__deco1 { top: -20px; right: 16%; color: var(--yellow); font-size: 1.6rem; }
.about__deco2 { bottom: 10%; right: -22px; color: #6F9F9C; font-size: 1.8rem; }

/* ============ Founder ============ */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 76px;
  align-items: center;
}
.founder__media {
  position: relative;
  padding: 14px 18px 18px 14px;
}
.founder__frame { position: relative; }
.founder__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--purple);
  border-radius: var(--radius);
  transform: rotate(-4deg) translate(-12px, 12px);
}
.founder__frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.founder__media:hover .founder__frame img { transform: rotate(1.5deg) scale(1.02); }
.founder__tag {
  position: absolute;
  box-shadow: 0 10px 26px rgba(44, 68, 78, 0.25);
  font-size: 0.82rem;
  padding: 9px 18px;
  z-index: 2;
}
.founder__tag--1 { top: 2px; left: -8px; transform: rotate(-5deg); }
.founder__tag--2 { bottom: 26px; right: -12px; transform: rotate(4deg); }
.founder__deco1 { top: -16px; right: 10%; color: var(--yellow); font-size: 1.7rem; }
.founder__deco2 { bottom: -6px; left: 12%; color: #6F9F9C; font-size: 1.8rem; }
.founder__text .section__title { margin-bottom: 22px; }
.founder__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* ============ FAQ ============ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.faq__intro .section__title { margin-bottom: 20px; }
.faq__intro .section__lead { max-width: 320px; }
.faq__list { display: grid; gap: 6px; }
.faq__item { border-bottom: 1px solid #E7E5E0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  position: relative;
  transition: background 0.2s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; transition: opacity 0.15s ease; }
.faq__item[open] .faq__icon { background: var(--purple-deep); }
.faq__item[open] .faq__icon::after { opacity: 0; }
.faq__item p {
  padding: 0 46px 24px 0;
  color: var(--grey);
  font-size: 0.92rem;
}

/* ============ CTA ============ */
.cta { padding: 40px 24px 110px; }
.cta__card {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 34px;
  padding: 84px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta__inner { max-width: 760px; margin: 0 auto; }
.cta__tag { margin-bottom: 26px; display: inline-block; }
.cta__title {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  margin: 0 0 18px;
}
.cta__sub {
  max-width: 560px;
  margin: 0 0 44px;
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
}
/* contact form */
.cta__sticker {
  position: absolute;
  top: 44px;
  right: 52px;
  transform: rotate(6deg);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.cta__form {
  display: grid;
  gap: 36px;
}
.cta__form[hidden] { display: none; }
.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.form-field { display: grid; justify-items: start; }

/* sticker-chip labels sitting on the field */
.form-field label {
  position: relative;
  z-index: 2;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  transform: rotate(-2deg);
  margin: 0 0 -15px 22px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}
.form-field label[for="cf-email"],
.form-field label[for="cf-plan"] {
  background: var(--purple);
  transform: rotate(1.5deg);
}
.form-field label[for="cf-industry"],
.form-field label[for="cf-msg"] {
  background: #fff;
  transform: rotate(-1.5deg);
}
.form-field .req { color: var(--red); }

/* fields: soft cream slabs with hard offset shadow */
.cta__form input,
.cta__form select,
.cta__form textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 22px;
  padding: 24px 26px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  outline: none;
  box-shadow: 6px 6px 0 rgba(225, 163, 111, 0.9);
  transition: box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta__form textarea {
  border-radius: 26px;
  resize: vertical;
  min-height: 150px;
}
.cta__form input::placeholder,
.cta__form textarea::placeholder { color: var(--grey-light); font-weight: 400; }
.cta__form input:hover:not(:focus),
.cta__form select:hover:not(:focus),
.cta__form textarea:hover:not(:focus) {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 rgba(225, 163, 111, 1);
}
/* focus: lift and flip the shadow to sea nymph */
.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--green);
}
.cta__form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23E1A36F'/%3E%3Cpath d='M5 7l3 3 3-3' fill='none' stroke='%232C444E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  cursor: pointer;
}
.cta__form select option { color: var(--navy); background: #fff; }
.cta__form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
}
.cta__form-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}
.cta__form-footer .btn--light { background: var(--orange); color: var(--navy); }
.cta__form-footer .btn--light:hover { box-shadow: 0 12px 30px rgba(225, 163, 111, 0.35); }

/* ============ Footer ============ */
.footer { padding: 20px 0 40px; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-top: 30px;
  padding-bottom: 40px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.footer__brand p { max-width: 340px; color: var(--grey); font-size: 0.9rem; }
.footer__links { display: grid; gap: 12px; }
.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}
.footer__links a:hover { color: var(--orange); }
.footer__chev {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 800;
  padding-bottom: 2px;
}
.footer__bottom {
  border-top: 1px solid #E7E5E0;
  padding-top: 22px;
  color: var(--grey);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ Cookie banner ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.btn--gold { background: var(--orange); color: var(--navy); }
.btn--gold:hover { box-shadow: 0 12px 30px rgba(225, 163, 111, 0.35); }

.cookies {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 300;
  max-width: 470px;
  width: calc(100% - 44px);
}
.cookies[hidden] { display: none; }
.cookies__card {
  background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 34px 30px 28px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 90px rgba(20, 33, 41, 0.55);
  animation: cookiePop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cookiePop {
  from { opacity: 0; transform: translateY(28px) scale(0.95) rotate(-1deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
.cookies__chip {
  position: absolute;
  top: -15px;
  left: 26px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.cookies__card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.cookies__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}

/* preference rows */
.cookies__prefs { margin-bottom: 20px; }
.cookies__prefs[hidden] { display: none; }
.cookies__row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}
.cookies__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 5px;
}
.cookies__row-head strong {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cookies__row p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  padding-right: 60px;
}
.cookies__always {
  background: var(--lime);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* toggle switch */
.switch { position: relative; display: inline-flex; cursor: pointer; }
.switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.switch__track {
  width: 48px;
  height: 27px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  transition: background 0.25s ease;
  flex: none;
}
.switch__track::after {
  content: "";
  position: absolute;
  top: 3.5px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
}
.switch input:checked + .switch__track { background: var(--green); }
.switch input:checked + .switch__track::after { transform: translateX(20px); background: var(--navy); }
.switch input:focus-visible + .switch__track { outline: 2px solid var(--orange); outline-offset: 2px; }

/* actions */
.cookies__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cookies__actions .btn { padding: 13px 22px; font-size: 0.76rem; }
.cookies__ghost { border-color: rgba(255, 255, 255, 0.3); }
.cookies__toggle {
  background: none;
  border: none;
  color: var(--purple);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.15s ease;
}
.cookies__toggle:hover { color: #fff; }
.cookies__toggle[hidden] { display: none; }
.cookies__actions .btn[hidden] { display: none; }

/* form success state */
.cta__success {
  text-align: center;
  padding: 34px 0 10px;
  animation: cookiePop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta__success[hidden] { display: none; }
.cta__success-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.15);
}
.cta__success-icon svg { width: 32px; height: 32px; }
.cta__success h3 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta__success p {
  max-width: 460px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.cta__success p[hidden] { display: none; }
.cta__success-tag { display: inline-block; transform: rotate(-3deg); margin-bottom: 26px; }
.cta__success-again {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  color: var(--purple);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.cta__success-again:hover { color: #fff; }

/* footer cookie settings link */
.footer__cookies {
  background: none;
  border: none;
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
}
.footer__cookies:hover { color: var(--navy); }

@media (max-width: 640px) {
  .cookies { left: 12px; bottom: 12px; width: calc(100% - 24px); }
  .cookies__card { padding: 30px 22px 24px; }
  .cookies__row p { padding-right: 0; }
  .cookies__toggle { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cookies__card { animation: none; }
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__badge, .hero__spring, .work-card__blob, .hero__art svg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .bubble-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card { padding: 52px 32px; }
  .work-card__inner { grid-template-columns: 1fr; gap: 40px; }
  .fan { max-width: 560px; margin: 0 auto; width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section__head--center { align-items: center; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; gap: 56px; }
  .founder { grid-template-columns: 1fr; gap: 52px; }
  .founder__media { max-width: 440px; }
  .about__stat { right: 12px; bottom: -24px; }
  .step { grid-template-columns: auto 1fr; }
  .step__tags { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
}

@media (max-width: 640px) {
  .nav__cta { display: none; }
  .hero { padding: 56px 20px 72px; }
  .hero__badge { display: none; }
  .hero__stats { grid-template-columns: 1fr; margin-top: 48px; }
  .bubble-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { padding: 34px 26px; gap: 20px; }
  .section { padding: 72px 0; }
  .work-card { padding: 44px 20px; border-radius: 26px; }
  .fan__card { width: 74%; border-width: 3px; }
  .cta__form-row { grid-template-columns: 1fr; }
  .cta__sticker { display: none; }
  .about__tag--3 { right: 4px; }
  .cta__form-footer { flex-direction: column-reverse; align-items: stretch; text-align: center; }
  .cta__form-footer .btn { justify-content: center; }
  .cta__form-note { max-width: none; }
  .footer__inner { flex-direction: column; }
  .cta__card { padding: 64px 24px; }
  .deco { display: none; }
}
