/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors from metoda design system */
  --metoda-blue: 202 57% 20%; /* #18324c */
  --dark-blue: 212 31% 69%; /* #89B0D7 */
  --rainy-blue: 212 31% 69%; /* #89B0D7 */
  --cloudy-blue: 218 73% 82%; /* #B3D2F1 */
  --mist-blue: 215 100% 88%; /* #C1DDFF */
  --steam-blue: 215 100% 96%; /* #EBF4FF */
  --cotton-blue: 215 100% 97%; /* #F0F7FF */
  
  /* Alert colors */
  --alert-green: 162 88% 48%; /* #1CD9A7 */
  --background-green: 102 64% 93%; /* #F1FAE8 */
  --alert-orange: 26 100% 52%; /* #FF830B */
  --background-orange: 27 85% 91%; /* #FCE9D5 */
  --alert-red: 0 74% 59%; /* #E84444 */
  --background-red: 0 100% 93%; /* #FFDEDE */
  
  /* Neutral colors */
  --pure-black: 0 0% 0%; /* #000000 */
  --dark-gray: 240 1% 25%; /* #3F4040 */
  --dusk-gray: 198 4% 47%; /* #75787A */
  --smoke-gray: 193 3% 64%; /* #9BA0A2 */
  --mist-gray: 0 0% 88%; /* #E1E1E1 */
  --steam-gray: 0 0% 98%; /* #F9F9F9 */
  --plain-white: 0 0% 100%; /* #FFFFFF */
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  
  /* Font sizes */
  --fs-h1: 2.1875rem; /* 35px */
  --fs-h2: 1.75rem; /* 28px */
  --fs-h3: 1.375rem; /* 22px */
  --fs-h4: 1.25rem; /* 20px */
  --fs-subtitle: 1.125rem; /* 18px */
  --fs-body-1: 1.125rem; /* 18px */
  --fs-body-2: 1rem; /* 16px */
  --fs-small: 0.875rem; /* 14px */
  --fs-caption: 0.75rem; /* 12px */
  --fs-overline: 0.625rem; /* 10px */
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  /* Layout */
  --container-max-width: 1200px;
  --header-height: 5rem;
  
  /* Border radius */
  --border-radius: 0.625rem; /* 10px */
  --border-radius-sm: 0.375rem;
  --border-radius-lg: 0.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsl(var(--mist-gray) / 0.05);
  --shadow: 0 1px 3px 0 hsl(var(--mist-gray) / 0.1), 0 1px 2px 0 hsl(var(--mist-gray) / 0.06);
  --shadow-md: 0 4px 6px -1px hsl(var(--mist-gray) / 0.1), 0 2px 4px -1px hsl(var(--mist-gray) / 0.06);
  --shadow-lg: 0 10px 15px -3px hsl(var(--mist-gray) / 0.1), 0 4px 6px -2px hsl(var(--mist-gray) / 0.05);
  --shadow-xl: 0 20px 25px -5px hsl(var(--mist-gray) / 0.1), 0 10px 10px -5px hsl(var(--mist-gray) / 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* ===== RESET & BASE ===== */
/* Updated */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body-2);
  line-height: 1.6;
  color: #3F4040;
  background-color: hsl(var(--plain-white));
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: hsl(var(--metoda-blue));
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: hsl(var(--metoda-blue));
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: hsl(var(--dark-blue));
}

