/* PROCESSING KG Styles */
:root {
  /* Colors */
  --primary-blue: #195B94;
  --primary-white: #FFFFFF;
  --text-primary: #050505;
  --text-secondary: #7B7B7B;
  --text-dark: #353535;
  --text-accent: #252432;
  --background-primary: #FAFAFA;
  --background-light: #F5F5F5;
  --background-white: #FFFFFF;
  --background-blue-light: #B9DDF5;
  --icon-background: #DFEEFA;
  --background-accent: rgba(255, 255, 255, 0.1);
  --gray-light: #626262;

  /* Typography */
  --font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  
  /* Font sizes */
  --fs-64: 64px;
  --fs-40: 40px;
  --fs-34: 34px;
  --fs-28: 28px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-16: 16px;
  --fs-14: 14px;
  --fs-12: 12px;
  --fs-10: 10px;
  
  /* Font weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  /* Line heights */
  --lh-1-2: 1.2;
  --lh-1-3: 1.3;
  --lh-1-4: 1.4;
  --lh-1-5: 1.5;
  --lh-1-6: 1.6;
  
  /* Spacing */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-120: 120px;
  
  /* Border radius */
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-10: 10px;
  --radius-12: 12px;
  --radius-20: 20px;
  
  /* Shadows */
  --shadow-light: 0px 4px 9px 0px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  --shadow-heavy: 0px 0px 100px 0px rgba(0, 0, 0, 0.25);
  
  /* Layout */
  --container-width: 1200px;
  --page-width: 1440px;
  --header-padding: 16px 120px;
  --section-padding: 80px 120px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: var(--lh-1-4);
  color: var(--text-primary);
  background-color: var(--primary-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

/* Main page layout */
.main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* Typography Classes */
.text-64 {
  font-size: var(--fs-64);
  font-weight: var(--fw-bold);
  line-height: var(--lh-1-2);
}

.text-40 {
  font-size: var(--fs-40);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-1-3);
}

.text-28 {
  font-size: var(--fs-28);
  font-weight: var(--fw-medium);
  line-height: var(--lh-1-2);
}

.text-24 {
  font-size: var(--fs-24);
  font-weight: var(--fw-medium);
  line-height: var(--lh-1-4);
}

.text-20 {
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  line-height: var(--lh-1-4);
}

.text-20-semibold {
  font-size: var(--fs-20);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-1-4);
}

.text-16 {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  line-height: var(--lh-1-4);
}

.text-16-regular {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  line-height: var(--lh-1-4);
}

.text-14 {
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  line-height: var(--lh-1-4);
}

.text-12 {
  font-size: var(--fs-12);
  font-weight: var(--fw-regular);
  line-height: var(--lh-1-4);
}

.text-10 {
  font-size: var(--fs-10);
  font-weight: var(--fw-regular);
  line-height: 1em;
}

/* Layout Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-24);
}

.page-wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-4);
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--primary-white);
  padding: 0 var(--space-32);
  height: 48px;
}

.btn-primary:hover {
  background-color: #144a7a;
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--primary-white);
  color: var(--text-primary);
  padding: 0 var(--space-32);
  height: 48px;
}

.btn-white:hover {
  background-color: var(--background-light);
}

.btn-large {
  height: 64px;
  padding: 0 var(--space-32);
}

.btn.btn-white.btn-start {
  width: 200px;
  height: 48px;
  padding: 0 var(--space-32);
  min-width: 200px;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Header */
.header {
  background-color: var(--primary-white);
  width: 100%;
  display: flex;
  justify-content: center;
}

.header-content {
  width: 100%;
  max-width: var(--container-width);
  padding: var(--space-16) 0;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 83px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: var(--space-48);
}

.logo {
  display: block;
  text-decoration: none;
}

.logo-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo-text-white {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-48);
  list-style: none;
}

