:root {
  /* Palette brand (estratta dagli asset SVG) */
  --color-brand: #003057;
  /* IRINOX Navy */
  --color-accent: #007FC3;
  /* Accent Cyan */
  --color-brand-ink: #00243f;
  /* Navy scuro per titoli */
  --color-brand-contrast: #ffffff;
  --color-bg: #ffffff;
  /* background pagina */
  --color-surface: #F4F4F4;
  /* superfici alternate */
  --color-text: #1a1f2b;
  /* testo principale */
  --color-muted: #667085;
  /* testo attenuato */
  --color-border: #e6eaf0;
  /* bordi card/inputs */
  --color-divider: rgba(157, 157, 156, 0.4);
  /* linee guida da SVG */

  /* Tipografia con Titillium Web */
  --font-family: 'Titillium Web', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-size-base: 16px;
  --line-height-base: 1.5;
  --heading-1: clamp(2rem, 2.6vw, 3rem);
  --heading-2: clamp(1.5rem, 2vw, 2rem);

  /* Raggi/ombre/bordi */
  --radius: 12px;
  --shadow-1: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);
  --shadow-2: 0 8px 24px rgba(16, 24, 40, 0.12);
  --border-strong: 1px solid var(--color-border);
}

/* Reset minimo e tipografia */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height-base);
}

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

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

.skiplink {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skiplink:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .5rem 1rem;
  box-shadow: var(--shadow-1);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 20px;
}

.manifesto .container {
  padding-inline: 40px;
  max-width: 100%;
}

.manifesto .section-header {
  padding-left: 0;
  max-width: 60%;
  margin-top: 60px;
}

.manifesto .section-header h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

.manifesto .section-header p {
  color: #000000 !important;
  max-width: 100%;
}

.manifesto-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.manifesto-texts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.text-column {
  flex: 1;
}

.column-text {
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin: 0;
}

.manifesto-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .manifesto-texts {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .manifesto-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .manifesto .section-header h2 {
    white-space: nowrap;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  width: 100%;
  height: 72px;
  position: relative;
  margin: 0 auto;
  max-width: none;
}

.header-background {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 40%, calc(100% - 25px) 100%, 0 100%);
}

/* Logo Section */
.header-logo {
  position: absolute;
  left: 40px;
  top: 12px;
}

.header-logo img {
  display: block;
  height: 48px;
  width: auto;
}

/* Navigation */
.header-nav {
  position: absolute;
  left: 805px;
  top: 26px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  z-index: 3;
}

.nav-item {
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 27px;
  display: flex;
}

.nav-link {
  color: var(--color-brand);
  font-size: 18px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-arrow {
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
}

.arrow-tip {
  width: 8px;
  height: 7px;
  background: var(--color-brand);
  position: absolute;
  left: 30px;
  top: 8px;
  transform: rotate(90deg);
  transform-origin: top left;
}

.arrow-line {
  width: 22.50px;
  height: 30px;
  background: var(--color-brand);
  position: absolute;
  left: 30px;
  top: 15px;
  transform: rotate(90deg);
  transform-origin: top left;
}

/* CTA Button */
.header-cta {
  position: absolute;
  left: 1220px;
  top: 10px;
  overflow: hidden;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  z-index: 2;
}

.cta-button {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 12px) 100%, 0 100%, 0 18px);
}