ul {
  list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.section__title {
  margin-bottom: var(--spacing-md);
}

.section__subtitle {
  font-size: var(--fs-body-1);
  color: #3F4040;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: 2px solid transparent;
  border-radius: 80px;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-2);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.button--primary {
  background-color: rgb(48, 127, 226);
  color: hsl(var(--plain-white));
  border-color: rgb(48, 127, 226);
}

.button--primary:hover {
  background-color: rgba(48, 127, 226, 0.9);
  border-color: rgba(48, 127, 226, 0.9);
  color: hsl(var(--plain-white));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button--secondary {
  background-color: transparent;
  color: rgb(48, 127, 226);
  border-color: rgb(48, 127, 226);
}

.button--secondary:hover {
  background-color: rgb(48, 127, 226);
  color: hsl(var(--plain-white));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button--large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--fs-body-1);
}

.button--full {
  width: 100%;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.button__loading {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: hsl(var(--plain-white) / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--mist-gray));
  z-index: 1000;
  transition: all var(--transition-normal);
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  min-height: var(--header-height);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  min-width: 142px;
  max-width: 180px;
  max-height: calc(var(--header-height) - 1rem);
  height: auto;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav__list {
  display: flex;
  gap: var(--spacing-xl);
  margin: 0;
  padding: 0;
}

.nav__buttons {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav__link {
  font-weight: var(--fw-medium);
  color: hsl(var(--metoda-blue));
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover {
  color: hsl(var(--dark-blue));
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(var(--metoda-blue));
  transition: width var(--transition-normal);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: hsl(var(--metoda-blue));
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: calc(var(--header-height) + var(--spacing-4xl)) 0 var(--spacing-4xl);
  background: #EBF4FF;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
  min-height: 600px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-lg);
  color: hsl(var(--metoda-blue));
}

.hero__subtitle {
  font-size: var(--fs-body-1);
  color: #3F4040;
  margin-bottom: var(--spacing-xl);
  max-width: 500px;
}

.hero__cta {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}

.hero__stats {
  display: flex;
  gap: var(--spacing-xl);
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  color: hsl(var(--metoda-blue));
}

.stat__label {
  font-size: var(--fs-small);
  color: #3F4040;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__dashboard {
  background: hsl(var(--plain-white));
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--spacing-lg);
  width: 100%;
  max-width: 500px;
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid hsl(var(--mist-gray));
}

.dashboard__controls {
  display: flex;
  gap: var(--spacing-xs);
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: hsl(var(--mist-gray));
}

.control:nth-child(1) { background-color: hsl(var(--alert-red)); }
.control:nth-child(2) { background-color: hsl(var(--alert-orange)); }
.control:nth-child(3) { background-color: hsl(var(--alert-green)); }

.dashboard__title {
  font-weight: var(--fw-semibold);
  color: hsl(var(--metoda-blue));
  font-size: var(--fs-small);
}

.dashboard__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.metrics__row {
  display: flex;
  gap: var(--spacing-lg);
}

.charts__row {
  display: flex;
  gap: var(--spacing-lg);
  align-items: start;
}

.chart-container {
  flex: 1;
}

.chart__title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: hsl(var(--metoda-blue));
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm);
  background: hsl(var(--steam-gray));
  border-radius: var(--border-radius-sm);
}

.metric__label {
  font-size: var(--fs-small);
  color: hsl(var(--dusk-gray));
}

.metric__value {
  font-weight: var(--fw-bold);
  color: hsl(var(--metoda-blue));
  padding-left: 12px;
}

.chart {
  display: flex;
  gap: var(--spacing-xs);
  align-items: end;
  height: 60px;
  margin-top: var(--spacing-md);
}

.chart__bar {
  flex: 1;
  background: hsl(var(--metoda-blue));
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  min-height: 20%;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: barGrow 0.8s ease-out forwards;
}

.chart__bar:nth-child(1) { animation-delay: 0.1s; }
.chart__bar:nth-child(2) { animation-delay: 0.2s; }
.chart__bar:nth-child(3) { animation-delay: 0.3s; }
.chart__bar:nth-child(4) { animation-delay: 0.4s; }
.chart__bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* ===== PIE CHART ===== */
.pie-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.pie-chart__svg {
  width: 80px;
  height: 80px;
}

.pie-chart__legend {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.legend__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.legend__color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend__label {
  font-size: var(--fs-caption);
  color: hsl(var(--dusk-gray));
}

/* ===== CUSTOMER REFERENCES SECTION ===== */
.customers {
  padding: var(--spacing-4xl) 0;
  background: hsl(var(--plain-white));
}

.customers__slider-full {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
}

.customers__slider {
  margin-top: 0;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.customers__slider::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 10px;
  background: linear-gradient(90deg, hsl(var(--steam-blue)), transparent 20%, transparent 80%, hsl(var(--steam-blue)));
  pointer-events: none;
  z-index: 2;
}

.customers__track {
  display: flex;
  animation: scroll 60s linear infinite;
  width: max-content;
}

.customers__logo {
  flex: 0 0 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-xl);
  padding: var(--spacing-md);
  background: hsl(var(--plain-white));
  border: 1px solid hsl(var(--mist-gray));
  border-radius: 80px;
  transition: all var(--transition-normal);
}

.customers__logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: hsl(var(--metoda-blue));
  z-index: 10;
  position: relative;
}

.customers__logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter var(--transition-normal);
}