.nav-link {
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.language-selector .flag {
  width: 16px;
  height: 16px;
}

.language-select {
  border: none;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
  font-family: var(--font-family), serif;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('assets/shared/chevron-down.svg');
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 12px 7px;
  padding: 0 20px 0 0;
}

.language-select:focus {
  outline: none;
}

.language-select option {
  background-color: var(--primary-white);
  color: var(--text-primary);
  font-family: var(--font-family);
}

/* Main Content Sections */
.section {
  padding: var(--section-padding);
}

.section-small {
  padding: var(--space-48) var(--space-120);
}

/* Hero Banner Section */
.hero-banner {
  background-color: var(--primary-blue);
  color: var(--primary-white);
  width: 100%;
  max-width: var(--container-width);
  height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-4);
  margin: 0 auto;
}

.hero-left {
  position: absolute;
  left: 80px;
  top: 88px;
  width: 500px;
  height: 384px;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.hero-title {
  font-size: var(--fs-64);
  font-weight: var(--fw-bold);
  line-height: var(--lh-1-2);
  margin-bottom: var(--space-24);
}

.hero-description {
  font-size: var(--fs-20);
  font-weight: var(--fw-regular);
  line-height: var(--lh-1-4);
  color: var(--background-blue-light);
  margin-bottom: var(--space-24);
}

.hero-right {
  position: absolute;
  right: 39px;
  top: 66px;
  width: 501px;
  height: 626px;
}

/* Calculator Widget */
.calculator-background {
  position: absolute;
  top: 84px;
  left: 65px;
  width: 437px;
  height: 458px;
  background-color: var(--primary-white);
  border-radius: var(--radius-4);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 1;
}

.calculator-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    transparent 0%, 
    rgba(25, 91, 148, 0.02) 50%, 
    rgba(25, 91, 148, 0.05) 100%);
  border-radius: var(--radius-4);
}

.calculator {
  position: relative;
  background-color: var(--primary-white);
  border-radius: var(--radius-4);
  padding: var(--space-32);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.25);
  width: 437px;
  min-height: 458px;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  z-index: 2;
}

.calculator-title {
  font-size: var(--fs-24);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  text-align: center;
}

.calculator-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.calculator-item {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: 0 var(--space-24);
  height: 64px;
  background-color: var(--background-light);
  border-radius: var(--radius-4);
  width: 180px;
}

.calculator-item .flag {
  width: 60px;
  height: 32px;
  border-radius: var(--radius-4);
  object-fit: cover;
}

.calculator-item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator-item .icon img {
  width: auto;
  height: 30px;
  max-width: 30px;
}

.calculator-item .text {
  display: flex;
  flex-direction: column;
}

.calculator-item .title {
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.calculator-item .subtitle {
  font-size: var(--fs-10);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
}

.calculator-item.add-more {
  justify-content: flex-start;
}

.calculator-item .plus {
  font-size: 40px;
  color: var(--gray-light);
  line-height: 1;
}

.calculator-button {
  width: 100%;
  background-color: var(--primary-blue);
  color: var(--primary-white);
  padding: var(--space-16) var(--space-32);
  border-radius: var(--radius-4);
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.calculator-button:hover {
  background-color: #144A7A;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(25, 91, 148, 0.3);
}

.calculator-button:active {
  background-color: #0F3A62;
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(25, 91, 148, 0.3);
}

/* Features Section */
.features {
  background-color: var(--background-light);
  width: 100%;
  max-width: var(--container-width);
  margin: var(--space-16) auto 0;
  padding: var(--space-48) var(--space-80);
  border-radius: var(--radius-4);
}

.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-64);
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--icon-background);
  border-radius: var(--radius-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary-blue);
  stroke-width: 2px;
}

.feature-icon img {
  width: 36px;
  height: 36px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.feature-title {
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.feature-description {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
}

/* Cards Section */
.cards-section {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-80) 0;
}

.cards-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-title {
  font-size: var(--fs-40);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: var(--space-32);
  max-width: var(--container-width);
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-32);
}

.cards-left {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-32);
  width: 100%;
  max-width: 892px;
}

.card {
  background-color: var(--background-primary);
  border-radius: var(--radius-4);
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.card-small {
  width: 276px;
  height: 250px;
}

.card-large {
  width: 584px;
  height: 250px;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--space-16);
}