.cta-left-edge {
  height: 52px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cta-left-edge .edge-top {
  width: 12px;
  height: 21px;
  background: var(--color-brand);
}

.cta-left-edge .edge-bottom {
  width: 12px;
  flex: 1;
  background: var(--color-brand);
}

.cta-content {
  padding: 14px 12px 14px 18px;
  background: var(--color-brand);
  outline: 1px var(--color-brand) solid;
  outline-offset: -1px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
}

.cta-text {
  color: white;
  font-size: 16px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  letter-spacing: 0.16px;
  text-decoration: none;
  white-space: nowrap;
}

.cta-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-right-edge {
  height: 52px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cta-right-edge .edge-top {
  width: 12px;
  flex: 1;
  background: var(--color-brand);
}

.cta-right-edge .edge-bottom {
  width: 12px;
  height: 21px;
  background: var(--color-brand);
}

/* Hero */
.section {
  padding: 64px 0;
}

.steps {
  background: linear-gradient(360deg, rgba(0, 48, 87, 0.15) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 127, 195, 0.20) 0%, rgba(0, 0, 0, 0) 100%), #ffffff;
  background-blend-mode: normal, multiply, normal;
  padding-bottom: 10px;
}

.steps .section-header {
  margin-top: 60px;
}

.steps .download-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  text-decoration: none;
  color: var(--color-brand);
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  letter-spacing: 0.16px;
  transition: opacity 0.2s ease;
}

.steps .download-link:hover {
  opacity: 0.8;
}

.steps .download-link .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps .download-link .icon img {
  width: 16px;
  height: 16px;
}

.steps-container {
  text-align: center;
}

.hero {
  position: relative;
  height: 90vh;
  color: #fff;
  overflow: hidden;
  padding: 0;
  margin-top: -72px;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #003057 0%, #1a4a6b 70%, #2d5a7a 100%);
}

.hero-inner {
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 40px;
  padding-top: 100px;
  padding-bottom: 20px;
  width: 420px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 86.4px;
  margin: 0 0 12px 0;
  color: #fff;
  width: 655px;
}

.hero .strapline {
  color: #fff;
  margin: 0 0 0 60px;
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.22px;
  width: 400px;
  text-align: center;
}

.hero .lead {
  color: #fff;
  margin: 40px 0 30px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 26.28px;
  letter-spacing: 0.18px;
  max-width: 380px;
  word-wrap: break-word;
}

.hero .note {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18.9px;
  width: 433px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: 50;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.store-section {
  margin-top: auto;
}

.store-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 9.6px;
  background: #fff;
  color: #000;
  padding: 9.6px;
  border-radius: 7.2px;
  width: 144px;
  height: 48px;
  text-decoration: none;
  overflow: hidden;
}

.store-icon {
  width: 24px;
  height: 28.8px;
  flex-shrink: 0;
}

.appstore-icon {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 29"><path d="M18.71 7.21a10.18 10.18 0 0 0-1.48-1.65c-.94-.81-2.55-1.57-4.2-1.38-1.52.18-3.01.94-3.96 1.95-.93 1-1.29 2.2-1.1 3.48.29 1.86 2.04 3.43 3.85 3.43 1.84 0 3.8-.95 4.89-2.83z" fill="black"/><path d="M7.82 28.8a1.81 1.81 0 0 0 1.81-1.81c0-.32-.08-.64-.24-.93L5.87 19.7a1.81 1.81 0 0 0-3.14 1.81l3.52 6.36c.35.62 1.01 1.01 1.71.93z" fill="black"/><path d="M16.18 28.8a1.81 1.81 0 0 0 1.57-.93l3.52-6.36a1.81 1.81 0 0 0-3.14-1.81l-3.52 6.36c-.16.29-.24.61-.24.93a1.81 1.81 0 0 0 1.81 1.81z" fill="black"/><path d="M12 17L5.74 5.26a1.81 1.81 0 1 0-3.14 1.81L12 28.8l9.4-21.73a1.81 1.81 0 1 0-3.14-1.81L12 17z" fill="black"/></svg>') no-repeat center;
  background-size: contain;
}

.playstore-icon {
  width: 25.2px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26 29"><path d="M0.11 13.75L17.91 28.8L13.61 20.59L0.11 13.75Z" fill="%23EA4335"/><path d="M11.5 8.23L25.2 20.59L11.5 8.23Z" fill="%23FBBC04"/><path d="M0 2.39L12.17 26.41L0 2.39Z" fill="%23EA4335"/><path d="M0.11 0L17.89 14.4L0.11 0Z" fill="%2334A853"/></svg>') no-repeat center;
  background-size: contain;
}