.customers__logo:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 21 - var(--spacing-xl) * 21));
  }
}

/* Pause animation on hover */
.customers__slider:hover .customers__track {
  animation-play-state: paused;
}

.customer__placeholder {
  color: #9BA0A2;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-align: center;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: var(--spacing-4xl) 0;
  background: hsl(var(--plain-white));
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
}

.feature {
  text-align: center;
  padding: var(--spacing-xl);
  background: #EBF4FF;
  border-radius: var(--border-radius);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature__icon {
  width: 64px;
  height: 64px;
  background: hsl(var(--metoda-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: hsl(var(--plain-white));
}

.feature__icon svg {
  width: 28px;
  height: 28px;
}

.feature__title {
  margin-bottom: var(--spacing-md);
}

.feature__description {
  color: #3F4040;
  margin-bottom: 0;
}

/* ===== USE CASES SECTION ===== */
.use-cases {
  padding: var(--spacing-4xl) 0;
  background: #EBF4FF;
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-2xl);
}

.use-case {
  background: hsl(var(--plain-white));
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.use-case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.use-case__icon {
  width: 56px;
  height: 56px;
  background: hsl(var(--metoda-blue));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: hsl(var(--plain-white));
}

.use-case__icon svg {
  width: 24px;
  height: 24px;
}

.use-case__title {
  margin-bottom: var(--spacing-md);
}

.use-case__description {
  color: #3F4040;
  margin-bottom: var(--spacing-lg);
}

.use-case__benefits {
  list-style: none;
}

.use-case__benefits li {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-xs);
  color: #3F4040;
  font-size: var(--fs-small);
}

.use-case__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(var(--alert-green));
  font-weight: var(--fw-bold);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  padding: var(--spacing-4xl) 0;
  background: hsl(var(--plain-white));
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  display: none;
}

.step__icon {
  width: 80px;
  height: 80px;
  background: hsl(var(--steam-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: hsl(var(--metoda-blue));
  position: relative;
}

.step__icon svg {
  width: 32px;
  height: 32px;
}

.step__title {
  margin-bottom: var(--spacing-md);
}

.step__description {
  color: #3F4040;
  margin-bottom: 0;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.step__connector {
  width: 60px;
  height: 2px;
  background: hsl(var(--metoda-blue));
  position: relative;
}

.step__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid hsl(var(--dark-blue));
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: var(--spacing-4xl) 0;
  background: #EBF4FF;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive layout for pricing cards */
@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    max-width: 800px;
  }
  
  /* When free plan is present (3 cards) */
  .pricing__grid.pricing__grid--three-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
  }
}

.pricing__card {
  background: hsl(var(--plain-white));
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  border: 2px solid transparent;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing__card--featured {
  border-color: hsl(var(--metoda-blue));
  transform: scale(1.05);
}



.pricing__item i[data-feather="x"] {
  color: #dc2626;
}

.pricing__card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--metoda-blue));
  color: hsl(var(--plain-white));
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.pricing__title {
  margin-bottom: var(--spacing-md);
}

.pricing__price-container {
  margin-bottom: var(--spacing-md);
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.pricing__price--early {
  position: relative;
}

.pricing__price--regular {
  opacity: 0.7;
}

.pricing__price--regular .pricing__label {
  font-size: var(--fs-caption);
}

.pricing__price--regular .pricing__currency {
  font-size: var(--fs-body-2);
}

.pricing__price--regular .pricing__period {
  font-size: var(--fs-small);
}

.pricing__early-label {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: hsl(var(--alert-green));
  background: hsl(var(--background-green));
  display: block;
  text-align: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
  margin: 0 auto var(--spacing-sm);
  width: fit-content;
}

.pricing__label {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: hsl(var(--dusk-gray));
  display: block;
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

.pricing__amount-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing__currency {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: hsl(var(--metoda-blue));
}

.pricing__amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: hsl(var(--metoda-blue));
  margin: 0 var(--spacing-xs);
}

.pricing__amount--crossed {
  text-decoration: line-through;
  color: hsl(var(--dusk-gray));
  font-size: 1.5rem;
}

.pricing__period {
  font-size: var(--fs-body-2);
  color: hsl(var(--dusk-gray));
}

.pricing__description {
  color: hsl(var(--dusk-gray));
  margin-bottom: 0;
}

.pricing__features {
  margin-bottom: var(--spacing-xl);
}

.pricing__list {
  list-style: none;
}

.pricing__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  color: hsl(var(--dusk-gray));
}