.card-tall {
  width: 276px;
  height: 532px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--icon-background);
  border-radius: var(--radius-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-blue);
  stroke-width: 2px;
}

.card-icon img {
  width: 24px;
  height: 24px;
}

.card-title {
  font-size: var(--fs-20);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

.card-title.accent {
  color: var(--text-accent);
}

.card-description {
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: var(--lh-1-4);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  width: 300px;
}

.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: var(--primary-blue);
  border-radius: var(--radius-4);
}

.card-logo img {
  width: 100px;
  height: 38px;
}

.card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

/* License Section */
.license-section {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-80) 0;
}

.license-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.license-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-64);
}

.license-left {
  width: 100%;
  max-width: 549px;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.license-title {
  font-size: var(--fs-40);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  line-height: var(--lh-1-3);
}

.license-description {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: var(--lh-1-6);
}

.license-right {
  width: 100%;
  max-width: 614px;
  position: relative;
}

.license-image {
  width: 375px;
  height: 524px;
  border-radius: var(--radius-20);
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

.license-card {
  position: absolute;
  background-color: var(--primary-white);
  border-radius: var(--radius-10);
  padding: var(--space-12);
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.license-card.top {
  top: 106px;
  right: 0;
}

.license-card.bottom {
  bottom: 90px;
  left: 0;
}

.license-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-blue);
  stroke-width: 1.33px;
}

.license-card .text {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
}

.license-card .date {
  font-size: var(--fs-12);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
}

.slider-control {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.slider-control.left {
  left: 53px;
}

.slider-control.right {
  right: 26px;
}

.slider-control svg {
  width: 16px;
  height: 8px;
  fill: var(--text-primary);
}

/* Steps Section */
.steps-section {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-80) 0 var(--space-120);
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-48);
}

.steps-title {
  font-size: var(--fs-40);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
}

.steps-grid {
  display: flex;
  gap: var(--space-24);
  justify-content: center;
  width: 100%;
  max-width: var(--container-width);
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  width: 272px;
  position: relative;
}

.step-number {
  width: 54px;
  height: 54px;
  background-color: var(--primary-blue);
  border-radius: var(--radius-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-28);
  font-weight: var(--fw-medium);
  color: var(--primary-white);
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  width: 272px;
}

.step-title {
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  text-align: center;
}

.step-description {
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  text-align: center;
  line-height: var(--lh-1-4);
}

.step-arrow {
  position: absolute;
  top: 10px;
  right: -112px;
  width: 200px;
  height: 38px;
  z-index: 1;
}

.step:last-child .step-arrow {
  display: none;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-blue);
  color: var(--primary-white);
  width: 100%;
  max-width: 1440px;
  height: 500px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-4);
  padding: 0 var(--space-120);
  box-sizing: border-box;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  justify-content: space-between;
}

.contact-left {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-title {
  font-size: var(--fs-40);
  font-weight: var(--fw-semibold);
  color: var(--primary-white);
  line-height: var(--lh-1-3);
}

.contact-description {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--background-blue-light);
  line-height: var(--lh-1-55);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.form-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.form-group {
  display: flex;
  align-items: center;
}

.name-field {
  width: 200px;
}

.email-field {
  flex: 1;
}

.phone-field {
  flex: 1;
}

.form-input {
  width: 100%;
  height: 64px;
  padding: 0 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: var(--primary-white);
  font-size: 16px;
  font-weight: 400;
  font-family: 'Golos Text', sans-serif;
  line-height: 1.55;
  box-sizing: border-box;
}

.name-field .form-input {
  padding: 0 26px;
}

.form-input::placeholder {
  color: var(--background-blue-light);
}

.form-submit-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  position: relative;
}

.form-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 64px;
  background-color: var(--background-light);
  color: #050505;
  border: none;
  padding: 0 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Golos Text', sans-serif;
  line-height: 1.4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-right {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.contact-illustration {
  width: 651px;
  height: 524px;
  object-fit: cover;
  position: relative;
  top: 23px;
  left: -26px;
}

/* Footer */
.footer {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-80) 0;
}