.store-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.6px;
}

.store-badge .overline {
  font-size: 10.8px;
  line-height: 10.8px;
  font-weight: 500;
  font-family: 'SF Compact Text', -apple-system, sans-serif;
}

.store-badge .brand {
  font-size: 21.6px;
  line-height: 21.6px;
  font-weight: 500;
  font-family: 'SF Compact Display', -apple-system, sans-serif;
}

.playstore .overline {
  font-size: 12px;
  font-family: 'Product Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.playstore .brand {
  width: 88.8px;
  height: 18px;
  background: black;
  border-radius: 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .06s ease, background-color .2s ease, color .2s ease;
}

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

.btn-primary {
  background: var(--color-brand);
  color: var(--color-brand-contrast);
  box-shadow: var(--shadow-1);
}

.btn-primary:hover {
  background: #002743;
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--color-brand);
}

.btn-ghost:hover {
  background: color-mix(in oklab, var(--color-accent) 10%, transparent);
}

/* Variante su hero: invert ghost su sfondo scuro */
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
}

/* Pulsanti esagonali (stile dal design) */
.btn-hex {
  position: relative;
  padding-inline: 24px;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
}

.btn-hex::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: inherit;
  border: 1.5px solid color-mix(in oklab, var(--color-accent) 70%, transparent);
  pointer-events: none;
  border-radius: 0;
  /* l’outline segue il clip-path */
}

/* Sezioni alternate su surface */
.section:nth-of-type(even) {
  background: var(--color-surface);
}

/* Manifesto */
.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.section-header p {
  color: var(--color-muted);
  margin: 0;
}

.section-header .section-subtitle {
  margin: 15px 0 20px 0;
}

.section-header .steps-subtitle {
  margin: 20px 0 40px 0;
}

.section-header .steps-main-title {
  font-size: 40px;
}

.tappe .section-header .steps-subtitle {
  color: var(--color-brand) !important;
  font-size: 16px;
  line-height: 26.28px;
  letter-spacing: 0.18px;
}

.section-subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 1%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin: 30px 0 40px 0;
}

.steps-main-title {
  font-family: var(--font-family);
  font-size: 64px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 1%;
  text-align: center;
  color: #003057;
  margin: 0 0 15px 0;
}

.steps-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1%;
  text-align: center;
  color: #000000 !important;
  margin: 10px 0 40px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

.triptych {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 30px 20px;
  box-shadow: none;
  text-align: left;
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 12px) 100%, 0% 100%, 0% 18px);
  position: relative;
}

.card .icon {
  margin: 0 0 10px 0;
  width: 145px;
  height: 145px;
}

@media (max-width: 640px) {
  .card .icon {
    width: 80px;
    height: 80px;
  }
}

.card h3 {
  margin-bottom: 0;
}

.card p {
  margin-top: 5px;
}

/* Steps */
.steps-cards {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  height: auto;
}

.step-card {
  background: #003057;
  padding: 20px 40px 30px 40px;
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 12px) 100%, 0% 100%, 0% 18px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: static;
  width: 100%;
  transition: all 0.4s ease;
  margin-bottom: 50px;
}

.step-card:nth-child(1) {
  position: static;
  z-index: 1;
}

.step-card:nth-child(2) {
  position: static;
  z-index: 2;
}

.step-card:nth-child(3) {
  position: static;
  z-index: 3;
}