.pricing__item svg {
  color: hsl(var(--alert-green));
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pricing__regular-price {
  text-align: center;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid hsl(var(--mist-gray));
}

.pricing__regular-label {
  font-size: var(--fs-small);
  color: hsl(var(--dusk-gray));
  margin-right: var(--spacing-xs);
}

.pricing__regular-amount {
  font-size: var(--fs-small);
  color: hsl(var(--dusk-gray));
  text-decoration: line-through;
  font-weight: var(--fw-medium);
}

.pricing__offer {
  text-align: center;
  margin-top: var(--spacing-3xl);
}

.offer {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: hsl(var(--background-green));
  color: hsl(var(--alert-green));
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius);
  font-weight: var(--fw-semibold);
}

.offer svg {
  width: 20px;
  height: 20px;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--spacing-4xl) 0;
  background: hsl(var(--plain-white));
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid hsl(var(--mist-gray));
  margin-bottom: var(--spacing-lg);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: hsl(var(--metoda-blue));
}

.faq__question h3 {
  margin-bottom: 0;
  font-size: var(--fs-body-1);
}

.faq__question svg {
  transition: transform var(--transition-normal);
  color: hsl(var(--metoda-blue));
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding-bottom: var(--spacing-lg);
}

.faq__answer p {
  color: hsl(var(--dusk-gray));
  margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--spacing-4xl) 0;
  background: hsl(var(--steam-blue));
}

.about__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.about__title {
  margin-bottom: var(--spacing-lg);
}

.about__description {
  color: hsl(var(--dusk-gray));
  margin-bottom: var(--spacing-lg);
}

.about__subtitle {
  font-size: var(--fs-h4);
  margin-bottom: var(--spacing-md);
}

.about__list {
  list-style: none;
}

.about__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  color: hsl(var(--dusk-gray));
}

.about__item svg {
  color: hsl(var(--metoda-blue));
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__metrics {
  background: hsl(var(--plain-white));
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__metrics .metric {
  background: none;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid hsl(var(--mist-gray));
  margin-bottom: var(--spacing-md);
  flex-direction: column;
}

.about__metrics .metric:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.about__metrics .metric__number {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: hsl(var(--metoda-blue));
  margin-bottom: var(--spacing-xs);
}

.about__metrics .metric__label {
  font-size: var(--fs-small);
  color: hsl(var(--dusk-gray));
}

/* ===== PRE-REGISTRATION SECTION ===== */
.pre-register {
  padding: var(--spacing-4xl) 0;
  background: hsl(var(--plain-white));
}

.pre-register__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pre-register__title {
  margin-bottom: var(--spacing-lg);
}

.pre-register__subtitle {
  color: hsl(var(--dusk-gray));
  margin-bottom: var(--spacing-lg);
}

.pre-register__launch-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  background: hsl(var(--background-green));
  color: hsl(var(--alert-green));
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius);
  margin: 0 auto var(--spacing-3xl);
  font-weight: var(--fw-semibold);
  width: fit-content;
}

.pre-register__launch-date svg {
  width: 18px;
  height: 18px;
}

.pre-register__form {
  text-align: left;
}

.form__group {
  margin-bottom: var(--spacing-lg);
}

.form__group--checkbox {
  margin-bottom: var(--spacing-md);
}

.form__checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  cursor: pointer;
}

.form__label {
  display: block;
  font-weight: var(--fw-semibold);
  color: hsl(var(--metoda-blue));
  margin-bottom: var(--spacing-xs);
}

.form__input {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid hsl(var(--mist-gray));
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: var(--fs-body-2);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus {
  outline: none;
  border-color: hsl(var(--metoda-blue));
  box-shadow: 0 0 0 3px hsl(var(--metoda-blue) / 0.1);
}

.form__input.error {
  border-color: hsl(var(--alert-red));
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  accent-color: hsl(var(--metoda-blue));
}



.form__checkbox-text {
  flex: 1;
  font-size: var(--fs-small);
  color: hsl(var(--dusk-gray));
  line-height: 1.4;
}

.form__checkbox-label {
  font-size: var(--fs-small);
  color: hsl(var(--dusk-gray));
  line-height: 1.4;
  cursor: pointer;
}

.form__link {
  color: hsl(var(--metoda-blue));
  text-decoration: underline;
}

.form__error {
  color: hsl(var(--alert-red));
  font-size: var(--fs-small);
  margin-top: var(--spacing-xs);
  display: none;
}

.form__error.show {
  display: block;
}

.form__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  background: hsl(var(--background-green));
  color: hsl(var(--alert-green));
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  margin-top: var(--spacing-lg);
  font-weight: var(--fw-semibold);
}