.footer-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-32);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  max-width: 356px;
}

.footer-logo {
  display: block;
  text-decoration: none;
}

.footer-logo .logo-text {
  font-size: 16px;
}

.footer-description {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: var(--lh-1-4);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.footer-contact:hover {
  opacity: 0.8;
}

.footer-contact svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-blue);
  stroke-width: 2px;
}

.footer-contact img {
  width: 24px;
  height: 24px;
}

.footer-contact .text {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  gap: 142px;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: var(--space-32);
}

.footer-menu a {
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  gap: var(--space-16);
}

.social-icon {
  width: 48px;
  height: 48px;
  background-color: var(--icon-background);
  border-radius: var(--radius-4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: rgba(25, 91, 148, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(25, 91, 148, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-white);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

/* Responsive utility classes */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Ensure mobile cards don't inherit desktop grid styles */
.cards-mobile {
  display: none;
}

/* Mobile Navigation Styles */
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-white);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

/* Hide burger menu when mobile menu is open */
.mobile-menu-overlay.active ~ .main-content .burger-menu,
body.mobile-menu-open .burger-menu {
  display: none !important;
}

.mobile-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 130px;
  padding: 0 0 32px 0;
  background-color: var(--primary-white);
}

/* Mobile menu header - uses same structure as main header but with close button */
.mobile-menu-header {
  width: 100%;
  height: 60px;
  background-color: var(--primary-white);
  border-bottom: 1px solid #EBEBEB;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
}

.mobile-menu-header .header-left {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.mobile-menu-header .header-right {
  display: flex;
  align-items: center;
}

.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-decoration: none;
}

.mobile-logo .logo-text {
  font-size: 16px;
}

.mobile-language-selector {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: 4px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 32px 0;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 375px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links li {
  margin: 0;
  width: 375px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  line-height: 1.4em;
  text-align: right;
  width: 375px;
  box-sizing: border-box;
  height: auto;
}

.mobile-nav-link:hover {
  background-color: var(--background-light);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-book-call {
  width: 351px;
  height: 64px;
  padding: 0 32px;
  background-color: var(--primary-blue);
  color: var(--primary-white);
  border: none;
  border-radius: var(--radius-4);
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show/Hide elements for mobile */
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: flex !important;
  }
  
  .cards-mobile {
    display: flex !important;
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .mobile-card {
    padding: var(--space-24);
    background-color: var(--background-light);
    border-radius: var(--radius-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }
  
  /* First mobile card (Reliability) with illustration */
  .mobile-card:first-child {
    gap: var(--space-16);
  }
  
  .burger-menu {
    display: block;
  }
  
  /* Header adjustments - exact Figma positioning */
  .header {
    width: 100%;
    background-color: var(--primary-white);
    border-bottom: 1px solid #EBEBEB;
  }
  
  .header-content {
    height: 60px;
    padding: 0 var(--space-12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .header-nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--space-16);
  }
  
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .header-right .language-selector {
    padding: 4px;
  }
  
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .mobile-logo .logo-text {
    font-size: 14px;
  }
  
  .footer-logo .logo-text {
    font-size: 14px;
  }
  
  .burger-menu {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Main content mobile styles */
  .main-content {
    gap: var(--space-12);
  }
  
  /* Hero section mobile */
  .hero-banner {
    width: calc(100% - 24px);
    margin: var(--space-24) var(--space-12) 0;
    height: auto;
  }
  
  /* Mobile Hero Layout - simplified structure */
  .hero-mobile {
    width: 100%;
    height: 593px;
    background-color: var(--primary-blue);
    border-radius: var(--radius-4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: var(--space-16);
    gap: var(--space-24);
  }
  
  .mobile-hero-text {
    width: 351px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  
  .mobile-hero-text > * {
    margin: 0;
  }
  
  .mobile-hero-title {
    font-size: var(--fs-40);
    font-weight: var(--fw-semibold);
    line-height: 1.2em;
    text-align: center;
    color: var(--primary-white);
    width: 100%;
    margin-bottom: var(--space-8);
  }
  
  .mobile-hero-description {
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    line-height: 1.4em;
    text-align: center;
    color: #B9DDF5;
    width: 100%;
    margin-bottom: var(--space-16);
  }
  
  .mobile-btn-start {
    width: 200px;
    height: 48px;
    padding: 0 32px;
    background-color: var(--primary-white);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-4);
    font-size: var(--fs-16);
    font-weight: var(--fw-medium);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-calculator-wrapper {
    position: relative;
    width: min-content;
    margin: 0 auto;
  }
  
  .mobile-calculator-bg {
    position: absolute;
    top: 50px;
    left: 36px;
    width: 254px;
    height: 330px;
    background-color: var(--primary-white);
    border-radius: 2px;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.25);
    z-index: 0;
  }
  
  .mobile-calculator {
    width: 263px;
    background-color: var(--primary-white);
    border-radius: 2px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    padding: var(--space-16);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    align-items: center;
    z-index: 1;
  }
  
  .mobile-calculator-title {
    font-size: 15px;
    font-weight: var(--fw-medium);
    line-height: 1.4em;
    text-align: center;
    color: var(--text-primary);
  }
  
  .mobile-calc-countries,
  .mobile-calc-currencies {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-8);
    width: 225px;
    align-self: flex-start;
  }
  
  .mobile-calc-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-8);
    padding: 0 var(--space-16);
    width: 108px;
    height: 39px;
    background-color: #F5F5F5;
    border-radius: 2px;
    box-sizing: border-box;
  }
  
  .mobile-flag {
    width: 36px;
    height: 19px;
    border-radius: 2px;
    flex-shrink: 0;
  }
  
  .mobile-calc-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .mobile-calc-text {
    display: flex;
    flex-direction: column;
  }
  
  .mobile-calc-title {
    font-size: 8px;
    font-weight: var(--fw-medium);
    line-height: 1.4em;
    text-align: center;
    color: var(--text-primary);
  }
  
  .mobile-calc-subtitle {
    font-size: 6px;
    font-weight: var(--fw-regular);
    line-height: 1em;
    text-align: center;
    color: var(--text-secondary);
  }
  
  .mobile-plus {
    font-size: 24px;
    font-weight: var(--fw-regular);
    line-height: 1em;
    text-align: center;
    color: #626262;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .mobile-calc-button {
    width: 100%;
    height: 35px;
    padding: 0 var(--space-20);
    background-color: var(--primary-blue);
    color: var(--primary-white);
    border: none;
    border-radius: 2px;
    font-size: 9px;
    font-weight: var(--fw-medium);
    line-height: 1.4em;
    text-align: center;
    cursor: pointer;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Features section mobile */
  .features {
    width: calc(100% - 24px);
    margin: 0 var(--space-12);
    padding: var(--space-24);
    gap: var(--space-24);
  }
  
  .features-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-24);
    width: 100%;
  }
  
  .features-item {
    text-align: center;
  }
  
  /* Cards section mobile */
  .cards-section {
    width: 100%;
    padding: var(--space-64) 0 var(--space-48);
  }
  
  .cards-container {
    padding: 0 var(--space-12);
  }
  
  .cards-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .section-title {
    font-size: var(--fs-40);
    font-weight: var(--fw-semibold);
    text-align: center;
    margin-bottom: var(--space-8);
    line-height: 1.3em;
    color: var(--text-primary);
  }
  
  /* Mobile Cards Grid - moved to media query */
  
  .card {
    padding: var(--space-24);
    gap: var(--space-8);
    display: flex;
    flex-direction: column;
    background-color: var(--background-light);
    border-radius: var(--radius-4);
  }
  
  .card.card-large {
    gap: var(--space-16);
  }
  
  .card-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-blue-light);
    border-radius: var(--radius-4);
  }
  
  .card-icon img {
    width: 16px;
    height: 16px;
  }
  
  .card-title {
    font-size: var(--fs-20);
    font-weight: var(--fw-semibold);
    line-height: 1.4em;
    color: var(--text-primary);
  }
  
  .card-description {
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    line-height: 1.4em;
    color: var(--text-secondary);
  }
  
  /* Mobile card illustration (first card only) */
  .card-illustration {
    height: 131px;
    border-radius: var(--radius-4);
    margin-top: 10px;
    align-self: stretch;
    overflow: hidden;
    position: relative;
  }
  
  /* Blue background layer */
  .illustration-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 1;
  }
  
  /* PNG illustration layer */
  .illustration-png {
    position: absolute;
    top: 0;
    right: 0;
    width: 134px;
    height: 131px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  .illustration-png img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Logo overlay layer */
  .illustration-logo-overlay {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
  }
  
  .illustration-logo-overlay .logo-text-white {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
  }
  
  /* Desktop card styles (unchanged) */
  .card-tall {
    gap: var(--space-16);
  }
  
  .card-tall .card-content {
    gap: var(--space-8);
  }
  
  .card-image {
    height: 131px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    border-radius: var(--radius-4);
    padding: 0 48px;
    margin-top: 10px;
  }
  
  .card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  /* License section mobile */
  .license-section {
    width: 100%;
    margin: 0 var(--space-12);
    padding: var(--space-24) 0 var(--space-48);
  }
  
  .license-container {
    padding: 0 var(--space-12);
  }
  
  /* Mobile License Layout */
  .license-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-24);
    padding: var(--space-24) 0 var(--space-48);
  }
  
  .mobile-license-title {
    font-size: var(--fs-40);
    font-weight: var(--fw-semibold);
    line-height: 1.3em;
    text-align: left;
    color: var(--text-primary);
    width: 100%;
  }
  
  .mobile-license-description {
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    line-height: 1.6em;
    text-align: left;
    color: var(--text-secondary);
    width: 100%;
  }
  
  .mobile-details-btn {
    width: 100%;
    height: 48px;
    padding: 0 32px;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    border: none;
    border-radius: var(--radius-4);
    font-size: var(--fs-16);
    font-weight: var(--fw-medium);
    cursor: pointer;
    align-self: stretch;
  }
  
  .mobile-license-visual {
    width: 351px;
    height: 431px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-license-bg {
    position: absolute;
    top: 0;
    left: 22px;
    width: 308px;
    height: 431px;
    border-radius: var(--space-20);
    overflow: hidden;
    z-index: 1;
  }
  
  .mobile-license-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mobile-license-card {
    position: absolute;
    background-color: var(--primary-white);
    border-radius: var(--radius-4);
    padding: var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-8);
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.05);
    z-index: 10;
  }
  
  .mobile-license-card img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .mobile-card-top {
    top: 79px;
    right: 0;
  }
  
  .mobile-card-bottom {
    bottom: 65px;
    left: 0;
    border-radius: var(--radius-10);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  }
  
  .mobile-card-text {
    display: flex;
    flex-direction: column;
  }
  
  .mobile-card-date {
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    color: var(--text-primary);
    line-height: 1.4em;
  }
  
  .mobile-card-label {
    font-size: 10px;
    font-weight: var(--fw-regular);
    color: var(--text-secondary);
    line-height: 1.4em;
  }
  
  .mobile-card-title {
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    color: var(--text-primary);
    line-height: 1.4em;
  }
  
  .mobile-slider-left {
    position: absolute;
    left: 0;
    top: 194px;
    width: 48px;
    height: 48px;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 5;
  }
  
  .mobile-slider-right {
    position: absolute;
    right: 0;
    top: 194px;
    width: 48px;
    height: 48px;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 5;
  }
  
  .mobile-slider-left img,
  .mobile-slider-right img {
    width: var(--space-16);
    height: var(--space-8);
  }
  
  /* Steps section mobile */
  .steps-section {
    width: 100%;
    margin: 0 var(--space-12);
    padding: var(--space-24) 0 var(--space-48);
  }
  
  .steps-container {
    padding: 0 var(--space-12);
  }
  
  .steps-title {
    font-size: var(--fs-40);
    font-weight: var(--fw-semibold);
    text-align: center;
    line-height: 1.3em;
    width: 351px;
    margin: 0 auto;
  }
  
  /* Mobile Steps Layout */
  .steps-mobile {
    width: 351px;
    height: 620px;
    margin: 0 auto var(--space-48);
    position: relative;
  }
  
  .mobile-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
    width: 272px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Position steps according to Figma with proper spacing */
  .mobile-step:nth-child(1) {
    top: 0;
  }
  
  .mobile-step:nth-child(3) {
    top: 160px;
  }
  
  .mobile-step:nth-child(5) {
    top: 320px;
  }
  
  .mobile-step:nth-child(7) {
    top: 480px;
  }
  
  .mobile-step-number {
    width: 54px;
    height: 54px;
    background-color: var(--primary-blue);
    border-radius: var(--radius-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: var(--fw-medium);
    color: var(--primary-white);
    line-height: 1.2em;
  }
  
  .mobile-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    width: 272px;
  }
  
  .mobile-step-title {
    font-size: var(--fs-20);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    line-height: 1.4em;
    text-align: center;
    width: 100%;
  }
  
  .mobile-step-description {
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    color: var(--text-secondary);
    line-height: 1.4em;
    text-align: center;
    width: 273px;
  }
  
  /* Mobile arrows - absolute positioning according to Figma */
  .mobile-arrow {
    position: absolute;
    width: 44px;
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Arrow 1 - right side */
  .mobile-arrow:nth-child(2) {
    top: 90px;
    right: 24px;
  }
  
  /* Arrow 2 - left side */
  .mobile-arrow:nth-child(4) {
    top: 250px;
    left: 24px;
  }
  
  /* Arrow 3 - right side */
  .mobile-arrow:nth-child(6) {
    top: 410px;
    right: 24px;
  }
  
  .mobile-arrow img {
    width: 38px;
    height: 126px;
  }
  
  /* Contact section mobile */
  .contact-section {
    width: 100%;
    height: auto;
    margin: 12px 12px 0;
    padding: var(--space-48) var(--space-12);
    box-sizing: border-box;
  }
  
  .contact-content {
    flex-direction: column;
    gap: var(--space-32);
  }
  
  .contact-left {
    flex: none;
    width: 100%;
  }
  
  .contact-right {
    display: none;
  }
  
  .contact-title {
    font-size: var(--fs-40);
    text-align: center;
  }
  
  .contact-description {
    text-align: center;
  }
  
  .form-row {
    flex-direction: column;
    gap: var(--space-16);
  }
  
  .name-field,
  .email-field,
  .phone-field {
    width: 100%;
  }
  
  .form-submit-row {
    flex-direction: column;
    gap: var(--space-16);
  }
  
  .form-submit {
    position: static;
    width: 100%;
  }
  
  /* Footer mobile - exact Figma layout */
  .footer {
    width: 100%;
    margin: 36px 12px 0;
    background-color: var(--background-light);
    padding: 0;
  }
  
  .footer-container {
    padding: 0;
  }
  
  /* Mobile footer structure according to Figma */
  .footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-24);
    padding: var(--space-48) var(--space-12);
  }
  
  .footer-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-24);
  }
  
  .footer-logo {
    display: block;
  }
  
  .footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
  }
  
  .footer-contact {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    text-decoration: none;
    color: var(--text-primary);
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    line-height: 1.4em;
  }
  
  .footer-description {
    text-align: center;
    font-size: var(--fs-14);
    line-height: 1.4em;
    color: var(--text-secondary);
    width: 100%;
  }
  
  .footer-social {
    display: flex;
    gap: var(--space-16);
    justify-content: center;
  }
  
  .footer-social .social-icon {
    width: 48px;
    height: 48px;
    background-color: var(--background-blue-light);
    border-radius: var(--radius-4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-16);
    width: 100%;
  }
  
  .footer-nav a {
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.4em;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-24);
    width: 100%;
  }
  
  .footer-divider {
    width: 100%;
    height: 1px;
    background-color: #EBEBEB;
  }
  
  .footer-copyright {
    font-size: var(--fs-14);
    color: #989898;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4285714285714286em;
    letter-spacing: -0.02em;
  }
}