.step-card .step-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.step-card .step-number {
  color: white;
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 18.9px;
  width: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.step-card .step-title {
  color: white;
  font-size: 26px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 36.4px;
  letter-spacing: 0.26px;
  margin: 0;
  flex: 1;
}

.step-card .step-divider {
  height: 1px;
  background-color: rgba(157, 157, 156, 0.4);
  width: 100%;
  margin: 10px 0;
}

.step-card .step-description {
  color: white;
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 26.28px;
  letter-spacing: 0.18px;
  margin: 0;
  opacity: 1;
  max-height: 200px;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

/* ANIMATION COMMENTED OUT
.step-card.collapsed .step-description {
  opacity: 0;
  max-height: 0;
  padding-left: 0;
  margin: 0;
}

.step-card.collapsed {
  padding-bottom: 20px;
}
*/

/* ANIMATION COMMENTED OUT
.step-card:nth-child(2).stacked {
  transform: translateY(-200px);
}

.step-card:nth-child(3).phase1 {
  transform: translateY(-200px);
}

.step-card:nth-child(3).phase2 {
  transform: translateY(-400px);
}
*/

/* Tappe */
.tappe .section-header {
  text-align: left;
}

.tappe .section-subtitle {
  text-align: left;
}

.tappe .steps-main-title {
  text-align: left;
}

.tappe .steps-subtitle {
  text-align: left;
}

.tappe .container {
  max-width: none;
  padding-inline: 40px;
}

.tappe-container {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.tappe-image {
  width: 550px;
  height: 600px;
}

.tappe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tappe-content {
  width: 1000px;
  display: flex;
  flex-direction: column;
}

.tappa-row {
  padding: 25px 30px;
  border-bottom: 1px solid rgba(157, 157, 156, 0.4);
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 50px;
}

.tappa-row:last-child {
  border-bottom: none;
}

.tappa-header {
  width: 280px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.tappa-number {
  width: 30px;
  height: 45px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--color-brand);
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 18.9px;
}

.tappa-title {
  width: 202px;
  color: var(--color-brand);
  font-size: 26px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 36.4px;
  letter-spacing: 0.26px;
  margin: 0;
}

.tappa-description {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.tappa-description p {
  width: 450px;
  color: black;
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 26.28px;
  letter-spacing: 0.18px;
  margin: 0;
}

/* Premi */
.premi {
  position: relative;
  color: white;
}

.premi-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.premi-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



.premi .container {
  position: relative;
  z-index: 2;
}

.premi .section-header {
  text-align: left;
}

.premi .section-subtitle {
  color: white;
  text-align: left;
}

.premi .steps-main-title {
  color: white;
  text-align: left;
}

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

/* Premi Cards */
.premi-cards {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
  padding: 0 20px;
}

.premio-card:nth-child(2) {
  margin-top: 200px;
}

.premio-card {
  width: 450px;
  background: white;
  clip-path: polygon(22px 0%, 100% 0%, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0% 100%, 0% 22px);
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.premio-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  clip-path: polygon(12px 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%, 0% 12px);
}

.premio-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.premio-category {
  color: black;
  font-size: 18px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 24.3px;
  letter-spacing: 0.18px;
  margin: 0;
}

.premio-description {
  color: black;
  font-size: 22px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 30.8px;
  letter-spacing: 0.22px;
  margin: 0;
}

/* Responsive Tappe */
@media (max-width: 992px) {
  .tappe-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .tappe-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 40px auto;
    align-self: center;
  }

  .tappe-image img {
    object-fit: contain;
  }

  .tappe-content {
    width: 100%;
  }

  .tappa-row {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
  }

  .tappa-header {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .tappa-description {
    align-items: center;
    text-align: center;
  }

  .tappa-description p {
    width: 100%;
    max-width: 600px;
  }
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

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

/* Enrollment Section */
.enrollment {
  padding: 120px 0;
  background: var(--color-bg);
}

.enrollment-content {
  max-width: 665px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.enrollment h2.enrollment-title {
  color: var(--color-brand) !important;
  font-size: 26px !important;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 39px !important;
  letter-spacing: 0.26px;
  margin: 0 !important;
}

.enrollment-description {
  color: var(--color-brand);
  font-size: 26px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 36.4px;
  letter-spacing: 0.26px;
  margin: 0;
}

.enrollment-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-brand);
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  letter-spacing: 0.16px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.enrollment-button:hover {
  opacity: 0.8;
}

.enrollment-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  height: 450px;
  background: linear-gradient(0deg, rgba(244, 244, 244, 0.15) 0%, rgba(244.37, 244.37, 244.37, 0) 100%), linear-gradient(180deg, #007FC3 0%, rgba(0, 127, 195, 0) 100%), #003057;
  background-blend-mode: normal, multiply, normal;
  color: white;
  overflow: hidden;
  position: relative;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  position: relative;
}

.footer-title {
  position: absolute;
  left: 40px;
  top: 64px;
  width: 600px;
  color: white;
  font-size: 36px;
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 48.6px;
  letter-spacing: 0.36px;
  margin: 0;
}

.footer-link {
  position: absolute;
  left: 40px;
  top: 180px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  letter-spacing: 0.16px;
  text-decoration: none;
}

.footer-link img {
  filter: brightness(0) invert(1);
}

.footer-app-section {
  position: absolute;
  left: 40px;
  top: 260px;
}

.footer-app-section .note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18.9px;
  margin: 0 0 20px 0;
}

.footer-app-section .store-row {
  display: flex;
  gap: 12px;
}

.footer-contacts {
  position: absolute;
  right: 40px;
  top: 240px;
  display: flex;
  gap: 231px;
}

@media (max-width: 640px) {
  .site-footer {
    height: 550px;
  }

  .footer-title {
    width: calc(100vw - 80px);
    font-size: 28px;
    line-height: 37.8px;
  }

  .footer-app-section {
    top: 360px;
  }

  .footer-contacts {
    left: 40px;
    right: auto;
    top: 220px;
  }

  .footer-divider {
    bottom: 75px;
  }
}

.footer-section h3 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18.9px;
  margin: 0 0 20px 0;
}

.footer-section p {
  color: white;
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 15px 0;
}

.footer-divider {
  position: absolute;
  bottom: 75px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  position: absolute;
  bottom: 30px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  display: flex;
  align-items: center;
}

.copyright-text {
  color: white;
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 18.9px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-link {
  color: white;
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  text-decoration: none;
}


.google-play {
  width: 88.8px;
  height: 18px;
  background: black;
}

/* Header shadow on scroll */
body.scrolled .site-header {}

/* Responsive */
@media (max-width: 1440px) {
  .hero-inner {
    max-width: 100vw;
    grid-template-columns: 45% 1fr;
  }

  .hero-content {
    padding-left: 3%;
  }


  .hero h1 {
    font-size: clamp(48px, 5vw, 72px);
    width: 100%;
  }

  .hero .strapline {
    width: 100%;
    margin-left: 0;
  }

  .hero .lead,
  .hero .note {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: 100vh;
    margin-top: 0;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .hero-content {
    padding: 80px 20px 40px;
    text-align: center;
    order: 1;
    height: auto;
    flex: none;
    width: 100%;
  }

  .hero-image {
    order: 2;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    z-index: 1;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center;
  }

  .store-section {
    margin-top: 20px;
  }

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

  .steps-list {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 1440px) {
  .header-nav {
    left: 650px;
  }

  .header-cta {
    left: 1020px;
    top: 10px;
  }
}

@media (max-width: 1200px) {
  .header-nav {
    left: 500px;
  }

  .header-cta {
    left: 870px;
    top: 10px;
  }
}

@media (max-width: 992px) {
  .header-nav {
    display: none;
  }

  .header-cta {
    right: 20px;
    left: auto;
    transform: scale(0.9);
  }
}

@media (max-width: 640px) {
  .header-container {
    height: 72px;
  }

  .header-logo {
    transform: scale(0.8);
    top: 20px;
    left: 20px;
  }

  .header-cta {
    right: 20px;
    top: 15px;
    transform: scale(0.7);
  }

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

  .triptych,
  .steps-list,
  .tappe-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
}