.form__success svg {
  width: 20px;
  height: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #3F4040;
  color: hsl(var(--plain-white));
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-4xl);
  margin-bottom: var(--spacing-3xl);
}

.footer__logo {
  min-width: 142px;
  height: auto;
  margin-bottom: var(--spacing-lg);
}

.footer__description {
  color: hsl(var(--plain-white));
  margin-bottom: var(--spacing-lg);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.footer__title {
  color: hsl(var(--plain-white));
  font-size: var(--fs-body-1);
  margin-bottom: var(--spacing-lg);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: var(--spacing-sm);
}

.footer__link {
  color: hsl(var(--plain-white));
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: hsl(var(--mist-blue));
}

.footer__social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(var(--plain-white) / 0.1);
  border-radius: 50%;
  color: hsl(var(--plain-white));
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: hsl(var(--plain-white));
  color: hsl(var(--metoda-blue));
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid hsl(var(--plain-white));
  padding-top: var(--spacing-xl);
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer__legal p {
  color: hsl(var(--plain-white));
  margin-bottom: 0;
}

.footer__legal-links {
  display: flex;
  gap: var(--spacing-lg);
}

/* ===== HUBSPOT FORM STYLING ===== */
#hubspotForm {
  max-width: 600px;
  margin: 0 auto;
}

#hubspotForm .hs-form {
  background: transparent !important;
  font-family: var(--font-body) !important;
}

#hubspotForm .hs-form-field {
  margin-bottom: 1.5rem !important;
}

#hubspotForm .hs-form-field > label {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  color: hsl(var(--metoda-blue)) !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
  font-size: 1rem !important;
}

#hubspotForm .hs-input {
  width: 100% !important;
  padding: 0.875rem !important;
  border: 2px solid #e1e1e1 !important;
  border-radius: 10px !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  transition: border-color 0.25s ease-in-out !important;
  background: hsl(var(--white)) !important;
  box-sizing: border-box !important;
}

#hubspotForm .hs-input:focus {
  outline: none !important;
  border-color: hsl(var(--metoda-blue)) !important;
  box-shadow: 0 0 0 3px hsla(var(--metoda-blue) / 0.1) !important;
}

/* HubSpot Button Override - Multiple selectors for maximum specificity */
div#hubspotForm input.hs-button.primary.large,
div#hubspotForm input[type="submit"].hs-button,
#hubspotForm .hs-button.primary.large,
#hubspotForm .hs-button,
.hs-button.primary.large {
  background: rgb(48, 127, 226) !important;
  background-color: rgb(48, 127, 226) !important;
  color: white !important;
  border: 2px solid rgb(48, 127, 226) !important;
  border-radius: 10px !important;
  padding: 0.875rem 1.5rem !important;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.25s ease-in-out !important;
  width: 100% !important;
  margin-top: 1.5rem !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

div#hubspotForm input.hs-button.primary.large:hover,
div#hubspotForm input[type="submit"].hs-button:hover,
#hubspotForm .hs-button.primary.large:hover,
#hubspotForm .hs-button:hover,
.hs-button.primary.large:hover {
  background: rgb(30, 100, 200) !important;
  background-color: rgb(30, 100, 200) !important;
  border-color: rgb(30, 100, 200) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(48, 127, 226, 0.3) !important;
  color: white !important;
}

#hubspotForm .hs-error-msgs {
  color: hsl(var(--alert-red)) !important;
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
  font-family: var(--font-body) !important;
}

#hubspotForm .hs-richtext {
  font-family: var(--font-body) !important;
  color: hsl(var(--text-secondary)) !important;
}

#hubspotForm .legal-consent-container {
  margin-top: 1.5rem !important;
}

#hubspotForm .hs-form-checkbox-display {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  margin-top: 0.5rem !important;
}

#hubspotForm .hs-form-checkbox-display input[type="checkbox"] {
  margin-top: 0.25rem !important;
  width: auto !important;
  min-width: 16px !important;
}

#hubspotForm .hs-form-checkbox-display span {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  color: hsl(var(--text-secondary)) !important;
  line-height: 1.4 !important;
}

#hubspotForm .hs-form-checkbox-display a {
  color: hsl(var(--metoda-blue)) !important;
  text-decoration: underline !important;
}

#hubspotForm .hs-form-checkbox-display a:hover {
  color: rgb(48, 127, 226) !important;
}

/* Select dropdown styling */
#hubspotForm select.hs-input {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: right 0.5rem center !important;
  background-repeat: no-repeat !important;
  background-size: 1.5em 1.5em !important;
  padding-right: 2.5rem !important;
}

/* Readonly field styling for code field */
#hubspotForm .hs-input[readonly] {
  background-color: hsl(var(--background-light)) !important;
  color: hsl(var(--text-secondary)) !important;
  cursor: not-allowed !important;
}

#hubspotForm .hs-input[readonly]:focus {
  border-color: hsl(var(--border-light)) !important;
  box-shadow: none !important;
}

/* Form submission states */
#hubspotForm .hs-button[disabled] {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Success message styling */
#hubspotForm .submitted-message {
  background: hsl(var(--background-green)) !important;
  border: 1px solid hsl(var(--alert-green)) !important;
  color: hsl(var(--alert-green)) !important;
  padding: 1rem !important;
  border-radius: 10px !important;
  text-align: center !important;
  font-family: var(--font-body) !important;
}

/* Countdown Timer Styles */
.countdown-timer {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: hsl(var(--white));
  border: 2px solid hsl(var(--alert-green));
  border-radius: 8px;
  padding: var(--spacing-md) var(--spacing-sm);
  min-width: 70px;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: hsl(var(--metoda-blue));
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  color: hsl(var(--text-secondary));
  font-weight: var(--fw-medium);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pre-register__launch-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: hsl(var(--background-green));
  color: hsl(var(--alert-green));
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 10px;
  margin-bottom: var(--spacing-xl);
  font-weight: 600;
}

.launch-date-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

/* Pre-register note styling */
.pre-register__note {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.pre-register__note p {
  color: hsl(var(--text-secondary));
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

/* Readonly field styling */
.form__input[readonly] {
  background-color: hsl(var(--background-light));
  color: hsl(var(--text-secondary));
  cursor: not-allowed;
}

.form__input[readonly]:focus {
  border-color: hsl(var(--border-light));
  box-shadow: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }
  
  .hero__cta {
    justify-content: center;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }
  
  .step__connector {
    width: 2px;
    height: 60px;
    margin: 0 auto;
  }
  
  .step__connector::after {
    top: auto;
    bottom: -6px;
    right: -4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid hsl(var(--dark-blue));
    border-bottom: none;
  }
  
  .about__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: hsl(var(--plain-white));
    padding: var(--spacing-4xl) var(--spacing-lg);
    transition: right var(--transition-normal);
    z-index: 1000;
  }
  
  .nav__menu.show {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .nav__link {
    font-size: var(--fs-body-1);
  }
  
  .nav__toggle,
  .nav__close {
    display: block;
  }
  
  .nav__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .use-cases__grid {
    grid-template-columns: 1fr;
  }
  
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  
  .pricing__card--featured {
    transform: none;
  }
  
  .pricing__card--featured:hover {
    transform: translateY(-4px);
  }
  
  .footer__links {
    grid-template-columns: 1fr;
  }
  
  .footer__legal {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-h1: 1.75rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.25rem;
  }
  
  .hero {
    padding: calc(var(--header-height) + var(--spacing-2xl)) 0 var(--spacing-2xl);
  }
  
  .section__header {
    margin-bottom: var(--spacing-2xl);
  }
  
  .features,
  .use-cases,
  .how-it-works,
  .pricing,
  .faq,
  .about,
  .pre-register {
    padding: var(--spacing-2xl) 0;
  }
  
  .hero__dashboard {
    max-width: 300px;
  }
  
  .dashboard__content {
    gap: var(--spacing-sm);
  }
  
  .metric {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-xs);
  }
  
  .feature,
  .use-case {
    padding: var(--spacing-lg);
  }
  
  .pricing__card {
    padding: var(--spacing-lg);
  }
  
  .about__metrics {
    padding: var(--spacing-lg);
  }
}

/* ===== SCROLL BEHAVIOR ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .pre-register {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .section {
    page-break-inside: avoid;
  }
}
